From 02adf44dd516d37431fda69c97263633377ca4b0 Mon Sep 17 00:00:00 2001 From: src386 Date: Thu, 20 Aug 2015 11:40:00 +0200 Subject: [PATCH 01/27] Add de,es,it,nl languages --- README.md | 3 +++ manifest.json | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 393f3dc..e52183a 100644 --- a/README.md +++ b/README.md @@ -9,6 +9,9 @@ Current Movim version : 20150820. **Changelog** +0.8b ? +- Add de, es, it, nl + 0.7b 2015-08-20 - Update to upstream Movim 20150820 to fix #5 diff --git a/manifest.json b/manifest.json index ad0378d..80dfb36 100644 --- a/manifest.json +++ b/manifest.json @@ -56,7 +56,7 @@ "en": "Pod language", "fr": "Langue du pod" }, - "choices" : ["en", "fr"], + "choices" : ["de", "en", "es", "fr", "it", "nl"], "default" : "en" }, { From fba1ade850d6a84ab1cd6c624337f515a891b52d Mon Sep 17 00:00:00 2001 From: src386 Date: Thu, 20 Aug 2015 11:43:30 +0200 Subject: [PATCH 02/27] add language ar, ja, ru --- README.md | 2 +- manifest.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e52183a..e9a7408 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ Current Movim version : 20150820. **Changelog** 0.8b ? -- Add de, es, it, nl +- Add ar, de, es, it, ja, nl, ru 0.7b 2015-08-20 - Update to upstream Movim 20150820 to fix #5 diff --git a/manifest.json b/manifest.json index 80dfb36..85a22fa 100644 --- a/manifest.json +++ b/manifest.json @@ -56,7 +56,7 @@ "en": "Pod language", "fr": "Langue du pod" }, - "choices" : ["de", "en", "es", "fr", "it", "nl"], + "choices" : ["ar", "de", "en", "es", "fr", "it", "ja", "nl", "ru"], "default" : "en" }, { From 0e9a0aa9603e54006fd0a5e9f5f6b691b75c02dd Mon Sep 17 00:00:00 2001 From: src386 Date: Fri, 21 Aug 2015 10:33:42 +0200 Subject: [PATCH 03/27] fix url in manifest.json (minor) --- README.md | 2 +- manifest.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e9a7408..c8ef557 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ Current Movim version : 20150820. **Changelog** 0.8b ? -- Add ar, de, es, it, ja, nl, ru +- Added to language selection : ar, de, es, it, ja, nl, ru 0.7b 2015-08-20 - Update to upstream Movim 20150820 to fix #5 diff --git a/manifest.json b/manifest.json index 85a22fa..474c159 100644 --- a/manifest.json +++ b/manifest.json @@ -8,7 +8,7 @@ "maintainer": { "name": "src386", "email": "soyouz@src386.org", - "url": "http://https://github.com/src386" + "url": "http://github.com/src386" }, "multi_instance": "false", "arguments": { From a90f243a64f5ada1014c8092341b2954f40dce2c Mon Sep 17 00:00:00 2001 From: src386 Date: Fri, 21 Aug 2015 10:34:47 +0200 Subject: [PATCH 04/27] fix URL --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index c8ef557..295d826 100644 --- a/README.md +++ b/README.md @@ -11,6 +11,7 @@ Current Movim version : 20150820. 0.8b ? - Added to language selection : ar, de, es, it, ja, nl, ru +- Fix URL in manifest.json (was https://https://...) 0.7b 2015-08-20 - Update to upstream Movim 20150820 to fix #5 From 64be974a0c369283be84189e85d8b770d3b8fff8 Mon Sep 17 00:00:00 2001 From: src386 Date: Fri, 21 Aug 2015 14:23:50 +0200 Subject: [PATCH 05/27] password generation no special car --- README.md | 1 + TODO | 1 + scripts/install | 2 +- 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 295d826..582b595 100644 --- a/README.md +++ b/README.md @@ -12,6 +12,7 @@ Current Movim version : 20150820. 0.8b ? - Added to language selection : ar, de, es, it, ja, nl, ru - Fix URL in manifest.json (was https://https://...) +- Modified mysql password generation (no special car) 0.7b 2015-08-20 - Update to upstream Movim 20150820 to fix #5 diff --git a/TODO b/TODO index e69de29..60f7e13 100644 --- a/TODO +++ b/TODO @@ -0,0 +1 @@ +- Allow access to blog when private installation selected diff --git a/scripts/install b/scripts/install index 6c19c0f..b9cdd4d 100644 --- a/scripts/install +++ b/scripts/install @@ -38,7 +38,7 @@ sudo yunohost app setting movim public_site -v $public_site sudo yunohost app setting movim port -v $port # Generate random password -db_pwd=$(dd if=/dev/urandom bs=1 count=200 2> /dev/null | tr -c -d '[A-Za-z0-9]' | sed -n 's/\(.\{24\}\).*/\1/p') +db_pwd=$(strings /dev/urandom | grep -o '[[:alnum:]]' | head -n 24 | tr -d '\n'; echo) # Use 'movim' as database name and user db_user=movim From 1338d12eeb8323257b89e09ec632cde91645ede2 Mon Sep 17 00:00:00 2001 From: src386 Date: Fri, 21 Aug 2015 14:33:58 +0200 Subject: [PATCH 06/27] change private public policy --- README.md | 3 +++ scripts/install | 10 ++++------ 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 582b595..229d778 100644 --- a/README.md +++ b/README.md @@ -13,6 +13,9 @@ Current Movim version : 20150820. - Added to language selection : ar, de, es, it, ja, nl, ru - Fix URL in manifest.json (was https://https://...) - Modified mysql password generation (no special car) +- Public/Private policy changed. The SSO portal is not used anymore + But when a pod is marked as "private", only accounts with @yourdomain.com are able to connect. + This change was necessary for public content (blog) 0.7b 2015-08-20 - Update to upstream Movim 20150820 to fix #5 diff --git a/scripts/install b/scripts/install index b9cdd4d..2bba7a3 100644 --- a/scripts/install +++ b/scripts/install @@ -76,6 +76,10 @@ sudo su -c "cd $final_path && php mud.php config environment:production" movim sudo su -c "cd $final_path && php mud.php config timezone:`cat /etc/timezone`" movim sudo su -c "cd $final_path && php mud.php config username:$admin" movim sudo su -c "cd $final_path && php mud.php config password:`echo -n $password | sha1sum | awk '{print $1}'`" movim +if [ $public_site = "No" ]; +then + sudo su -c "cd $final_path && php mud.php config xmppwhitelist:$domain" movim +fi sudo yunohost app addaccess movim -u $admin # Copy init script or systemd service @@ -103,12 +107,6 @@ sudo cp ../conf/nginx.conf /etc/nginx/conf.d/$domain.d/movim.conf # SSOwat Configuration sudo yunohost app setting movim skipped_uris -v "/" -if [ $public_site = "No" ]; -then - sudo yunohost app setting movim protected_uris -v "/" -else - sudo yunohost app setting movim protected_uris -v "/?q=admin" -fi sudo yunohost app ssowatconf # Start Movim From fcc45b2aa73b6afb18601ac6a7d19d88f0af9608 Mon Sep 17 00:00:00 2001 From: src386 Date: Fri, 21 Aug 2015 15:29:55 +0200 Subject: [PATCH 07/27] add sticky bit --- README.md | 3 ++- scripts/install | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 229d778..8f45f72 100644 --- a/README.md +++ b/README.md @@ -10,12 +10,13 @@ Current Movim version : 20150820. **Changelog** 0.8b ? -- Added to language selection : ar, de, es, it, ja, nl, ru +- Added language selection : ar, de, es, it, ja, nl, ru - Fix URL in manifest.json (was https://https://...) - Modified mysql password generation (no special car) - Public/Private policy changed. The SSO portal is not used anymore But when a pod is marked as "private", only accounts with @yourdomain.com are able to connect. This change was necessary for public content (blog) +- Add sticky bit to final_path 0.7b 2015-08-20 - Update to upstream Movim 20150820 to fix #5 diff --git a/scripts/install b/scripts/install index 2bba7a3..bbc322b 100644 --- a/scripts/install +++ b/scripts/install @@ -59,6 +59,7 @@ sudo cp -a ../sources/* $final_path sudo useradd -d /var/www/movim -s /bin/sh movim sudo chown -R movim:www-data $final_path sudo chmod -R 770 $final_path +sudo chmod g+s $final_path # Install PHP dependencies sudo su -c "curl -sS https://getcomposer.org/installer | php -- --install-dir=$final_path" movim From 0c17bf13a79271f7169f1c516a55fe35381838c8 Mon Sep 17 00:00:00 2001 From: src386 Date: Fri, 21 Aug 2015 15:46:56 +0200 Subject: [PATCH 08/27] avoid duplicate / --- scripts/install | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/scripts/install b/scripts/install index bbc322b..0615609 100644 --- a/scripts/install +++ b/scripts/install @@ -12,13 +12,13 @@ port=$7 # Check domain/path availability sudo yunohost app checkurl $domain$path -a movim if [[ ! $? -eq 0 ]]; then -exit 1 + exit 1 fi # Check port availability sudo yunohost app checkport $port if [[ ! $? -eq 0 ]]; then -exit 1 + exit 1 fi # Check user availability @@ -30,7 +30,7 @@ fi # Check password not empty if [[ -z "$password" ]]; then printf "Error empty admin password, aborting" -exit 1 + exit 1 fi sudo yunohost app setting movim admin -v $admin @@ -104,6 +104,7 @@ fi sed -i "s@PATHTOCHANGE@$path@g" ../conf/nginx.conf sed -i "s@ALIASTOCHANGE@$final_path/@g" ../conf/nginx.conf sed -i "s@YHPORT@$port@g" ../conf/nginx.conf +sed -i "s@//ws/@/ws/@g" ../conf/nginx # Avoid duplicate / sudo cp ../conf/nginx.conf /etc/nginx/conf.d/$domain.d/movim.conf # SSOwat Configuration From 5e119882fe2b366f7d370a38cb2f9c2503fa78c8 Mon Sep 17 00:00:00 2001 From: src386 Date: Fri, 21 Aug 2015 15:52:33 +0200 Subject: [PATCH 09/27] random generation --- scripts/install | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/install b/scripts/install index 0615609..e48fa0e 100644 --- a/scripts/install +++ b/scripts/install @@ -38,7 +38,8 @@ sudo yunohost app setting movim public_site -v $public_site sudo yunohost app setting movim port -v $port # Generate random password -db_pwd=$(strings /dev/urandom | grep -o '[[:alnum:]]' | head -n 24 | tr -d '\n'; echo) +#db_pwd=$(strings /dev/urandom | grep -o '[[:alnum:]]' | head -n 24 | tr -d '\n'; echo) +db_pwd=$(dd if=/dev/urandom bs=1 count=200 2> /dev/null | tr -c -d '[[:alnum:]]' | sed -n 's/\(.\{24\}\).*/\1/p') # Use 'movim' as database name and user db_user=movim From e5fd3942fc7bee57e87e13608f616c48487f4d25 Mon Sep 17 00:00:00 2001 From: src386 Date: Fri, 21 Aug 2015 16:18:30 +0200 Subject: [PATCH 10/27] revert to www-data user --- conf/movim.init | 2 +- conf/movim.service | 2 +- scripts/install | 29 +++++++++++++---------------- scripts/upgrade | 14 ++------------ 4 files changed, 17 insertions(+), 30 deletions(-) diff --git a/conf/movim.init b/conf/movim.init index aa36030..b0e1556 100755 --- a/conf/movim.init +++ b/conf/movim.init @@ -11,7 +11,7 @@ dir="YHDIR" cmd="php daemon.php https://YHURL YHPORT" -user="movim" +user="www-data" name=`basename $0` pid_file="/var/run/$name.pid" diff --git a/conf/movim.service b/conf/movim.service index c20b295..c237d9d 100644 --- a/conf/movim.service +++ b/conf/movim.service @@ -3,7 +3,7 @@ Description=Movim daemon After=nginx.service network.target local-fs.target [Service] -User=movim +User=www-data Type=simple ExecStart=/usr/bin/php daemon.php https://YHURL YHPORT WorkingDirectory=YHDIR diff --git a/scripts/install b/scripts/install index e48fa0e..0197b56 100644 --- a/scripts/install +++ b/scripts/install @@ -38,7 +38,6 @@ sudo yunohost app setting movim public_site -v $public_site sudo yunohost app setting movim port -v $port # Generate random password -#db_pwd=$(strings /dev/urandom | grep -o '[[:alnum:]]' | head -n 24 | tr -d '\n'; echo) db_pwd=$(dd if=/dev/urandom bs=1 count=200 2> /dev/null | tr -c -d '[[:alnum:]]' | sed -n 's/\(.\{24\}\).*/\1/p') # Use 'movim' as database name and user @@ -57,30 +56,28 @@ sudo mkdir -p $final_path sudo cp -a ../sources/* $final_path # Create movim system user and set permissions -sudo useradd -d /var/www/movim -s /bin/sh movim -sudo chown -R movim:www-data $final_path -sudo chmod -R 770 $final_path -sudo chmod g+s $final_path +sudo chown -R www-data: $final_path +sudo chmod -R 750 $final_path # Install PHP dependencies -sudo su -c "curl -sS https://getcomposer.org/installer | php -- --install-dir=$final_path" movim -sudo su -c "cd $final_path && php composer.phar install" movim +sudo su -c "curl -sS https://getcomposer.org/installer | php -- --install-dir=$final_path" -s /bin/sh www-data +sudo su -c "cd $final_path && php composer.phar install" -s /bin/sh www-data # Movim configuration sudo cp $final_path/config/db.example.inc.php $final_path/config/db.inc.php sudo sed -i "s@'username' => 'username'@'username' => '$db_user'@g" $final_path/config/db.inc.php sudo sed -i "s@'password' => 'password'@'password' => '$db_pwd'@g" $final_path/config/db.inc.php sudo sed -i "s@/ws/@$path/ws/@g" $final_path/app/assets/js/movim_websocket.js -sudo su -c "cd $final_path && php mud.php db set" movim -sudo su -c "cd $final_path && php mud.php config locale:$language" movim -sudo su -c "cd $final_path && php mud.php config loglevel:1" movim -sudo su -c "cd $final_path && php mud.php config environment:production" movim -sudo su -c "cd $final_path && php mud.php config timezone:`cat /etc/timezone`" movim -sudo su -c "cd $final_path && php mud.php config username:$admin" movim -sudo su -c "cd $final_path && php mud.php config password:`echo -n $password | sha1sum | awk '{print $1}'`" movim +sudo su -c "cd $final_path && php mud.php db set" -s /bin/sh www-data +sudo su -c "cd $final_path && php mud.php config locale:$language" -s /bin/sh www-data +sudo su -c "cd $final_path && php mud.php config loglevel:1" -s /bin/sh www-data +sudo su -c "cd $final_path && php mud.php config environment:production" -s /bin/sh www-data +sudo su -c "cd $final_path && php mud.php config timezone:`cat /etc/timezone`" -s /bin/sh www-data +sudo su -c "cd $final_path && php mud.php config username:$admin" -s /bin/sh www-data +sudo su -c "cd $final_path && php mud.php config password:`echo -n $password | sha1sum | awk '{print $1}'`" -s /bin/sh www-data if [ $public_site = "No" ]; then - sudo su -c "cd $final_path && php mud.php config xmppwhitelist:$domain" movim + sudo su -c "cd $final_path && php mud.php config xmppwhitelist:$domain" -s /bin/sh www-data fi sudo yunohost app addaccess movim -u $admin @@ -105,7 +102,7 @@ fi sed -i "s@PATHTOCHANGE@$path@g" ../conf/nginx.conf sed -i "s@ALIASTOCHANGE@$final_path/@g" ../conf/nginx.conf sed -i "s@YHPORT@$port@g" ../conf/nginx.conf -sed -i "s@//ws/@/ws/@g" ../conf/nginx # Avoid duplicate / +sed -i "s@//ws/@/ws/@g" ../conf/nginx.conf # Avoid duplicate / sudo cp ../conf/nginx.conf /etc/nginx/conf.d/$domain.d/movim.conf # SSOwat Configuration diff --git a/scripts/upgrade b/scripts/upgrade index eddd07e..3672cdf 100644 --- a/scripts/upgrade +++ b/scripts/upgrade @@ -10,19 +10,9 @@ final_path=/var/www/movim sudo cp -a ../sources/* $final_path #sudo chown -R www-data: $final_path -# Create movim user if not exists and set permissions -if grep -q movim /etc/passwd; then - sudo chown -R movim:www-data $final_path - sudo chmod -R 770 $final_path -else - sudo useradd -s /bin/sh -d $final_path movim - sudo chown -R movim:www-data $final_path - sudo chmod -R 770 $final_path -fi - # Update PHP dependencies -sudo su -c "curl -sS https://getcomposer.org/installer | php -- --install-dir=$final_path" movim -sudo su -c "cd $final_path && php composer.phar install" movim +sudo su -c "curl -sS https://getcomposer.org/installer | php -- --install-dir=$final_path" -s /bin/sh www-data +sudo su -c "cd $final_path && php composer.phar install" -s /bin/sh www-data # Movim configuration sudo sed -i "s@/ws/@$path/ws/@g" $final_path/app/assets/js/movim_websocket.js From 85730765fed88498d263bea67f1cb2cf1075247e Mon Sep 17 00:00:00 2001 From: src386 Date: Fri, 21 Aug 2015 16:26:58 +0200 Subject: [PATCH 11/27] fix chmod issue on db.inc.php --- README.md | 2 +- scripts/install | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 8f45f72..6c58acf 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ Current Movim version : 20150820. - Public/Private policy changed. The SSO portal is not used anymore But when a pod is marked as "private", only accounts with @yourdomain.com are able to connect. This change was necessary for public content (blog) -- Add sticky bit to final_path +- Revert to www-data system user 0.7b 2015-08-20 - Update to upstream Movim 20150820 to fix #5 diff --git a/scripts/install b/scripts/install index 0197b56..7fa3597 100644 --- a/scripts/install +++ b/scripts/install @@ -54,6 +54,7 @@ sudo apt-get install php5-gd php5-curl php5-imagick php5-cli -y final_path=/var/www/movim sudo mkdir -p $final_path sudo cp -a ../sources/* $final_path +sudo cp $final_path/config/db.example.inc.php $final_path/config/db.inc.php # Create movim system user and set permissions sudo chown -R www-data: $final_path @@ -64,7 +65,6 @@ sudo su -c "curl -sS https://getcomposer.org/installer | php -- --install-dir=$f sudo su -c "cd $final_path && php composer.phar install" -s /bin/sh www-data # Movim configuration -sudo cp $final_path/config/db.example.inc.php $final_path/config/db.inc.php sudo sed -i "s@'username' => 'username'@'username' => '$db_user'@g" $final_path/config/db.inc.php sudo sed -i "s@'password' => 'password'@'password' => '$db_pwd'@g" $final_path/config/db.inc.php sudo sed -i "s@/ws/@$path/ws/@g" $final_path/app/assets/js/movim_websocket.js From c44b6e40b96fe48f2448ae35a555583d133eef9a Mon Sep 17 00:00:00 2001 From: src386 Date: Fri, 21 Aug 2015 16:31:12 +0200 Subject: [PATCH 12/27] revert to www-data user --- scripts/upgrade | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/upgrade b/scripts/upgrade index 3672cdf..4c8bfac 100644 --- a/scripts/upgrade +++ b/scripts/upgrade @@ -8,7 +8,8 @@ port=$(sudo yunohost app setting movim port) # Install Movim files final_path=/var/www/movim sudo cp -a ../sources/* $final_path -#sudo chown -R www-data: $final_path +sudo chown -R www-data: $final_path +sudo chmod -R 750 $final_path # Update PHP dependencies sudo su -c "curl -sS https://getcomposer.org/installer | php -- --install-dir=$final_path" -s /bin/sh www-data From f590cc1861cedab3ac72004e028fd113a10408f6 Mon Sep 17 00:00:00 2001 From: src386 Date: Fri, 21 Aug 2015 17:45:36 +0200 Subject: [PATCH 13/27] add dedicated pool for php-fpm --- README.md | 2 +- conf/php-fpm.conf | 16 ++++++++++++++++ scripts/install | 28 ++++++++++++++++------------ 3 files changed, 33 insertions(+), 13 deletions(-) create mode 100644 conf/php-fpm.conf diff --git a/README.md b/README.md index 6c58acf..54fea3a 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ Current Movim version : 20150820. - Public/Private policy changed. The SSO portal is not used anymore But when a pod is marked as "private", only accounts with @yourdomain.com are able to connect. This change was necessary for public content (blog) -- Revert to www-data system user +- Add dedicated php-fpm pool for Movim 0.7b 2015-08-20 - Update to upstream Movim 20150820 to fix #5 diff --git a/conf/php-fpm.conf b/conf/php-fpm.conf new file mode 100644 index 0000000..465c606 --- /dev/null +++ b/conf/php-fpm.conf @@ -0,0 +1,16 @@ +[movim] +listen = /var/run/php5-fpm-movim.sock +listen.owner = www-data +listen.group = www-data +listen.mode = 0600 +user = movim +group = movim + +pm = dynamic +pm.max_children = 5 +pm.start_servers = 2 +pm.min_spare_servers = 1 +pm.max_spare_servers = 3 +chroot = /var/www/movim +;chdir = /var/www/movim +php_admin_value[open_basedir] = none diff --git a/scripts/install b/scripts/install index 7fa3597..d14ee00 100644 --- a/scripts/install +++ b/scripts/install @@ -57,27 +57,28 @@ sudo cp -a ../sources/* $final_path sudo cp $final_path/config/db.example.inc.php $final_path/config/db.inc.php # Create movim system user and set permissions -sudo chown -R www-data: $final_path +sudo useradd -d /var/www/movim -s /bin/sh movim +sudo chown -R movim: $final_path sudo chmod -R 750 $final_path # Install PHP dependencies -sudo su -c "curl -sS https://getcomposer.org/installer | php -- --install-dir=$final_path" -s /bin/sh www-data -sudo su -c "cd $final_path && php composer.phar install" -s /bin/sh www-data +sudo su -c "curl -sS https://getcomposer.org/installer | php -- --install-dir=$final_path" movim +sudo su -c "cd $final_path && php composer.phar install" movim # Movim configuration sudo sed -i "s@'username' => 'username'@'username' => '$db_user'@g" $final_path/config/db.inc.php sudo sed -i "s@'password' => 'password'@'password' => '$db_pwd'@g" $final_path/config/db.inc.php sudo sed -i "s@/ws/@$path/ws/@g" $final_path/app/assets/js/movim_websocket.js -sudo su -c "cd $final_path && php mud.php db set" -s /bin/sh www-data -sudo su -c "cd $final_path && php mud.php config locale:$language" -s /bin/sh www-data -sudo su -c "cd $final_path && php mud.php config loglevel:1" -s /bin/sh www-data -sudo su -c "cd $final_path && php mud.php config environment:production" -s /bin/sh www-data -sudo su -c "cd $final_path && php mud.php config timezone:`cat /etc/timezone`" -s /bin/sh www-data -sudo su -c "cd $final_path && php mud.php config username:$admin" -s /bin/sh www-data -sudo su -c "cd $final_path && php mud.php config password:`echo -n $password | sha1sum | awk '{print $1}'`" -s /bin/sh www-data +sudo su -c "cd $final_path && php mud.php db set" movim +sudo su -c "cd $final_path && php mud.php config locale:$language" movim +sudo su -c "cd $final_path && php mud.php config loglevel:1" movim +sudo su -c "cd $final_path && php mud.php config environment:production" movim +sudo su -c "cd $final_path && php mud.php config timezone:`cat /etc/timezone`" movim +sudo su -c "cd $final_path && php mud.php config username:$admin" movim +sudo su -c "cd $final_path && php mud.php config password:`echo -n $password | sha1sum | awk '{print $1}'`" movim if [ $public_site = "No" ]; then - sudo su -c "cd $final_path && php mud.php config xmppwhitelist:$domain" -s /bin/sh www-data + sudo su -c "cd $final_path && php mud.php config xmppwhitelist:$domain" movim fi sudo yunohost app addaccess movim -u $admin @@ -98,6 +99,9 @@ else sudo /etc/init.d/movim start fi +# php-fpm configuration +sudo cp ../conf/php-fpm.conf /etc/php5/fpm/pool.d/movim.conf + # Nginx configuration sed -i "s@PATHTOCHANGE@$path@g" ../conf/nginx.conf sed -i "s@ALIASTOCHANGE@$final_path/@g" ../conf/nginx.conf @@ -110,5 +114,5 @@ sudo yunohost app setting movim skipped_uris -v "/" sudo yunohost app ssowatconf # Start Movim -sudo service nginx reload sudo service php5-fpm restart +sudo service nginx reload From 31f68b44ab781e99a2c57ac1f12eb657b88d728b Mon Sep 17 00:00:00 2001 From: src386 Date: Fri, 21 Aug 2015 17:47:56 +0200 Subject: [PATCH 14/27] going back to movim system user --- conf/movim.init | 2 +- conf/movim.service | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/conf/movim.init b/conf/movim.init index b0e1556..aa36030 100755 --- a/conf/movim.init +++ b/conf/movim.init @@ -11,7 +11,7 @@ dir="YHDIR" cmd="php daemon.php https://YHURL YHPORT" -user="www-data" +user="movim" name=`basename $0` pid_file="/var/run/$name.pid" diff --git a/conf/movim.service b/conf/movim.service index c237d9d..c20b295 100644 --- a/conf/movim.service +++ b/conf/movim.service @@ -3,7 +3,7 @@ Description=Movim daemon After=nginx.service network.target local-fs.target [Service] -User=www-data +User=movim Type=simple ExecStart=/usr/bin/php daemon.php https://YHURL YHPORT WorkingDirectory=YHDIR From d064a8edfbc6ab680a0512df3550c4d092bd2077 Mon Sep 17 00:00:00 2001 From: src386 Date: Fri, 21 Aug 2015 17:53:11 +0200 Subject: [PATCH 15/27] change random generation --- scripts/install | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/install b/scripts/install index d14ee00..641a7dc 100644 --- a/scripts/install +++ b/scripts/install @@ -38,7 +38,7 @@ sudo yunohost app setting movim public_site -v $public_site sudo yunohost app setting movim port -v $port # Generate random password -db_pwd=$(dd if=/dev/urandom bs=1 count=200 2> /dev/null | tr -c -d '[[:alnum:]]' | sed -n 's/\(.\{24\}\).*/\1/p') +db_pwd=$(dd if=/dev/urandom bs=1 count=200 2> /dev/null | tr -c -d '[[:alnum:]]') # Use 'movim' as database name and user db_user=movim From 7f9aa6598b02fd1cf26526ca424025dbe29a3035 Mon Sep 17 00:00:00 2001 From: src386 Date: Fri, 21 Aug 2015 18:00:34 +0200 Subject: [PATCH 16/27] change php5fpm sock address --- conf/nginx.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conf/nginx.conf b/conf/nginx.conf index e282b51..778f730 100644 --- a/conf/nginx.conf +++ b/conf/nginx.conf @@ -10,7 +10,7 @@ location PATHTOCHANGE { location ~ [^/]\.php(/|$) { fastcgi_split_path_info ^(.+?\.php)(/.*)$; - fastcgi_pass unix:/var/run/php5-fpm.sock; + fastcgi_pass unix:/var/run/php5-fpm-movim.sock; fastcgi_index index.php; include fastcgi_params; fastcgi_param REMOTE_USER $remote_user; From fda5a7255a236f2efc6a5dde2d286f329055d942 Mon Sep 17 00:00:00 2001 From: src386 Date: Fri, 21 Aug 2015 18:04:09 +0200 Subject: [PATCH 17/27] change to movim --- conf/php-fpm.conf | 3 +-- scripts/install | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/conf/php-fpm.conf b/conf/php-fpm.conf index 465c606..5c18954 100644 --- a/conf/php-fpm.conf +++ b/conf/php-fpm.conf @@ -11,6 +11,5 @@ pm.max_children = 5 pm.start_servers = 2 pm.min_spare_servers = 1 pm.max_spare_servers = 3 -chroot = /var/www/movim -;chdir = /var/www/movim +chdir = /var/www/movim php_admin_value[open_basedir] = none diff --git a/scripts/install b/scripts/install index 641a7dc..da37ebd 100644 --- a/scripts/install +++ b/scripts/install @@ -58,7 +58,7 @@ sudo cp $final_path/config/db.example.inc.php $final_path/config/db.inc.php # Create movim system user and set permissions sudo useradd -d /var/www/movim -s /bin/sh movim -sudo chown -R movim: $final_path +sudo chown -R movim:www-data $final_path sudo chmod -R 750 $final_path # Install PHP dependencies From a0ca9eab9c44829f3b3c6f64ce3ce680f7109ec8 Mon Sep 17 00:00:00 2001 From: src386 Date: Fri, 21 Aug 2015 18:12:22 +0200 Subject: [PATCH 18/27] update script --- scripts/upgrade | 35 +++++++++++++++++++++++++++++++---- 1 file changed, 31 insertions(+), 4 deletions(-) diff --git a/scripts/upgrade b/scripts/upgrade index 4c8bfac..dec8cb0 100644 --- a/scripts/upgrade +++ b/scripts/upgrade @@ -4,20 +4,35 @@ path=$(sudo yunohost app setting movim path) domain=$(sudo yunohost app setting movim domain) port=$(sudo yunohost app setting movim port) +public_site=$(sudo yunohost app setting movim public_site) # Install Movim files final_path=/var/www/movim sudo cp -a ../sources/* $final_path -sudo chown -R www-data: $final_path -sudo chmod -R 750 $final_path + +# Create movim user if not exists and set permissions +if grep -q movim /etc/passwd; then + sudo chown -R movim:www-data $final_path + sudo chmod -R 750 $final_path +else + sudo useradd -s /bin/sh -d $final_path movim + sudo chown -R movim:www-data $final_path + sudo chmod -R 750 $final_path +fi # Update PHP dependencies -sudo su -c "curl -sS https://getcomposer.org/installer | php -- --install-dir=$final_path" -s /bin/sh www-data -sudo su -c "cd $final_path && php composer.phar install" -s /bin/sh www-data +sudo su -c "curl -sS https://getcomposer.org/installer | php -- --install-dir=$final_path" movim +sudo su -c "cd $final_path && php composer.phar install" movim # Movim configuration sudo sed -i "s@/ws/@$path/ws/@g" $final_path/app/assets/js/movim_websocket.js +# Update xmppwhitelist if private +if [ $public_site = "No" ]; +then + sudo su -c "cd $final_path && php mud.php config xmppwhitelist:$domain" movim +fi + # Update init scripts sudo sed -i "s@YHURL@$domain$path@g" ../conf/movim.{service,init} sudo sed -i "s@YHDIR@$final_path@g" ../conf/movim.{service,init} @@ -38,6 +53,18 @@ else sudo /etc/init.d/movim start fi +# Update php-fpm configuration +sudo cp ../conf/php-fpm.conf /etc/php5/fpm/pool.d/movim.conf + +# Nginx configuration +sed -i "s@PATHTOCHANGE@$path@g" ../conf/nginx.conf +sed -i "s@ALIASTOCHANGE@$final_path/@g" ../conf/nginx.conf +sed -i "s@YHPORT@$port@g" ../conf/nginx.conf +sed -i "s@//ws/@/ws/@g" ../conf/nginx.conf # Avoid duplicate / +sudo cp ../conf/nginx.conf /etc/nginx/conf.d/$domain.d/movim.conf + # Reload sudo yunohost app ssowatconf sudo service movim restart +sudo service php5-fpm restart +sudo service nginx reload From 76195238899a8cdd1a14e77bcf6682ba0b357d7f Mon Sep 17 00:00:00 2001 From: src386 Date: Fri, 21 Aug 2015 18:20:35 +0200 Subject: [PATCH 19/27] delete old SSO configuration --- scripts/upgrade | 3 +++ 1 file changed, 3 insertions(+) diff --git a/scripts/upgrade b/scripts/upgrade index dec8cb0..57bf11a 100644 --- a/scripts/upgrade +++ b/scripts/upgrade @@ -33,6 +33,9 @@ then sudo su -c "cd $final_path && php mud.php config xmppwhitelist:$domain" movim fi +# Delete obsolete SSO conf +sudo yunohost app setting movim protected_uris -d + # Update init scripts sudo sed -i "s@YHURL@$domain$path@g" ../conf/movim.{service,init} sudo sed -i "s@YHDIR@$final_path@g" ../conf/movim.{service,init} From 00e116f8bc810d90ac2360a824b7c42e447f38b8 Mon Sep 17 00:00:00 2001 From: src386 Date: Fri, 21 Aug 2015 18:20:47 +0200 Subject: [PATCH 20/27] delete TODO --- TODO | 1 - 1 file changed, 1 deletion(-) delete mode 100644 TODO diff --git a/TODO b/TODO deleted file mode 100644 index 60f7e13..0000000 --- a/TODO +++ /dev/null @@ -1 +0,0 @@ -- Allow access to blog when private installation selected From 225cfda6e9ec62101efe15f6c7c5777d901c19bf Mon Sep 17 00:00:00 2001 From: src386 Date: Fri, 21 Aug 2015 18:24:53 +0200 Subject: [PATCH 21/27] update readme --- README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/README.md b/README.md index 54fea3a..bf79e57 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,6 @@ Current Movim version : 20150820. 0.8b ? - Added language selection : ar, de, es, it, ja, nl, ru - Fix URL in manifest.json (was https://https://...) -- Modified mysql password generation (no special car) - Public/Private policy changed. The SSO portal is not used anymore But when a pod is marked as "private", only accounts with @yourdomain.com are able to connect. This change was necessary for public content (blog) From 18ad9d52ece554018096105201093737fe47d45d Mon Sep 17 00:00:00 2001 From: src386 Date: Fri, 21 Aug 2015 18:31:32 +0200 Subject: [PATCH 22/27] remove ssowat conf --- conf/nginx.conf | 3 --- 1 file changed, 3 deletions(-) diff --git a/conf/nginx.conf b/conf/nginx.conf index 778f730..4d46e01 100644 --- a/conf/nginx.conf +++ b/conf/nginx.conf @@ -31,9 +31,6 @@ location ~ ^PATHTOCHANGE/ws/ { proxy_send_timeout 86400s; proxy_redirect off; } - -# Include SSOWAT user panel. - include conf.d/yunohost_panel.conf.inc; } location ~ ^PATHTOCHANGE/(log|\.ht) { From 9fccc103951c03eead32f9b2a54c069278b78daa Mon Sep 17 00:00:00 2001 From: src386 Date: Fri, 21 Aug 2015 18:41:50 +0200 Subject: [PATCH 23/27] block /log and /config --- conf/nginx.conf | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/conf/nginx.conf b/conf/nginx.conf index 4d46e01..e8f9d0c 100644 --- a/conf/nginx.conf +++ b/conf/nginx.conf @@ -33,6 +33,10 @@ location ~ ^PATHTOCHANGE/ws/ { } } -location ~ ^PATHTOCHANGE/(log|\.ht) { - deny all; -} +location ~ /\.ht { + deny all; + } + +location ~ /(config|log)$ { + return 403; + } From 50b7a1fb7dc5ed815dcf7b45e0bf7d8e6580d7ea Mon Sep 17 00:00:00 2001 From: src386 Date: Fri, 21 Aug 2015 18:57:10 +0200 Subject: [PATCH 24/27] save path parameter --- README.md | 3 ++- scripts/install | 2 ++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index bf79e57..cdd0442 100644 --- a/README.md +++ b/README.md @@ -9,13 +9,14 @@ Current Movim version : 20150820. **Changelog** -0.8b ? +0.8b 2015-08-21 - Added language selection : ar, de, es, it, ja, nl, ru - Fix URL in manifest.json (was https://https://...) - Public/Private policy changed. The SSO portal is not used anymore But when a pod is marked as "private", only accounts with @yourdomain.com are able to connect. This change was necessary for public content (blog) - Add dedicated php-fpm pool for Movim +- Protect /log and /config properly 0.7b 2015-08-20 - Update to upstream Movim 20150820 to fix #5 diff --git a/scripts/install b/scripts/install index da37ebd..371a7d7 100644 --- a/scripts/install +++ b/scripts/install @@ -33,9 +33,11 @@ printf "Error empty admin password, aborting" exit 1 fi +# Save parameters sudo yunohost app setting movim admin -v $admin sudo yunohost app setting movim public_site -v $public_site sudo yunohost app setting movim port -v $port +sudo yunohost app setting movim path -v $path # Generate random password db_pwd=$(dd if=/dev/urandom bs=1 count=200 2> /dev/null | tr -c -d '[[:alnum:]]') From 99e7095c1fdecf5553f3bb1ce3b9aa96a7d0d03c Mon Sep 17 00:00:00 2001 From: src386 Date: Fri, 21 Aug 2015 19:04:59 +0200 Subject: [PATCH 25/27] update to movim 20150821 --- README.md | 3 +- sources/app/helpers/StringHelper.php | 7 +- sources/app/models/contact/Contact.php | 2 +- sources/app/widgets/Chat/chat.css | 4 +- sources/app/widgets/Chat/chat.js | 7 + sources/app/widgets/Chat/chat.tpl | 9 +- sources/app/widgets/Chats/Chats.php | 31 +- sources/app/widgets/Chats/_chats_item.tpl | 16 +- sources/app/widgets/Chats/locales.ini | 2 + sources/app/widgets/Roster/roster.tpl | 2 +- sources/linker.php | 2 +- sources/locales/ar.po | 3265 +++++++++---------- sources/locales/be.po | 3059 +++++++++--------- sources/locales/bn.po | 3050 +++++++++--------- sources/locales/br.po | 3156 ++++++++++--------- sources/locales/da.po | 3291 ++++++++++---------- sources/locales/de.po | 3450 +++++++++++---------- sources/locales/el.po | 3152 ++++++++++--------- sources/locales/eo.po | 3141 ++++++++++--------- sources/locales/es.po | 3390 ++++++++++---------- sources/locales/fa.po | 3047 +++++++++--------- sources/locales/fi.po | 3241 +++++++++---------- sources/locales/fr.po | 3443 ++++++++++---------- sources/locales/gl.po | 3070 +++++++++--------- sources/locales/he.po | 2162 +++++++------ sources/locales/hr.po | 3043 +++++++++--------- sources/locales/id.po | 3148 ++++++++++--------- sources/locales/io.po | 3046 +++++++++--------- sources/locales/it.po | 3370 ++++++++++---------- sources/locales/ja.po | 3203 ++++++++++--------- sources/locales/kk.po | 3043 +++++++++--------- sources/locales/lv.po | 3094 +++++++++--------- sources/locales/messages.pot | 92 +- sources/locales/nl.po | 3249 +++++++++---------- sources/locales/no.po | 3072 +++++++++--------- sources/locales/oc.po | 3297 ++++++++++---------- sources/locales/pt.po | 3245 +++++++++---------- sources/locales/ro.po | 3095 +++++++++--------- sources/locales/ru.po | 3426 ++++++++++---------- sources/locales/uk.po | 3095 +++++++++--------- sources/locales/zh.po | 3259 +++++++++---------- sources/system/Utils.php | 2 +- sources/themes/material/css/form.css | 2 +- sources/themes/material/css/style.css | 16 +- 44 files changed, 47262 insertions(+), 44537 deletions(-) diff --git a/README.md b/README.md index cdd0442..7ed43f6 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ Movim is a decentralized social network, written in PHP and HTML5 and based on t Warning: BETA. -Current Movim version : 20150820. +Current Movim version : 20150821. **Changelog** @@ -17,6 +17,7 @@ Current Movim version : 20150820. This change was necessary for public content (blog) - Add dedicated php-fpm pool for Movim - Protect /log and /config properly +- Update to upstream Movim 20150821 0.7b 2015-08-20 - Update to upstream Movim 20150820 to fix #5 diff --git a/sources/app/helpers/StringHelper.php b/sources/app/helpers/StringHelper.php index 3bd3ff3..3a6edce 100644 --- a/sources/app/helpers/StringHelper.php +++ b/sources/app/helpers/StringHelper.php @@ -224,7 +224,12 @@ function cleanJid($jid) */ function explodeJid($jid) { - list($jid, $resource) = explode('/', $jid); + $arr = explode('/', $jid); + $jid = $arr[0]; + + if(isset($arr[1])) $resource = $arr[1]; + else $resource = null; + list($username, $server) = explode('@', $jid); return array( diff --git a/sources/app/models/contact/Contact.php b/sources/app/models/contact/Contact.php index ae332cd..d657101 100644 --- a/sources/app/models/contact/Contact.php +++ b/sources/app/models/contact/Contact.php @@ -261,7 +261,7 @@ class Contact extends Model { public function setVcard4($vcard) { if(isset($vcard->bday->date)) $this->date = (string)$vcard->bday->date; - if($empty($this->date)) + if(empty($this->date)) $this->date = null; $this->name = (string)$vcard->nickname->text; diff --git a/sources/app/widgets/Chat/chat.css b/sources/app/widgets/Chat/chat.css index 3477028..b4c0dfd 100644 --- a/sources/app/widgets/Chat/chat.css +++ b/sources/app/widgets/Chat/chat.css @@ -1,7 +1,7 @@ #chat_header.encrypted:after{ content: ""; display: inline-block; - font-family: "Material Design Iconic Font"; + font-family: "Material Design Iconic Font"; content: "\f041"; font-size: 2.5rem; margin-left: 1rem; @@ -19,7 +19,7 @@ #chat_widget .chat_box ul { margin: 0 auto; max-width: 100rem; - margin-left: calc(50% - 51rem); + margin-left: calc(45% - 49rem); } #chat_widget .chat_box form { diff --git a/sources/app/widgets/Chat/chat.js b/sources/app/widgets/Chat/chat.js index 9531754..afa727d 100644 --- a/sources/app/widgets/Chat/chat.js +++ b/sources/app/widgets/Chat/chat.js @@ -121,6 +121,13 @@ var Chat = { } } +MovimWebsocket.attach(function() { + var jid = document.querySelector('#chat_widget').dataset.jid; + if(jid) { + Chat_ajaxGet(jid); + } +}); + Upload.attach(function() { var textarea = document.querySelector('#chat_textarea'); textarea.value = Upload.get + ' ' + textarea.value; diff --git a/sources/app/widgets/Chat/chat.tpl b/sources/app/widgets/Chat/chat.tpl index a21c0aa..2d520c6 100644 --- a/sources/app/widgets/Chat/chat.tpl +++ b/sources/app/widgets/Chat/chat.tpl @@ -1,10 +1,3 @@ -
+
{$c->prepareEmpty()} - {if="$jid"} - - {/if}
diff --git a/sources/app/widgets/Chats/Chats.php b/sources/app/widgets/Chats/Chats.php index 1c8c823..6c3f920 100644 --- a/sources/app/widgets/Chats/Chats.php +++ b/sources/app/widgets/Chats/Chats.php @@ -15,6 +15,8 @@ class Chats extends WidgetBase $this->registerEvent('carbons', 'onMessage'); $this->registerEvent('message', 'onMessage'); $this->registerEvent('presence', 'onPresence', 'chat'); + $this->registerEvent('composing', 'onComposing'); + $this->registerEvent('paused', 'onPaused'); } function onMessage($packet) @@ -56,6 +58,29 @@ class Chats extends WidgetBase } } + function onComposing($array) + { + $this->setState($array, $this->__('chats.composing')); + } + + function onPaused($array) + { + $this->setState($array, $this->__('chats.paused')); + } + + private function setState($array, $message) + { + list($from, $to) = $array; + if($from == $this->user->getLogin()) { + $jid = $to; + } else { + $jid = $from; + } + + RPC::call('movim_replace', $jid.'_chat_item', $this->prepareChat($jid, $message)); + RPC::call('Chats.refresh'); + } + /** * @brief Get history */ @@ -67,7 +92,7 @@ class Chats extends WidgetBase $messages = $md->getContact(echapJid($jid), 0, 1); $g = new \Moxl\Xec\Action\MAM\Get; - $g->setJid($jid); + $g->setJid(echapJid($jid)); if(!empty($messages)) { $g->setStart(strtotime($messages[0]->published)); @@ -156,7 +181,7 @@ class Chats extends WidgetBase return $view->draw('_chats', true); } - function prepareChat($jid) + function prepareChat($jid, $status = null) { if(!$this->validateJid($jid)) return; @@ -180,6 +205,8 @@ class Chats extends WidgetBase $view->assign('caps', null); } + $view->assign('status', $status); + $m = $md->getContact($jid, 0, 1); if(isset($m)) { $view->assign('message', $m[0]); diff --git a/sources/app/widgets/Chats/_chats_item.tpl b/sources/app/widgets/Chats/_chats_item.tpl index 798f6b9..cb566fd 100644 --- a/sources/app/widgets/Chats/_chats_item.tpl +++ b/sources/app/widgets/Chats/_chats_item.tpl @@ -26,12 +26,16 @@ {/if} {$contact->getTrueName()} - {if="isset($message)"} - {$message->published|strtotime|prepareDate} - {if="preg_match('#^\?OTR#', $message->body)"} -

{$c->__('message.encrypted')}

- {else} -

{$message->body|prepareString|strip_tags}

+ {if="isset($status)"} +

{$status}

+ {else} + {if="isset($message)"} + {$message->published|strtotime|prepareDate} + {if="preg_match('#^\?OTR#', $message->body)"} +

{$c->__('message.encrypted')}

+ {else} +

{$message->body|prepareString|strip_tags}

+ {/if} {/if} {/if} diff --git a/sources/app/widgets/Chats/locales.ini b/sources/app/widgets/Chats/locales.ini index 46e51c3..18770ee 100644 --- a/sources/app/widgets/Chats/locales.ini +++ b/sources/app/widgets/Chats/locales.ini @@ -4,6 +4,8 @@ empty = Open a new conversation by clicking on the plus button bello add = Chat with a contact frequent = Frequent contacts more = Load more contacts +composing = Composing... +paused = Paused... [message] encrypted = Encrypted message diff --git a/sources/app/widgets/Roster/roster.tpl b/sources/app/widgets/Roster/roster.tpl index 6e7b6de..58cf12d 100644 --- a/sources/app/widgets/Roster/roster.tpl +++ b/sources/app/widgets/Roster/roster.tpl @@ -1,5 +1,5 @@
-
    +

      {$c->__('roster.no_contacts_title')}

      {$c->__('roster.no_contacts_text')}

      diff --git a/sources/linker.php b/sources/linker.php index 6bf25ab..821d982 100644 --- a/sources/linker.php +++ b/sources/linker.php @@ -51,7 +51,6 @@ $stdin_behaviour = function ($data) use (&$conn, $loop, &$buffer, &$connector, & $config = $cd->get(); $port = 5222; - $dns = \Moxl\Utils::resolveHost($msg->host); if(isset($dns[0]['target']) && $dns[0]['target'] != null) $msg->host = $dns[0]['target']; if(isset($dns[0]['port']) && $dns[0]['port'] != null) $port = $dns[0]['port']; @@ -111,6 +110,7 @@ $xmpp_behaviour = function (React\Stream\Stream $stream) use (&$conn, $loop, &$s } elseif($message == "" || $message == '') { stream_set_blocking($conn->stream, 1); + stream_context_set_option($conn->stream, 'ssl', 'allow_self_signed', true); $out = stream_socket_enable_crypto($conn->stream, 1, STREAM_CRYPTO_METHOD_TLS_CLIENT); $restart = true; diff --git a/sources/locales/ar.po b/sources/locales/ar.po index 0c8883b..2158732 100644 --- a/sources/locales/ar.po +++ b/sources/locales/ar.po @@ -1,2670 +1,2785 @@ # Arabic translations for Movim package. # This file is distributed under the same license as the Movim package. # This file was translated from CodingTeam at . +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/About/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Account/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AccountNext/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AdHoc/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AdminDB/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AdminMain/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AdminTest/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Api/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Avatar/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Blog/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Bookmark/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Chat/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Chats/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/ConfigData/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Config/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Contact/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Group/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Groups/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Header/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Hello/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Help/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Init/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Location/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/LoginAnonymous/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Login/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Menu/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/NodeAffiliations/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/NodeSubscriptions/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Notifs/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Post/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Presence/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Publish/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/PubsubSubscriptionConfig/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Rooms/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Roster/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Share/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Statistics/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Subscribe/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Syndication/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Upload/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Vcard4/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/VisioExt/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Visio/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../locales/locales.ini msgid "" msgstr "" "Project-Id-Version: Movim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-06-08 22:06+0200\n" +"POT-Creation-Date: 2015-08-20 15:17+0200\n" "PO-Revision-Date: 2015-06-09 12:20+0000\n" "Last-Translator: Mohamed-Touhami MAHDI \n" "Language-Team: LANGUAGE \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2015-06-18 21:08+0000\n" "X-Generator: Launchpad (build 17570)\n" -"Language: \n" -#: ../cache/locales.php:2 +#: [about]thanks msgid "Thanks" msgstr "شكرًا" -#: ../cache/locales.php:3 +#: [about]developers msgid "Developers" msgstr "المطوّرون" -#: ../cache/locales.php:4 +#: [about]translators msgid "Translators" msgstr "المترجمون" -#: ../cache/locales.php:5 +#: [about]software msgid "Software" msgstr "البرنامج" -#: ../cache/locales.php:6 +#: [about]resources msgid "Resources" msgstr "الموارد" -#: ../cache/locales.php:7 ../cache/locales.php:83 ../cache/locales.php:85 +#: [about]api [schema]api [api]title msgid "API" msgstr "API" -#: ../cache/locales.php:8 -msgid "" -"Movim is an XMPP-based communication platform. All the project, except the " -"following software and resources, is under" -msgstr "" -"موفيم عبارة عن مصفحة تواصل مرتكزة على XMPP. المشروع بأكمله بإستناء البرامج " -"والموارد التالية هي تحت" +#: [about]info +msgid "Movim is an XMPP-based communication platform. All the project, except the following software and resources, is under" +msgstr "موفيم عبارة عن مصفحة تواصل مرتكزة على XMPP. المشروع بأكمله بإستناء البرامج والموارد التالية هي تحت" -#: ../cache/locales.php:9 +#: [account]title msgid "Account" msgstr "" -#: ../cache/locales.php:10 -msgid "The password has been updated" -msgstr "" +#: [account]password_change_title +#, fuzzy +msgid "Change my password" +msgstr "كلمة السر غير صحيحة" -#: ../cache/locales.php:11 -msgid "Please provide a valid password (6 characters minimum)" -msgstr "" - -#: ../cache/locales.php:12 -msgid "The provided passwords are not the same" -msgstr "" - -#: ../cache/locales.php:13 -msgid "Delete my account" -msgstr "" - -#: ../cache/locales.php:14 -msgid "" -"You will delete your XMPP account and all the relative information linked to " -"it (profile, contacts and publications)." -msgstr "" - -#: ../cache/locales.php:15 -msgid "Are you sure that you want to delete it ?" -msgstr "" - -#: ../cache/locales.php:16 ../cache/locales.php:411 -msgid "Create a new account" -msgstr "أنشئ حسابًا جديدًا" - -#: ../cache/locales.php:17 -msgid "No account creation form found on the server" -msgstr "لم يم العثور على أي إستمارة لﻹنشاء حساب على الخادم." - -#: ../cache/locales.php:18 ../cache/locales.php:172 -msgid "on" -msgstr "في" - -#: ../cache/locales.php:19 -msgid "Your acccount has been successfully registered" -msgstr "" - -#: ../cache/locales.php:20 -msgid "Loading" -msgstr "جارٍ التحميل" - -#: ../cache/locales.php:21 -msgid "Not Acceptable" -msgstr "" - -#: ../cache/locales.php:22 -msgid "The registration system of this server is currently unavailable" -msgstr "" - -#: ../cache/locales.php:23 -msgid "" -"This server use an external system for the registration, please click on the " -"following URL." -msgstr "" - -#: ../cache/locales.php:24 -msgid "Actions" -msgstr "إجراءات" - -#: ../cache/locales.php:25 ../cache/locales.php:82 -msgid "Database" -msgstr "" - -#: ../cache/locales.php:26 -msgid "Modl wasn't able to connect to the database" -msgstr "لم يستطع Modl أن يتصل بقاعدة البيانات" - -#: ../cache/locales.php:27 -msgid "Movim is connected to the database" -msgstr "إن موفيم متصل بقاعدة البيانات" - -#: ../cache/locales.php:28 -msgid "The database need to be updated" -msgstr "إن قاعدة البيانات في حاجة إلى تحديث" - -#: ../cache/locales.php:29 -msgid "Movim database is up to date" -msgstr "إن قاعدة بيانات موفيم محدثة" - -#: ../cache/locales.php:30 -msgid "Database Type" -msgstr "نوع قاعدة البيانات" - -#: ../cache/locales.php:31 ../cache/locales.php:50 ../cache/locales.php:540 -msgid "Username" -msgstr "اسم المستخدم" - -#: ../cache/locales.php:32 ../cache/locales.php:51 ../cache/locales.php:282 -#: ../cache/locales.php:541 +#: [account]password [db]password [credentials]password [form]password +#: [input]password msgid "Password" msgstr "كلمة السّر" -#: ../cache/locales.php:33 +#: [account]password_confirmation +#, fuzzy +msgid "Password confirmation" +msgstr "%s - تكوين" + +#: [account]password_changed +msgid "The password has been updated" +msgstr "" + +#: [account]password_not_valid +msgid "Please provide a valid password (6 characters minimum)" +msgstr "" + +#: [account]password_not_same +msgid "The provided passwords are not the same" +msgstr "" + +#: [account]delete_title +msgid "Delete my account" +msgstr "" + +#: [account]delete +#, fuzzy +msgid "Delete your account" +msgstr "أنشئ حسابًا جديدًا" + +#: [account]delete_text +msgid "You will delete your XMPP account and all the relative information linked to it (profile, contacts and publications)." +msgstr "" + +#: [account]delete_text_confirm +msgid "Are you sure that you want to delete it ?" +msgstr "" + +#: [account]gateway_title +msgid "Gateway" +msgstr "" + +#: [create]title [subscribe]title +msgid "Create a new account" +msgstr "أنشئ حسابًا جديدًا" + +#: [create]notfound +msgid "No account creation form found on the server" +msgstr "لم يم العثور على أي إستمارة لﻹنشاء حساب على الخادم." + +#: [create]server_on +msgid "on" +msgstr "في" + +#: [create]successfull +msgid "Your acccount has been successfully registered" +msgstr "" + +#: [create]loading +msgid "Loading" +msgstr "جارٍ التحميل" + +#: [error]not_acceptable +msgid "Not Acceptable" +msgstr "" + +#: [error]service_unavailable +msgid "The registration system of this server is currently unavailable" +msgstr "" + +#: [oob]about +msgid "This server use an external system for the registration, please click on the following URL." +msgstr "" + +#: [adhoc]title +msgid "Actions" +msgstr "إجراءات" + +#: [db]legend [schema]database +msgid "Database" +msgstr "" + +#: [db]connect_error +msgid "Modl wasn't able to connect to the database" +msgstr "لم يستطع Modl أن يتصل بقاعدة البيانات" + +#: [db]connect_success +msgid "Movim is connected to the database" +msgstr "إن موفيم متصل بقاعدة البيانات" + +#: [db]update +msgid "The database need to be updated" +msgstr "إن قاعدة البيانات في حاجة إلى تحديث" + +#: [db]up_to_date +msgid "Movim database is up to date" +msgstr "إن قاعدة بيانات موفيم محدثة" + +#: [db]type +msgid "Database Type" +msgstr "نوع قاعدة البيانات" + +#: [db]username [credentials]username [input]username +msgid "Username" +msgstr "اسم المستخدم" + +#: [db]host msgid "Host" msgstr "المستضيف" -#: ../cache/locales.php:34 +#: [db]port msgid "Port" msgstr "المَنفذ" -#: ../cache/locales.php:35 -msgid "Database Name" -msgstr "" +#: [db]name +#, fuzzy +msgid "Database sName" +msgstr "نوع قاعدة البيانات" -#: ../cache/locales.php:36 +#: [admin]general msgid "General Settings" msgstr "الإعدادات العامة" -#: ../cache/locales.php:37 +#: [general]theme msgid "Theme" msgstr "المظهر" -#: ../cache/locales.php:38 +#: [general]language msgid "Default language" msgstr "اللغة الإفتراضيّة" -#: ../cache/locales.php:39 -msgid "Environment" -msgstr "البيئة" - -#: ../cache/locales.php:40 +#: [general]log_verbosity msgid "Log verbosity" msgstr "" -#: ../cache/locales.php:41 +#: [general]timezone msgid "Server Timezone" msgstr "" -#: ../cache/locales.php:42 +#: [general]limit msgid "User folder size limit (in bytes)" msgstr "" -#: ../cache/locales.php:43 +#: [websocket]title msgid "WebSocket Configuration" msgstr "" -#: ../cache/locales.php:44 +#: [websocket]info msgid "Enter here a valid WebSocket URI in the form" msgstr "" -#: ../cache/locales.php:45 +#: [websocket]label msgid "WebSocket URI" msgstr "" -#: ../cache/locales.php:46 -msgid "" -"If you change the URI, please restart the daemon to reload the configuration" +#: [websocket]save_info +msgid "If you change the URI, please restart the daemon to reload the configuration" msgstr "" -#: ../cache/locales.php:47 +#: [websocket]publics msgid "Public WebSockets" msgstr "" -#: ../cache/locales.php:48 +#: [credentials]title msgid "Administration Credential" msgstr "" -#: ../cache/locales.php:49 +#: [credentials]info msgid "Change the default credentials admin/password" msgstr "" -#: ../cache/locales.php:52 +#: [credentials]re_password msgid "Retype password" msgstr "أعِد كتابة كلمة السر" -#: ../cache/locales.php:53 +#: [whitelist]title msgid "Whitelist - XMPP Server" msgstr "" -#: ../cache/locales.php:54 -msgid "" -"If you want to specify a list of authorized XMPP servers on your Movim pod " -"and forbid the connection on all the others please put their domain name " -"here, with comma (ex: movim.eu,jabber.fr)" +#: [whitelist]info1 +msgid "If you want to specify a list of authorized XMPP servers on your Movim pod and forbid the connection on all the others please put their domain name here, with comma (ex: movim.eu,jabber.fr)" msgstr "" -#: ../cache/locales.php:55 -msgid "" -"Leave this field blank if you allow the access to all the XMPP accounts." +#: [whitelist]info2 +msgid "Leave this field blank if you allow the access to all the XMPP accounts." msgstr "إترك هذا الحقل فارغا للسماح النفود لجميع حسابات XMPP." -#: ../cache/locales.php:56 +#: [whitelist]label msgid "List of whitelisted XMPP servers" msgstr "" -#: ../cache/locales.php:57 ../cache/locales.php:61 +#: [information]title +#, fuzzy +msgctxt "[information]title" msgid "Information Message" msgstr "رسالة معلومات" -#: ../cache/locales.php:58 +#: [information]description msgid "Description" msgstr "الوصف" -#: ../cache/locales.php:59 +#: [information]info1 msgid "This message will be displayed on the login page" msgstr "" -#: ../cache/locales.php:60 -msgid "Leave this field blank if you don't want to show any message." -msgstr "" +#: [information]info2 +#, fuzzy +msgid "Leave this field blank if you dont want to show any message." +msgstr "إترك هذا الحقل فارغا للسماح النفود لجميع حسابات XMPP." -#: ../cache/locales.php:62 +#: [information]label +#, fuzzy +msgctxt "[information]label" +msgid "Information Message" +msgstr "رسالة معلومات" + +#: [log]empty msgid "Empty" msgstr "" -#: ../cache/locales.php:63 +#: [log]syslog msgid "Syslog" msgstr "" -#: ../cache/locales.php:64 +#: [log]syslog_files msgid "Syslog and files" msgstr "" -#: ../cache/locales.php:65 +#: [rewrite]title msgid "URL Rewriting" msgstr "" -#: ../cache/locales.php:66 +#: [rewrite]info msgid "The URL Rewriting can be enabled" msgstr "" -#: ../cache/locales.php:67 +#: [admin]compatibility msgid "General Overview" msgstr "" -#: ../cache/locales.php:68 -msgid "" -"Movim has found some issues or things that need to be fixed or improved" +#: [compatibility]info +msgid "Movim has found some issues or things that need to be fixed or improved" msgstr "" -#: ../cache/locales.php:69 -#, php-format +#: [compatibility]php1 msgid "Update your PHP-Version: %s" msgstr "" -#: ../cache/locales.php:70 +#: [compatibility]php2 msgid "Required: 5.3.0" msgstr "" -#: ../cache/locales.php:71 +#: [compatibility]curl msgid "Install the php5-curl library" msgstr "" -#: ../cache/locales.php:72 +#: [compatibility]imagick msgid "Install the php5-imagick library" msgstr "" -#: ../cache/locales.php:73 +#: [compatibility]gd msgid "Install the php5-gd library" msgstr "" -#: ../cache/locales.php:74 -msgid "Read and write rights for the webserver in Movim's root directory" -msgstr "" +#: [compatibility]rights +#, fuzzy +msgid "Read and write rights for the webserver in Movims root directory" +msgstr "فعّل صلاحيات القراءة و الكتابة على دليل Movim الجذر" -#: ../cache/locales.php:75 +#: [compatibility]rewrite msgid "The URL Rewriting support is currently disabled" msgstr "" -#: ../cache/locales.php:76 +#: [compatibility]db msgid "The database need to be updated, go to the database panel to fix this" msgstr "" -#: ../cache/locales.php:77 -msgid "" -"WebSocket connection error, check if the Movim Daemon is running and is " -"reacheable" +#: [compatibility]websocket +msgid "WebSocket connection error, check if the Movim Daemon is running and is reachable" msgstr "" -#: ../cache/locales.php:78 -msgid "" -"XMPP Websocket connection error, please check the validity of the URL given " -"in the General Configuration" +#: [compatibility]xmpp_websocket +msgid "XMPP Websocket connection error, please check the validity of the URL given in the General Configuration" msgstr "" -#: ../cache/locales.php:79 +#: [schema]browser msgid "Browser" msgstr "" -#: ../cache/locales.php:80 +#: [schema]movim msgid "Movim Core" msgstr "" -#: ../cache/locales.php:81 +#: [schema]daemon msgid "Movim Daemon" msgstr "" -#: ../cache/locales.php:84 +#: [schema]xmpp msgid "XMPP" msgstr "" -#: ../cache/locales.php:86 -#, php-format -msgid "" -"Here you can register your pod on the official %sMovim API%s and be listed " -"on %sthe pods page%s." +#: [api]info +msgid "Here you can register your pod on the official %sMovim API%s and be listed on %sthe pods page%s." msgstr "" -#: ../cache/locales.php:87 +#: [api]register msgid "Your pod is not registered on the API" msgstr "" -#: ../cache/locales.php:88 +#: [api]registered msgid "Your pod is registered on the API" msgstr "" -#: ../cache/locales.php:89 +#: [api]wait msgid "Your pod is not yet validated" msgstr "" -#: ../cache/locales.php:90 +#: [api]validated msgid "Your pod is validated" msgstr "" -#: ../cache/locales.php:91 -msgid "" -"You asked to be removed from the API, this request will be processed in a " -"couple of hours" +#: [api]unregister +msgid "You asked to be removed from the API, this request will be processed in a couple of hours" msgstr "" -#: ../cache/locales.php:92 ../cache/locales.php:147 +#: [api]conf_updated [config]updated msgid "Configuration updated" msgstr "" -#: ../cache/locales.php:93 +#: [avatar]file msgid "File" msgstr "" -#: ../cache/locales.php:94 +#: [avatar]use_it msgid "Use it" msgstr "" -#: ../cache/locales.php:95 +#: [avatar]webcam msgid "Webcam" msgstr "كاميرا الويب" -#: ../cache/locales.php:96 +#: [avatar]cheese msgid "Cheese !" msgstr "" -#: ../cache/locales.php:97 +#: [avatar]snapshot msgid "Take a webcam snapshot" msgstr "" -#: ../cache/locales.php:98 +#: [avatar]updated msgid "Avatar Updated" msgstr "" -#: ../cache/locales.php:99 +#: [avatar]not_updated msgid "Avatar Not Updated" msgstr "" -#: ../cache/locales.php:100 ../cache/locales.php:415 -#, php-format +#: [blog]title [feed]title msgid "%s's feed" msgstr "" -#: ../cache/locales.php:101 +#: [blog]empty msgid "This user has not posted anything right now" msgstr "" -#: ../cache/locales.php:102 +#: [title]conferences msgid "Conferences" msgstr "" -#: ../cache/locales.php:103 ../cache/locales.php:193 ../cache/locales.php:217 -#: ../cache/locales.php:468 +#: [title]groups [group]empty_title [menu]groups [page]groups msgid "Groups" msgstr "المجموعات" -#: ../cache/locales.php:104 +#: [chatroom]add msgid "Add a new Chat Room" msgstr "" -#: ../cache/locales.php:105 ../cache/locales.php:368 +#: [chatroom]id [chatrooms]id msgid "Chat Room ID" msgstr "" -#: ../cache/locales.php:106 ../cache/locales.php:116 ../cache/locales.php:156 -#: ../cache/locales.php:361 ../cache/locales.php:369 ../cache/locales.php:424 +#: [chatroom]name +#, fuzzy +msgctxt "[chatroom]name" msgid "Name" msgstr "الاسم" -#: ../cache/locales.php:107 ../cache/locales.php:157 ../cache/locales.php:371 -#: ../cache/locales.php:425 +#: [chatroom]nickname [general]nickname [chatrooms]nickname msgid "Nickname" msgstr "الكنية" -#: ../cache/locales.php:108 +#: [chatroom]autojoin_label msgid "Do you want do join automaticaly this Chat Room ?" msgstr "" -#: ../cache/locales.php:109 ../cache/locales.php:372 +#: [chatroom]bad_id [chatrooms]bad_id msgid "Bad Chatroom ID" msgstr "" -#: ../cache/locales.php:110 ../cache/locales.php:373 +#: [chatroom]empty_name [chatrooms]empty_name msgid "Empty name" msgstr "" -#: ../cache/locales.php:111 ../cache/locales.php:380 +#: [bookmarks]updated msgid "Bookmarks updated" msgstr "" -#: ../cache/locales.php:112 -msgid "An error occured : " +#: [bookmarks]error +msgid "An error occured :" msgstr "" -#: ../cache/locales.php:113 +#: [bookmarks]configure msgid "Configure" msgstr "" -#: ../cache/locales.php:114 +#: [url]add msgid "Add a new URL" msgstr "" -#: ../cache/locales.php:115 +#: [url]url msgid "URL" msgstr "" -#: ../cache/locales.php:117 +#: [url]name +#, fuzzy +msgctxt "[url]name" +msgid "Name" +msgstr "الاسم" + +#: [message]published msgid "Message Published" msgstr "" -#: ../cache/locales.php:118 ../cache/locales.php:138 +#: [message]encrypted msgid "Encrypted message" msgstr "" -#: ../cache/locales.php:119 +#: [message]composing [chats]composing msgid "Composing..." msgstr "يكتب..." -#: ../cache/locales.php:120 +#: [message]paused [chats]paused msgid "Paused..." msgstr "" -#: ../cache/locales.php:121 +#: [message]gone msgid "Contact gone" msgstr "" -#: ../cache/locales.php:122 -#, php-format +#: [chat]attention msgid "%s needs your attention" msgstr "" -#: ../cache/locales.php:123 +#: [chat]placeholder msgid "Your message here..." msgstr "" -#: ../cache/locales.php:124 +#: [chat]smileys msgid "Smileys" msgstr "" -#: ../cache/locales.php:125 ../cache/locales.php:139 +#: [chat]empty_title [button]chat msgid "Chat" msgstr "المحادثة" -#: ../cache/locales.php:126 +#: [chat]empty_text msgid "Discuss with your contacts" msgstr "" -#: ../cache/locales.php:127 -msgid "Members" -msgstr "" - -#: ../cache/locales.php:128 ../cache/locales.php:376 -msgid "Connected to the chatroom" -msgstr "" - -#: ../cache/locales.php:129 ../cache/locales.php:377 -msgid "Disconnected from the chatroom" -msgstr "" - -#: ../cache/locales.php:130 ../cache/locales.php:200 ../cache/locales.php:469 -msgid "Configuration" -msgstr "ضبط" - -#: ../cache/locales.php:131 -msgid "Configuration saved" -msgstr "" - -#: ../cache/locales.php:132 -msgid "Subject" -msgstr "" - -#: ../cache/locales.php:133 -msgid "Subject changed" -msgstr "" - -#: ../cache/locales.php:134 -msgid "Open a new conversation by clicking on the plus button bellow" -msgstr "" - -#: ../cache/locales.php:135 -msgid "Chat with a contact" -msgstr "" - -#: ../cache/locales.php:136 +#: [chat]frequent [chats]frequent msgid "Frequent contacts" msgstr "" -#: ../cache/locales.php:137 +#: [chatroom]members +msgid "Members" +msgstr "" + +#: [chatroom]connected [chatrooms]connected +msgid "Connected to the chatroom" +msgstr "" + +#: [chatroom]disconnected [chatrooms]disconnected +msgid "Disconnected from the chatroom" +msgstr "" + +#: [chatroom]config [group]configuration [page]configuration +msgid "Configuration" +msgstr "ضبط" + +#: [chatroom]config_saved +msgid "Configuration saved" +msgstr "" + +#: [chatroom]subject +msgid "Subject" +msgstr "" + +#: [chatroom]subject_changed +msgid "Subject changed" +msgstr "" + +#: [chats]empty_title +msgid "No chats yet..." +msgstr "" + +#: [chats]empty +msgid "Open a new conversation by clicking on the plus button bellow or visit the Contacts page." +msgstr "" + +#: [chats]add +msgid "Chat with a contact" +msgstr "" + +#: [chats]more msgid "Load more contacts" msgstr "" -#: ../cache/locales.php:140 -msgid "General" -msgstr "" - -#: ../cache/locales.php:141 -msgid "Language" -msgstr "اللغة" - -#: ../cache/locales.php:142 -msgid "Roster display" -msgstr "" - -#: ../cache/locales.php:143 -msgid "Show the offline contacts" -msgstr "" - -#: ../cache/locales.php:144 -msgid "Hide the offline contacts" -msgstr "" - -#: ../cache/locales.php:145 -msgid "Appearence" -msgstr "" - -#: ../cache/locales.php:146 -msgid "This configuration is shared wherever you are connected !" -msgstr "" - -#: ../cache/locales.php:148 -msgid "Notify on incoming message" -msgstr "" - -#: ../cache/locales.php:149 -msgid "Use desktop notifications" -msgstr "" - -#: ../cache/locales.php:150 +#: [title]data msgid "Data" msgstr "" -#: ../cache/locales.php:151 +#: [title]cache msgid "Cache" msgstr "" -#: ../cache/locales.php:152 ../cache/locales.php:218 ../cache/locales.php:466 +#: [title]contacts [menu]contacts [page]contacts msgid "Contacts" msgstr "" -#: ../cache/locales.php:153 ../cache/locales.php:480 +#: [title]posts [page]posts msgid "Posts" msgstr "" -#: ../cache/locales.php:154 +#: [title]messages msgid "Messages" msgstr "" -#: ../cache/locales.php:155 ../cache/locales.php:423 +#: [config]general +msgid "General" +msgstr "" + +#: [config]language +msgid "Language" +msgstr "اللغة" + +#: [config]roster +msgid "Roster display" +msgstr "" + +#: [config]roster_show +msgid "Show the offline contacts" +msgstr "" + +#: [config]roster_hide +msgid "Hide the offline contacts" +msgstr "" + +#: [config]appearence +msgid "Appearence" +msgstr "" + +#: [config]info +msgid "This configuration is shared wherever you are connected" +msgstr "" + +#: [notifications]message +msgid "Notify on incoming message" +msgstr "" + +#: [notifications]desktop +msgid "Use desktop notifications" +msgstr "" + +#: [general]legend [general]general_title msgid "General Informations" msgstr "معلومات عامة" -#: ../cache/locales.php:158 ../cache/locales.php:427 +#: [general]name [public_groups]name [chatrooms]name +msgid "Name" +msgstr "الاسم" + +#: [general]date_of_birth msgid "Date of Birth" msgstr "تاريخ الميلاد" -#: ../cache/locales.php:159 ../cache/locales.php:428 +#: [general]gender msgid "Gender" msgstr "النوع" -#: ../cache/locales.php:160 ../cache/locales.php:429 +#: [general]marital msgid "Marital Status" msgstr "الحالة الاجتماعية" -#: ../cache/locales.php:161 ../cache/locales.php:426 +#: [general]email msgid "Email" msgstr "" -#: ../cache/locales.php:162 ../cache/locales.php:430 +#: [general]website msgid "Website" msgstr "موقع الوِب" -#: ../cache/locales.php:163 ../cache/locales.php:431 +#: [general]about msgid "About Me" msgstr "عنّي" -#: ../cache/locales.php:164 +#: [general]accounts msgid "Other Accounts" msgstr "" -#: ../cache/locales.php:165 +#: [general]tune msgid "Is Listening" msgstr "" -#: ../cache/locales.php:166 ../cache/locales.php:432 +#: [position]legend [position]position_title msgid "Geographic Position" msgstr "" -#: ../cache/locales.php:167 ../cache/locales.php:433 +#: [position]locality msgid "Locality" msgstr "" -#: ../cache/locales.php:168 ../cache/locales.php:434 +#: [position]country msgid "Country" msgstr "" -#: ../cache/locales.php:169 +#: [mood]title msgid "Mood" msgstr "" -#: ../cache/locales.php:170 +#: [mood]im msgid "I'm " msgstr "" -#: ../cache/locales.php:171 +#: [listen]title msgid "Listening" msgstr "" -#: ../cache/locales.php:173 +#: [last]title msgid "Last seen" msgstr "" -#: ../cache/locales.php:174 +#: [client]title msgid "Client Informations" msgstr "بيانات العميل" -#: ../cache/locales.php:175 +#: [explore]last_registered msgid "Last registered" msgstr "" -#: ../cache/locales.php:176 +#: [explore]explore msgid "Find some new friends" msgstr "" -#: ../cache/locales.php:177 ../cache/locales.php:533 +#: [edit]title [button]edit msgid "Edit" msgstr "" -#: ../cache/locales.php:178 +#: [edit]alias msgid "Alias" msgstr "الكنية" -#: ../cache/locales.php:179 +#: [edit]group msgid "Group" msgstr "" -#: ../cache/locales.php:180 ../cache/locales.php:400 +#: [edit]updated [roster]updated msgid "Contact updated" msgstr "" -#: ../cache/locales.php:181 +#: [delete]title msgid "Are you sure?" msgstr "" -#: ../cache/locales.php:182 -msgid "" -"You are going to delete one of your contacts, please confirm your action" +#: [delete]text +msgid "You are going to delete one of your contacts, please confirm your action" msgstr "" -#: ../cache/locales.php:183 -#, php-format +#: [age]years msgid "%s years" msgstr "" -#: ../cache/locales.php:184 +#: [blog]last msgid "Last public post" msgstr "" -#: ../cache/locales.php:185 +#: [subscription]to +#, fuzzy +msgid "You can see this contact status" +msgstr "أزّل هذه المعرفة" + +#: [subscription]to_button +msgid "Share my status" +msgstr "" + +#: [subscription]to_text +msgid "But this contact cannot see yours" +msgstr "" + +#: [subscription]from +msgid "You are not subscribed to this contact" +msgstr "" + +#: [subscription]from_button +msgid "Ask to subscribe" +msgstr "" + +#: [subscription]from_text +msgid "But this contact can still see if you are online" +msgstr "" + +#: [subscription]nil +#, fuzzy +msgid "No subscriptions" +msgstr "الوصف" + +#: [subscription]nil_button +msgid "Invite" +msgstr "" + +#: [subscription]nil_text +msgid "This contact is in your contact list but there is no subscriptions between the two accounts" +msgstr "" + +#: [group]subscribe msgid "Subscribe" msgstr "" -#: ../cache/locales.php:186 +#: [group]subscribed msgid "Subscribed" msgstr "" -#: ../cache/locales.php:187 +#: [group]unsubscribe msgid "Unsubscribe" msgstr "" -#: ../cache/locales.php:188 +#: [group]unsubscribe_text msgid "You are going to unsubscribe from this Group" msgstr "" -#: ../cache/locales.php:189 +#: [group]unsubscribed msgid "Unsubscribed" msgstr "" -#: ../cache/locales.php:190 +#: [group]share_label msgid "Make your membership to this group public to your friends" msgstr "" -#: ../cache/locales.php:191 +#: [group]label_label msgid "Give a label for this group" msgstr "" -#: ../cache/locales.php:192 +#: [group]sure msgid "Are you sure ?" msgstr "" -#: ../cache/locales.php:194 +#: [group]empty_text msgid "Discover, follow and share" msgstr "" -#: ../cache/locales.php:195 +#: [group]empty msgid "Something bad happened to this group" msgstr "" -#: ../cache/locales.php:196 +#: [group]config_saved msgid "Group configuration saved" msgstr "" -#: ../cache/locales.php:197 +#: [group]delete_title msgid "Delete the group" msgstr "" -#: ../cache/locales.php:198 -msgid "" -"You are going to delete the following group. Please confirm your action." +#: [group]delete_text +msgid "You are going to delete the following group. Please confirm your action." msgstr "" -#: ../cache/locales.php:199 -msgid "" -"It seems that this group doesn't exists anymore. Do you want to remove it " -"from your subscriptions?" +#: [group]delete_clean_text +msgid "It seems that this group doesn't exists anymore. Do you want to remove it from your subscriptions?" msgstr "" -#: ../cache/locales.php:201 ../cache/locales.php:408 +#: [group]counter +msgid "%s groups on this server" +msgstr "" + +#: [group]subscriptions [statistics]subscriptions msgid "Subscriptions" msgstr "" -#: ../cache/locales.php:202 ../cache/locales.php:290 +#: [group]servers +#, fuzzy +msgid "Groups servers" +msgstr "المجموعات" + +#: [group]search_server +msgid "Search for a new server" +msgstr "" + +#: [group]help_info1 +msgid "Groups are the perfect way to share posts about topics that you like with all the other Movim's users." +msgstr "" + +#: [group]help_info2 +msgid "Choose a server and a Group and subscribe to it using the %s button in the header. You can also create a new one using the %s button." +msgstr "" + +#: [group]help_info3 +msgid "Done? You can now publish a new post in the Group by using the %s button." +msgstr "" + +#: [group]help_info4 +msgid "You will find a list of all your subscribed Groups in My Subscriptions and receive instantly all the new incoming posts in the %sNews%s page." +msgstr "" + +#: [groups]empty_title msgid "Hello" msgstr "" -#: ../cache/locales.php:203 ../cache/locales.php:225 ../cache/locales.php:291 +#: [groups]contact_post [hello]contact_post [menu]contact_post msgid "Contact post" msgstr "" -#: ../cache/locales.php:204 -msgid "" -"You don't have any subscriptions yet, select a group server above to start " -"exploring." +#: [groups]empty_text1 +msgid "You don't have any subscriptions yet, select a group server above to start exploring." msgstr "" -#: ../cache/locales.php:205 +#: [groups]empty_text2 msgid "Subscribe to your favorite feeds by bookmarking them." msgstr "" -#: ../cache/locales.php:206 +#: [groups]subscriptions msgid "My Subscriptions" msgstr "" -#: ../cache/locales.php:207 +#: [groups]add msgid "Create a new Group" msgstr "" -#: ../cache/locales.php:208 +#: [groups]name msgid "Group name" msgstr "" -#: ../cache/locales.php:209 +#: [groups]name_example msgid "My Little Pony - Fan Club" msgstr "" -#: ../cache/locales.php:210 +#: [groups]created msgid "Group created successfully" msgstr "" -#: ../cache/locales.php:211 +#: [groups]deleted msgid "Group deleted successfully" msgstr "" -#: ../cache/locales.php:212 +#: [groups]name_error msgid "Please provide a valid group name (4 characters minimum)" msgstr "" -#: ../cache/locales.php:213 +#: [groups]no_creation msgid "You cannot create a new Group on this server" msgstr "" -#: ../cache/locales.php:214 -#, php-format +#: [groups]sub msgid "%s subscribers" msgstr "" -#: ../cache/locales.php:215 -#, php-format +#: [groups]num msgid "%s posts" msgstr "" -#: ../cache/locales.php:216 +#: [groups]disco_error +#, fuzzy +msgid "This server doesn't exists" +msgstr "يستضيف هذا الخادوم %s حسابات" + +#: [menu]all msgid "All" msgstr "الكل" -#: ../cache/locales.php:219 +#: [menu]refresh msgid "Refresh all the streams" msgstr "" -#: ../cache/locales.php:220 ../cache/locales.php:402 -msgid "Search" -msgstr "" +#: [roster]search +#, fuzzy +msgid "Search in your contacts" +msgstr "اتصالاتكم" -#: ../cache/locales.php:221 +#: [hello]active_contacts +#, fuzzy +msgid "Active contacts" +msgstr "اتصالاتكم" + +#: [hello]chat msgid "Go on the Chat page" msgstr "" -#: ../cache/locales.php:222 -msgid "Read all theses articles on the News page" -msgstr "" - -#: ../cache/locales.php:223 -msgid "Visit your public blog" -msgstr "" - -#: ../cache/locales.php:224 -msgid "See your public posts and share them with all your contacts" -msgstr "" - -#: ../cache/locales.php:226 -msgid "Universal share button" -msgstr "" - -#: ../cache/locales.php:227 -msgid "" -"Bookmark or drag and drop the following button in your toolbar and use it on " -"all the pages you want to share on Movim" -msgstr "" - -#: ../cache/locales.php:228 -msgid "Share on Movim" -msgstr "" - -#: ../cache/locales.php:229 -msgid "Frequently Asked Questions" -msgstr "" - -#: ../cache/locales.php:230 -msgid "What do the little banners refer to ?" -msgstr "ما الذي تحيل إليه اللافتات الصغيرة؟" - -#: ../cache/locales.php:231 -msgid "" -"Thanks to these five little banners, you can quickly identitfy the level of " -"confdentiality applied to the information you provide." -msgstr "" -"بفضل هذه اللافتات الخمس الصغيرة يمكنك بسرعة معرفة مستوى الخصوصية المطبقة على " -"المداخلات التي تضعها." - -#: ../cache/locales.php:232 -msgid "White, only you can see the information" -msgstr "الأبيض يعني أنك وحدك تمكنك مطالعة المعلومات" - -#: ../cache/locales.php:233 -msgid "Green, you have chosen some contacts who can see your information" -msgstr "الأخضر يعني أنك مكّنت بعض معارفك المختارين من مطالعة المعلومات" - -#: ../cache/locales.php:234 -msgid "Orange, all your contact list can see your information" -msgstr "البرتقالي يعني أن كل معارفك تمكنهم مطالعة المعلومات" - -#: ../cache/locales.php:235 -msgid "Red, everybody in the XMPP network can see your information" -msgstr "الأحمر يعني أن كل من في شبكة XMPP تمكنه مطالعة المعلومات" - -#: ../cache/locales.php:236 -msgid "Black, the whole Internet can see your information" -msgstr "الأسود يعني أن الإنترنت بأسرها تمكنها مطالعة المعلومات" - -#: ../cache/locales.php:237 -msgid "Looking for some documentation ?" -msgstr "" - -#: ../cache/locales.php:238 -msgid "Read the Wiki" -msgstr "" - -#: ../cache/locales.php:239 -msgid "Talk with us by email ?" -msgstr "" - -#: ../cache/locales.php:240 -msgid "Join the Mailing List" -msgstr "" - -#: ../cache/locales.php:241 -msgid "Chat with the team ?" -msgstr "" - -#: ../cache/locales.php:242 -msgid "Join the Chatroom" -msgstr "" - -#: ../cache/locales.php:243 -msgid "Location node created" -msgstr "" - -#: ../cache/locales.php:244 -msgid "Bookmark node created" -msgstr "" - -#: ../cache/locales.php:245 -msgid "Profile node created" -msgstr "" - -#: ../cache/locales.php:246 -msgid "Avatar node created" -msgstr "" - -#: ../cache/locales.php:247 -msgid "Subscriptions node created" -msgstr "" - -#: ../cache/locales.php:248 -msgid "Microblog node created" -msgstr "" - -#: ../cache/locales.php:249 -msgid "Location" -msgstr "" - -#: ../cache/locales.php:250 -msgid "Wrong position" -msgstr "" - -#: ../cache/locales.php:251 -msgid "Location updated" -msgstr "" - -#: ../cache/locales.php:252 -msgid "Update my position" -msgstr "" - -#: ../cache/locales.php:253 -msgid "Wrong username" -msgstr "اسم مستخدم غير صحيح" - -#: ../cache/locales.php:254 -msgid "Invalid JID" -msgstr "مُعرِّفُ JID غير صحيح" - -#: ../cache/locales.php:255 -msgid "Empty Challenge from the server" -msgstr "" - -#: ../cache/locales.php:256 -msgid "XMPP Domain error, your account is not a correct Jabber ID" -msgstr "عطل متعلّق بنطاق XMPP. حسابك ليس بمعرِّفِ Jabber صحيح" - -#: ../cache/locales.php:257 -msgid "Some data are missing !" -msgstr "البيانات ناقصة!" - -#: ../cache/locales.php:258 -msgid "Wrong password" -msgstr "كلمة السر غير صحيحة" - -#: ../cache/locales.php:259 -msgid "Internal server error" -msgstr "عطل داخلي في الخادوم" - -#: ../cache/locales.php:260 -msgid "Session error" -msgstr "عطل في الجلسة" - -#: ../cache/locales.php:261 -msgid "Account successfully created" -msgstr "تمَ بنجاح إنشاء الحساب" - -#: ../cache/locales.php:262 ../cache/locales.php:271 -msgid "Your XMPP server is unauthorized" -msgstr "" - -#: ../cache/locales.php:263 -msgid "The server takes too much time to respond" -msgstr "" - -#: ../cache/locales.php:264 -msgid "Your web browser is too old to use with Movim." -msgstr "المتصفح الذي تستخدمه أقدم من أن يُشغّل Movim!" - -#: ../cache/locales.php:265 -msgid "" -"Movim cannot talk with the server, please try again later (Websocket " -"connection error)" -msgstr "" - -#: ../cache/locales.php:266 -msgid "Impossible login" -msgstr "" - -#: ../cache/locales.php:267 -msgid "Oops!" -msgstr "" - -#: ../cache/locales.php:268 ../cache/locales.php:449 ../cache/locales.php:455 -msgid "Unknown error" -msgstr "خطأ غير معروف" - -#: ../cache/locales.php:269 -msgid "Invalid username format" -msgstr "" - -#: ../cache/locales.php:270 -msgid "Invalid password format" -msgstr "" - -#: ../cache/locales.php:272 -msgid "A Movim session is already open on an other device" -msgstr "" - -#: ../cache/locales.php:273 -msgid "Movim failed to authenticate. You entered wrong data" -msgstr "تعذّر استيثاق Movim. أدخلت بيانات غير صحيحة" - -#: ../cache/locales.php:274 -msgid "Authentication mechanism not supported by Movim" -msgstr "" - -#: ../cache/locales.php:275 -msgid "The XMPP authentification failed" -msgstr "تعذّر استيثاق XMPP" - -#: ../cache/locales.php:276 -#, php-format -msgid "" -"You can login with Facebook (chat only) using %syour.id@chat.facebook.com%s " -"and your password" -msgstr "" - -#: ../cache/locales.php:277 -#, php-format -msgid "%sGmail accounts are also compatible%s but are not fully supported" -msgstr "" - -#: ../cache/locales.php:278 -msgid "You can login using your favorite Jabber account" -msgstr "" - -#: ../cache/locales.php:279 -msgid "or with our demonstration account" -msgstr "" - -#: ../cache/locales.php:280 ../cache/locales.php:435 -msgid "Accounts" -msgstr "" - -#: ../cache/locales.php:281 -msgid "My address" -msgstr "عنوان بريدي" - -#: ../cache/locales.php:283 -msgid "Create one !" -msgstr "" - -#: ../cache/locales.php:284 -msgid "No account yet ?" -msgstr "" - -#: ../cache/locales.php:285 -msgid "Another account" -msgstr "" - -#: ../cache/locales.php:286 -msgid "You can login with accounts from theses servers" -msgstr "" - -#: ../cache/locales.php:287 -msgid "Connected" -msgstr "" - -#: ../cache/locales.php:288 -msgid "Population" -msgstr "" - -#: ../cache/locales.php:289 -msgid "Bad nickname (between 4 and 40 characters)" -msgstr "" - -#: ../cache/locales.php:292 -msgid "" -"Welcome on your news feed, here you will see all the posts published in the " -"groups you have subscribed." -msgstr "" - -#: ../cache/locales.php:293 -msgid "Refreshing all the streams" -msgstr "" - -#: ../cache/locales.php:294 -msgid "This post is public" -msgstr "" - -#: ../cache/locales.php:295 -msgid "Manage your members" -msgstr "" - -#: ../cache/locales.php:296 -msgid "Get the members" -msgstr "" - -#: ../cache/locales.php:297 -msgid "Affiliations saved" -msgstr "" - -#: ../cache/locales.php:298 -msgid "Manage your subscriptions" -msgstr "" - -#: ../cache/locales.php:299 -msgid "Manage the subscriptions" -msgstr "" - -#: ../cache/locales.php:300 -msgid "Get the subscriptions" -msgstr "" - -#: ../cache/locales.php:301 -msgid "Subscriptions saved" -msgstr "" - -#: ../cache/locales.php:302 -msgid "Pending Invitations" -msgstr "" - -#: ../cache/locales.php:303 -#, php-format -msgid "%s wants to talk with you" -msgstr "" - -#: ../cache/locales.php:304 -msgid "Manage" -msgstr "" - -#: ../cache/locales.php:305 ../cache/locales.php:338 -msgid "News Feed" -msgstr "" - -#: ../cache/locales.php:306 ../cache/locales.php:339 -msgid "Discover and register to the groups you are interested in" -msgstr "" - -#: ../cache/locales.php:307 ../cache/locales.php:340 ../cache/locales.php:482 -msgid "Preview" -msgstr "" - -#: ../cache/locales.php:308 ../cache/locales.php:341 ../cache/locales.php:478 -msgid "Help" -msgstr "مساعدة" - -#: ../cache/locales.php:309 ../cache/locales.php:342 -msgid "More help" -msgstr "" - -#: ../cache/locales.php:310 ../cache/locales.php:343 -msgid "Markdown syntax manual" -msgstr "" - -#: ../cache/locales.php:311 ../cache/locales.php:344 ../cache/locales.php:681 -msgid "Title" -msgstr "العنوان" - -#: ../cache/locales.php:312 ../cache/locales.php:345 -msgid "Content" -msgstr "" - -#: ../cache/locales.php:313 ../cache/locales.php:346 -msgid "Link" -msgstr "" - -#: ../cache/locales.php:314 ../cache/locales.php:347 -msgid "Tags" -msgstr "" - -#: ../cache/locales.php:315 ../cache/locales.php:348 -msgid "Please enter a valid url" -msgstr "" - -#: ../cache/locales.php:316 ../cache/locales.php:349 -msgid "No content to preview" -msgstr "" - -#: ../cache/locales.php:317 ../cache/locales.php:350 ../cache/locales.php:687 -msgid "No content" -msgstr "" - -#: ../cache/locales.php:318 ../cache/locales.php:351 -msgid "Post published" -msgstr "" - -#: ../cache/locales.php:319 ../cache/locales.php:352 -msgid "Post deleted" -msgstr "" - -#: ../cache/locales.php:320 ../cache/locales.php:353 -msgid "This picture will be added to your gallery" -msgstr "" - -#: ../cache/locales.php:321 ../cache/locales.php:354 -msgid "What's Hot" -msgstr "" - -#: ../cache/locales.php:322 ../cache/locales.php:355 -msgid "New post" -msgstr "" - -#: ../cache/locales.php:323 ../cache/locales.php:357 -msgid "" -"You can also use services like Imgur or Flickr to host your picture and " -"paste the link here." -msgstr "" - -#: ../cache/locales.php:324 -#, php-format -msgid "This is a re-post from %s" -msgstr "" - -#: ../cache/locales.php:325 -#, php-format -msgid "See %s profile" -msgstr "" - -#: ../cache/locales.php:326 -msgid "Publish this post on your public feed?" -msgstr "" - -#: ../cache/locales.php:327 -msgid "Post published on your blog" -msgstr "" - -#: ../cache/locales.php:328 -msgid "Post removed from your blog" -msgstr "" - -#: ../cache/locales.php:329 ../cache/locales.php:701 -msgid "Delete this post" -msgstr "حذف هذه التدوينة" - -#: ../cache/locales.php:330 -msgid "You are going to delete this post, please confirm your action" -msgstr "" - -#: ../cache/locales.php:331 -msgid "Comments disabled" -msgstr "" - -#: ../cache/locales.php:332 -msgid "Comment published" -msgstr "" - -#: ../cache/locales.php:333 -msgid "Disconnect" -msgstr "" - -#: ../cache/locales.php:334 -msgid "Your status here !" -msgstr "" - -#: ../cache/locales.php:335 -msgid "Status updated" -msgstr "" - -#: ../cache/locales.php:336 -msgid "Status" -msgstr "" - -#: ../cache/locales.php:337 -msgid "Presence" -msgstr "" - -#: ../cache/locales.php:356 -msgid "Publish" -msgstr "" - -#: ../cache/locales.php:358 -msgid "You cannot publish a post on this Group" -msgstr "" - -#: ../cache/locales.php:359 -msgid "" -"Some fields have been filled in. Do you still want to go back and loose " -"their content?" -msgstr "" - -#: ../cache/locales.php:360 -msgid "Shared" -msgstr "" - -#: ../cache/locales.php:362 -#, php-format -msgid "%s has been added to your public groups" -msgstr "" - -#: ../cache/locales.php:363 -#, php-format -msgid "%s has been removed from your public groups" -msgstr "" - -#: ../cache/locales.php:364 -msgid "Add a chatroom" -msgstr "" - -#: ../cache/locales.php:365 -msgid "You don't have any chatroom yet." -msgstr "" - -#: ../cache/locales.php:366 -msgid "Add one by clicking on the add button in the header." -msgstr "" - -#: ../cache/locales.php:367 -msgid "Chatrooms" -msgstr "" - -#: ../cache/locales.php:370 -msgid "My Favorite Room" -msgstr "" - -#: ../cache/locales.php:374 -msgid "Remove a chatroom" -msgstr "" - -#: ../cache/locales.php:375 -msgid "" -"You are going to remove the following chatroom. Please confirm your action." -msgstr "" - -#: ../cache/locales.php:378 -msgid "Users in the room" -msgstr "" - -#: ../cache/locales.php:379 -msgid "Please enter a correct nickname (6 to 40 characters)" -msgstr "" - -#: ../cache/locales.php:381 -msgid "Public chatroom" -msgstr "" - -#: ../cache/locales.php:382 -msgid "Please provide a room address" -msgstr "" - -#: ../cache/locales.php:383 -msgid "You are currently logued as an anonymous user." -msgstr "" - -#: ../cache/locales.php:384 -msgid "" -"You can join using your own account or create one on the login page by " -"loging out using the cross in the top-right corner." -msgstr "" - -#: ../cache/locales.php:385 -#, php-format -msgid "Login on %s" -msgstr "" - -#: ../cache/locales.php:386 -msgid "Your nickname" -msgstr "" - -#: ../cache/locales.php:387 -msgid "Ungrouped" -msgstr "غير مجموع" - -#: ../cache/locales.php:388 -msgid "Show disconnected contacts" -msgstr "" - -#: ../cache/locales.php:389 -msgid "Hide disconnected contacts" -msgstr "" - -#: ../cache/locales.php:390 -#, php-format -msgid "Show group %s" -msgstr "" - -#: ../cache/locales.php:391 -#, php-format -msgid "Hide group %s" -msgstr "" - -#: ../cache/locales.php:392 -msgid "Please enter a valid Jabber ID" -msgstr "" - -#: ../cache/locales.php:393 -msgid "" -"No contacts ? You can add one using the + button bellow or going to the " -"Explore page" -msgstr "" -"أي اتصالات؟ يمكنك إضافة واحد باستخدام زر + أدناه أو الذهاب إلى صفحة الاستكشاف" - -#: ../cache/locales.php:394 -msgid "Show/Hide" -msgstr "" - -#: ../cache/locales.php:395 -msgid "Enter the Jabber ID of your contact." -msgstr "أدخل معرف Jabber الخاص بصديقك." - -#: ../cache/locales.php:396 -msgid "Press enter to validate." -msgstr "" - -#: ../cache/locales.php:397 -msgid "JID" -msgstr "" - -#: ../cache/locales.php:398 -msgid "Results" -msgstr "" - -#: ../cache/locales.php:399 -msgid "Contact added" -msgstr "" - -#: ../cache/locales.php:401 -msgid "Contact deleted" -msgstr "" - -#: ../cache/locales.php:403 -msgid "This is not a valid url" -msgstr "" - -#: ../cache/locales.php:404 -msgid "Sharing the URL" -msgstr "" - -#: ../cache/locales.php:405 -msgid "Statistics" -msgstr "" - -#: ../cache/locales.php:406 -msgid "Since" -msgstr "" - -#: ../cache/locales.php:407 -msgid "Sessions" -msgstr "" - -#: ../cache/locales.php:409 -msgid "Monthly Subscriptions" -msgstr "" - -#: ../cache/locales.php:410 -msgid "Monthly Subscriptions Cumulated" -msgstr "" - -#: ../cache/locales.php:412 -msgid "" -"Movim is a decentralized social network, before creating a new account you " -"need to choose a server to register." -msgstr "" - -#: ../cache/locales.php:413 -msgid "Your server here ?" -msgstr "" - -#: ../cache/locales.php:414 -msgid "Contact us to add yours to the officially supported servers list" -msgstr "" - -#: ../cache/locales.php:416 -msgid "No public feed for this contact" -msgstr "" - -#: ../cache/locales.php:417 -msgid "No contact specified" -msgstr "" - -#: ../cache/locales.php:418 ../cache/locales.php:473 -msgid "Profile" -msgstr "الملف الشخصي" - -#: ../cache/locales.php:419 -msgid "Profile Updated" -msgstr "" - -#: ../cache/locales.php:420 -msgid "Profile Not Updated" -msgstr "" - -#: ../cache/locales.php:421 -msgid "Your profile is now public" -msgstr "" - -#: ../cache/locales.php:422 -msgid "Your profile is now restricted" -msgstr "" - -#: ../cache/locales.php:436 -msgid "Twitter" -msgstr "" - -#: ../cache/locales.php:437 -msgid "Skype" -msgstr "" - -#: ../cache/locales.php:438 -msgid "Yahoo" -msgstr "" - -#: ../cache/locales.php:439 -msgid "Privacy Level" -msgstr "" - -#: ../cache/locales.php:440 -msgid "Is this profile public ?" -msgstr "" - -#: ../cache/locales.php:441 -msgid "" -"Please pay attention ! By making your profile public, all the information " -"listed above will be available for all the Movim users and on the whole " -"Internet." -msgstr "" - -#: ../cache/locales.php:442 -msgid "Call" -msgstr "" - -#: ../cache/locales.php:443 -msgid "Hang up" -msgstr "" - -#: ../cache/locales.php:444 -msgid "Connection" -msgstr "" - -#: ../cache/locales.php:445 ../cache/locales.php:451 -msgid "Hung up" -msgstr "" - -#: ../cache/locales.php:446 ../cache/locales.php:452 -msgid "Your contact is busy" -msgstr "" - -#: ../cache/locales.php:447 ../cache/locales.php:453 -msgid "Declined" -msgstr "" - -#: ../cache/locales.php:448 ../cache/locales.php:454 -msgid "Remote application incompatible" -msgstr "" - -#: ../cache/locales.php:450 ../cache/locales.php:456 -msgid "Is calling you" -msgstr "" - -#: ../cache/locales.php:457 -msgid "You don't have javascript enabled. Good luck with that." -msgstr "" - -#: ../cache/locales.php:458 -msgid "" -"Movim is a kickass distributed social networking platform that protect your " -"privacy an comes with a set of awesome features." -msgstr "" - -#: ../cache/locales.php:459 -msgid "Administration" -msgstr "" - -#: ../cache/locales.php:460 -msgid "Home" -msgstr "البداية" - -#: ../cache/locales.php:461 -msgid "Discover" -msgstr "" - -#: ../cache/locales.php:462 -msgid "Explore" -msgstr "استكشاف" - -#: ../cache/locales.php:463 -msgid "Account Creation" -msgstr "إنشاء الحساب" - -#: ../cache/locales.php:464 +#: [hello]news [page]news msgid "News" msgstr "اﻷخبار" -#: ../cache/locales.php:465 -msgid "Avatar" -msgstr "الصورة" - -#: ../cache/locales.php:467 -msgid "Chats" +#: [hello]news_page +msgid "Read all theses articles on the News page" msgstr "" -#: ../cache/locales.php:470 -msgid "Server" +#: [hello]blog_title +msgid "Visit your public blog" msgstr "" -#: ../cache/locales.php:471 -msgid "Public Groups" -msgstr "مجموعات عامة" - -#: ../cache/locales.php:472 -msgid "Viewer" +#: [hello]blog_text +msgid "See your public posts and share them with all your contacts" msgstr "" -#: ../cache/locales.php:474 -msgid "Media" -msgstr "وسائط" - -#: ../cache/locales.php:475 -msgid "Blog" -msgstr "المدونة" - -#: ../cache/locales.php:476 -msgid "About" +#: [hello]share_title +msgid "Universal share button" msgstr "" -#: ../cache/locales.php:477 -msgid "Login" +#: [hello]share_text +msgid "Bookmark or drag and drop the following button in your toolbar and use it on all the pages you want to share on Movim" msgstr "" -#: ../cache/locales.php:479 -msgid "Feed" -msgstr "تلقيمة" - -#: ../cache/locales.php:481 -msgid "Gallery" +#: [hello]share_button +msgid "Share on Movim" msgstr "" -#: ../cache/locales.php:483 -msgid "Visio-conference" +#: [help]faq +msgid "Frequently Asked Questions" msgstr "" -#: ../cache/locales.php:484 -msgid "Pods" +#: [banner]title +msgid "What do the little banners refer to ?" +msgstr "ما الذي تحيل إليه اللافتات الصغيرة؟" + +#: [banner]info1 +msgid "Thanks to these five little banners, you can quickly identitfy the level of confdentiality applied to the information you provide." +msgstr "بفضل هذه اللافتات الخمس الصغيرة يمكنك بسرعة معرفة مستوى الخصوصية المطبقة على المداخلات التي تضعها." + +#: [banner]white +msgid "White, only you can see the information" +msgstr "الأبيض يعني أنك وحدك تمكنك مطالعة المعلومات" + +#: [banner]green +msgid "Green, you have chosen some contacts who can see your information" +msgstr "الأخضر يعني أنك مكّنت بعض معارفك المختارين من مطالعة المعلومات" + +#: [banner]orange +msgid "Orange, all your contact list can see your information" +msgstr "البرتقالي يعني أن كل معارفك تمكنهم مطالعة المعلومات" + +#: [banner]red +msgid "Red, everybody in the XMPP network can see your information" +msgstr "الأحمر يعني أن كل من في شبكة XMPP تمكنه مطالعة المعلومات" + +#: [banner]black +msgid "Black, the whole Internet can see your information" +msgstr "الأسود يعني أن الإنترنت بأسرها تمكنها مطالعة المعلومات" + +#: [wiki]question +msgid "Looking for some documentation ?" msgstr "" -#: ../cache/locales.php:485 -msgid "Share" +#: [wiki]button +msgid "Read the Wiki" msgstr "" -#: ../cache/locales.php:486 -msgid "Room" +#: [ml]question +msgid "Talk with us by email ?" msgstr "" -#: ../cache/locales.php:487 -#, php-format -msgid "Error: %s" -msgstr "خطأ: %s" - -#: ../cache/locales.php:488 -#, php-format -msgid "Cannot load file '%s'" -msgstr "لا يمكن تحميل الملف '%s'" - -#: ../cache/locales.php:489 -#, php-format -msgid "Route error, please set all the parameters for the page %s" -msgstr "خطأ في الطريق، برجاء ضبط المعاملات لهذه الصفحة %s" - -#: ../cache/locales.php:490 -#, php-format -msgid "Requested widget '%s' doesn't exist." +#: [ml]button +msgid "Join the Mailing List" msgstr "" -#: ../cache/locales.php:491 -#, php-format -msgid "Requested event '%s' not registered." +#: [chatroom]question +msgid "Chat with the team ?" msgstr "" -#: ../cache/locales.php:492 -msgid "Whoops!" +#: [chatroom]button +msgid "Join the Chatroom" msgstr "" -#: ../cache/locales.php:493 -msgid "It seem that you don't have any pictures here?" +#: [init]location +msgid "Location node created" msgstr "" -#: ../cache/locales.php:494 -msgid "You can try to upload a couple by going to the Media page" +#: [init]bookmark +msgid "Bookmark node created" msgstr "" -#: ../cache/locales.php:495 -#, php-format -msgid "%s - About" +#: [init]vcard4 +msgid "Profile node created" msgstr "" -#: ../cache/locales.php:496 -#, php-format -msgid "%s - Account" +#: [init]avatar +msgid "Avatar node created" msgstr "" -#: ../cache/locales.php:497 -#, php-format -msgid "%s - Administration Panel" +#: [init]subscriptions +msgid "Subscriptions node created" msgstr "" -#: ../cache/locales.php:498 -#, php-format -msgid "%s - Blog" -msgstr "%s - المدونة" - -#: ../cache/locales.php:499 -#, php-format -msgid "%s - Configuration" -msgstr "%s - تكوين" - -#: ../cache/locales.php:500 -#, php-format -msgid "%s - Discover" +#: [init]microblog +msgid "Microblog node created" msgstr "" -#: ../cache/locales.php:501 -#, php-format -msgid "%s - Explore" -msgstr "%s - استكشاف" - -#: ../cache/locales.php:502 -#, php-format -msgid "%s - Help Page" -msgstr "%s - صفحة المساعدة" - -#: ../cache/locales.php:503 -#, php-format -msgid "%s - Login to Movim" -msgstr "%s - الولوج إلى Movim" - -#: ../cache/locales.php:504 -#, php-format -msgid "%s - Welcome to Movim" -msgstr "%s - MOVIM مرحبا بكم في" - -#: ../cache/locales.php:505 -#, php-format -msgid "%s - Media" -msgstr "%s - وسائط" - -#: ../cache/locales.php:506 -#, php-format -msgid "%s - News" -msgstr "%s - اﻷخبار" - -#: ../cache/locales.php:507 -#, php-format -msgid "%s - Group Configuration" +#: [location]title +msgid "Location" msgstr "" -#: ../cache/locales.php:508 -#, php-format -msgid "%s - Group" +#: [location]wrong_postition +msgid "Wrong position" msgstr "" -#: ../cache/locales.php:509 -#, php-format -msgid "%s - 404" +#: [location]updated +msgid "Location updated" msgstr "" -#: ../cache/locales.php:510 -#, php-format -msgid "%s - Profile" -msgstr "%s - الملف الشخصي" - -#: ../cache/locales.php:511 -#, php-format -msgid "%s - Server" +#: [location]update +msgid "Update my position" msgstr "" -#: ../cache/locales.php:512 -msgid "Validate" +#: [login_anonymous]bad_username +msgid "Bad nickname (between 4 and 40 characters)" msgstr "" -#: ../cache/locales.php:513 -msgid "Refresh" +#: [error]username +msgid "Wrong username" +msgstr "اسم مستخدم غير صحيح" + +#: [error]jid +msgid "Invalid JID" +msgstr "مُعرِّفُ JID غير صحيح" + +#: [error]empty_challenge +msgid "Empty Challenge from the server" msgstr "" -#: ../cache/locales.php:514 -msgid "Add" -msgstr "أضِف" +#: [error]dns +msgid "XMPP Domain error, your account is not a correct Jabber ID" +msgstr "عطل متعلّق بنطاق XMPP. حسابك ليس بمعرِّفِ Jabber صحيح" -#: ../cache/locales.php:515 -msgid "Delete" +#: [error]data_missings +msgid "Some data are missing !" +msgstr "البيانات ناقصة!" + +#: [error]wrong_password +msgid "Wrong password" +msgstr "كلمة السر غير صحيحة" + +#: [error]internal +msgid "Internal server error" +msgstr "عطل داخلي في الخادوم" + +#: [error]session +msgid "Session error" +msgstr "عطل في الجلسة" + +#: [error]account_created +msgid "Account successfully created" +msgstr "تمَ بنجاح إنشاء الحساب" + +#: [error]xmpp_unauthorized +msgctxt "[error]xmpp_unauthorized" +msgid "Your XMPP server is unauthorized" msgstr "" -#: ../cache/locales.php:516 -msgid "Remove" +#: [error]mec_error +msgid "The server takes too much time to respond" msgstr "" -#: ../cache/locales.php:517 -msgid "Cancel" -msgstr "ألغِ" +#: [error]too_old +msgid "Your web browser is too old to use with Movim." +msgstr "المتصفح الذي تستخدمه أقدم من أن يُشغّل Movim!" -#: ../cache/locales.php:518 -msgid "Close" +#: [error]websocket +msgid "Movim cannot talk with the server, please try again later (Websocket connection error)" msgstr "" -#: ../cache/locales.php:519 -msgid "Update" +#: [error]impossible +msgid "Impossible login" msgstr "" -#: ../cache/locales.php:520 -msgid "Updating" +#: [error]title +msgid "Oops!" msgstr "" -#: ../cache/locales.php:521 +#: [error]default [visio]unknown_error +msgid "Unknown error" +msgstr "خطأ غير معروف" + +#: [error]login_format +msgid "Invalid username format" +msgstr "" + +#: [error]password_format +msgid "Invalid password format" +msgstr "" + +#: [error]unauthorized +msgctxt "[error]unauthorized" +msgid "Your XMPP server is unauthorized" +msgstr "" + +#: [error]conflict +msgid "A Movim session is already open on an other device" +msgstr "" + +#: [error]wrong_account +msgid "Movim failed to authenticate. You entered wrong data" +msgstr "تعذّر استيثاق Movim. أدخلت بيانات غير صحيحة" + +#: [error]mechanism +msgid "Authentication mechanism not supported by Movim" +msgstr "" + +#: [error]fail_auth +msgid "The XMPP authentification failed" +msgstr "تعذّر استيثاق XMPP" + +#: [account]title [accounts]accounts_title +msgid "Accounts" +msgstr "" + +#: [form]username +msgid "My address" +msgstr "عنوان بريدي" + +#: [form]create_one +msgid "Create one !" +msgstr "" + +#: [form]another_account +msgid "Another account" +msgstr "" + +#: [form]no_account +msgid "No account yet ?" +msgstr "" + +#: [form]whitelist.info +msgid "You can login with accounts from theses servers" +msgstr "" + +#: [form]connected +msgid "Connected" +msgstr "" + +#: [form]population +msgid "Population" +msgstr "" + +#: [menu]empty_title +msgid "No news yet..." +msgstr "" + +#: [menu]empty +msgid "Welcome on your news feed, here you will see all the posts published by your contacts and in the groups you have subscribed." +msgstr "" + +#: [menu]refresh +msgid "Refreshing all the streams" +msgstr "" + +#: [menu]public +msgid "This post is public" +msgstr "" + +#: [affiliations]title +msgid "Manage your members" +msgstr "" + +#: [affiliations]get +msgid "Get the members" +msgstr "" + +#: [affiliations]saved +msgid "Affiliations saved" +msgstr "" + +#: [subscriptions]title +msgid "Manage your subscriptions" +msgstr "" + +#: [subscriptions]info +msgid "Manage the subscriptions" +msgstr "" + +#: [subscriptions]get +msgid "Get the subscriptions" +msgstr "" + +#: [subscriptions]saved +msgid "Subscriptions saved" +msgstr "" + +#: [notifs]title +msgid "Pending Invitations" +msgstr "" + +#: [notifs]wants_to_talk +msgid "%s wants to talk with you" +msgstr "" + +#: [notifs]manage +msgid "Manage" +msgstr "" + +#: [post]news_feed +msgid "News Feed" +msgstr "" + +#: [post]placeholder +msgid "Discover and register to the groups you are interested in" +msgstr "" + +#: [post]preview [page]preview +msgid "Preview" +msgstr "" + +#: [post]help [page]help +msgid "Help" +msgstr "مساعدة" + +#: [post]help_more +msgid "More help" +msgstr "" + +#: [post]help_manual +msgid "Markdown syntax manual" +msgstr "" + +#: [post]title +msgid "Title" +msgstr "العنوان" + +#: [post]content +msgid "Content" +msgstr "" + +#: [post]link +msgid "Link" +msgstr "" + +#: [post]tags +msgid "Tags" +msgstr "" + +#: [post]valid_url [publish]valid_url +msgid "Please enter a valid url" +msgstr "" + +#: [post]no_content_preview [publish]no_content_preview +msgid "No content to preview" +msgstr "" + +#: [post]no_content [publish]no_content [post]empty +msgid "No content" +msgstr "" + +#: [post]published +msgid "Post published" +msgstr "" + +#: [post]deleted +msgid "Post deleted" +msgstr "" + +#: [post]gallery +msgid "This picture will be added to your gallery" +msgstr "" + +#: [post]hot +msgid "What's Hot" +msgstr "" + +#: [post]hot_text +msgid "Posts recently published in Groups that you are not subscribed (yet)" +msgstr "" + +#: [post]new [publish]new +msgid "New post" +msgstr "" + +#: [post]embed_tip +msgid "You can also use services like Imgur or Flickr to host your picture and paste the link here." +msgstr "" + +#: [post]repost +msgid "This is a re-post from %s" +msgstr "" + +#: [post]repost_profile +msgid "See %s profile" +msgstr "" + +#: [post]public +msgid "Publish this post publicly?" +msgstr "" + +#: [post]blog_add +msgid "Post published on your blog" +msgstr "" + +#: [post]blog_remove +msgid "Post removed from your blog" +msgstr "" + +#: [post]delete_title [post]delete +msgid "Delete this post" +msgstr "حذف هذه التدوينة" + +#: [post]delete_text +msgid "You are going to delete this post, please confirm your action" +msgstr "" + +#: [post]comments_disabled +msgid "Comments disabled" +msgstr "" + +#: [post]comment_published +msgid "Comment published" +msgstr "" + +#: [status]disconnect +msgid "Disconnect" +msgstr "" + +#: [status]here +msgid "Your status here !" +msgstr "" + +#: [status]updated +msgid "Status updated" +msgstr "" + +#: [status]status +msgid "Status" +msgstr "" + +#: [status]presence +msgid "Presence" +msgstr "" + +#: [status]online +msgid "Online with Movim" +msgstr "" + +#: [publish]title +msgid "Publish" +msgstr "" + +#: [publish]attach +msgid "Add a file or a picture to your post" +msgstr "" + +#: [publish]no_publication +msgid "You cannot publish a post on this Group" +msgstr "" + +#: [publish]form_filled +msgid "Some fields have been filled in. Do you still want to go back and loose their content?" +msgstr "" + +#: [public_groups]shared +msgid "Shared" +msgstr "" + +#: [public_groups]added +msgid "%s has been added to your public groups" +msgstr "" + +#: [rooms]add +msgid "Add a chatroom" +msgstr "" + +#: [rooms]empty_text1 +msgid "You don't have any chatroom yet." +msgstr "" + +#: [rooms]empty_text2 +msgid "Add one by clicking on the add button in the header." +msgstr "" + +#: [chatrooms]title +msgid "Chatrooms" +msgstr "" + +#: [chatrooms]name_placeholder +msgid "My Favorite Room" +msgstr "" + +#: [chatrooms]users +msgid "Users in the room" +msgstr "" + +#: [chatrooms]bad_nickname +msgid "Please enter a correct nickname (2 to 40 characters)" +msgstr "" + +#: [room]anonymous_title +msgid "Public chatroom" +msgstr "" + +#: [room]no_room +msgid "Please provide a room address" +msgstr "" + +#: [room]anonymous_text1 +msgid "You are currently logued as an anonymous user." +msgstr "" + +#: [room]anonymous_text2 +msgid "You can join using your own account or create one on the login page by loging out using the cross in the top-right corner." +msgstr "" + +#: [room]anonymous_login +msgid "Login on %s" +msgstr "" + +#: [room]nick +msgid "Your nickname" +msgstr "" + +#: [roster]ungrouped +msgid "Ungrouped" +msgstr "غير مجموع" + +#: [roster]show_disconnected +msgid "Show disconnected contacts" +msgstr "" + +#: [roster]hide_disconnected +msgid "Hide disconnected contacts" +msgstr "" + +#: [roster]show_group +msgid "Show group %s" +msgstr "" + +#: [roster]hide_group +msgid "Hide group %s" +msgstr "" + +#: [roster]jid_error +msgid "Please enter a valid Jabber ID" +msgstr "" + +#: [roster]no_contacts_title +#, fuzzy +msgid "No contacts ?" +msgstr "اتصالاتكم" + +#: [roster]no_contacts_text +#, fuzzy +msgid "You can add one using the + button bellow" +msgstr "أي اتصالات؟ يمكنك إضافة واحد باستخدام زر + أدناه أو الذهاب إلى صفحة الاستكشاف" + +#: [roster]show_hide +msgid "Show/Hide" +msgstr "" + +#: [roster]add_contact_info1 +msgid "Enter the Jabber ID of your contact." +msgstr "أدخل معرف Jabber الخاص بصديقك." + +#: [roster]add_contact_info2 +msgid "Press enter to validate." +msgstr "" + +#: [roster]jid +msgid "JID" +msgstr "" + +#: [roster]results +msgid "Results" +msgstr "" + +#: [roster]added +msgid "Contact added" +msgstr "" + +#: [roster]deleted +msgid "Contact deleted" +msgstr "" + +#: [roster]search +msgid "Search" +msgstr "" + +#: [share]error +msgid "This is not a valid url" +msgstr "" + +#: [share]success +msgid "Sharing the URL" +msgstr "" + +#: [statistics]title +msgid "Statistics" +msgstr "" + +#: [statistics]since +msgid "Since" +msgstr "" + +#: [statistics]sessions +msgid "Sessions" +msgstr "" + +#: [statistics]monthly_sub +msgid "Monthly Subscriptions" +msgstr "" + +#: [statistics]monthly_sub_cum +msgid "Monthly Subscriptions Cumulated" +msgstr "" + +#: [subscribe]info +msgid "Movim is a decentralized social network, before creating a new account you need to choose a server to register." +msgstr "" + +#: [subscribe]server_question +msgid "Your server here ?" +msgstr "" + +#: [subscribe]server_contact +msgid "Contact us to add yours to the officially supported servers list" +msgstr "" + +#: [feed]nope +msgid "No public feed for this contact" +msgstr "" + +#: [feed]nope_contact +msgid "No contact specified" +msgstr "" + +#: [upload]title +msgid "Upload a file" +msgstr "" + +#: [upload]choose +msgid "Choose a file to upload" +msgstr "" + +#: [vcard]title [page]profile +msgid "Profile" +msgstr "الملف الشخصي" + +#: [vcard]updated +msgid "Profile Updated" +msgstr "" + +#: [vcard]not_updated +msgid "Profile Not Updated" +msgstr "" + +#: [vcard]public +msgid "Your profile is now public" +msgstr "" + +#: [vcard]restricted +msgid "Your profile is now restricted" +msgstr "" + +#: [general]nickname +#, fuzzy +msgctxt "[general]nickname" +msgid "Nickname" +msgstr "الكنية" + +#: [accounts]twitter +msgid "Twitter" +msgstr "" + +#: [accounts]skype +msgid "Skype" +msgstr "" + +#: [accounts]yahoo +msgid "Yahoo" +msgstr "" + +#: [accounts]accounts_nickname +#, fuzzy +msgctxt "[accounts]accounts_nickname" +msgid "Nickname" +msgstr "الكنية" + +#: [accounts]accounts_yahoo +msgid "Yahoo Account" +msgstr "" + +#: [privacy]privacy_title +msgid "Privacy Level" +msgstr "" + +#: [privacy]privacy_question +msgid "Is this profile public ?" +msgstr "" + +#: [privacy]privacy_info +msgid "Please pay attention ! By making your profile public, all the information listed above will be available for all the Movim users and on the whole Internet." +msgstr "" + +#: [save]submit [button]submit msgid "Submit" msgstr "أودِع" -#: ../cache/locales.php:522 -msgid "Submitting" -msgstr "يجري الإيداع" - -#: ../cache/locales.php:523 +#: [save]reset [button]reset msgid "Reset" msgstr "تصفير" -#: ../cache/locales.php:524 +#: [visio]hung_up +msgid "Hung up" +msgstr "" + +#: [visio]busy +msgid "Your contact is busy" +msgstr "" + +#: [visio]declined +msgid "Declined" +msgstr "" + +#: [visio]calling +msgid "Is calling you" +msgstr "" + +#: [visio]call +msgid "Call" +msgstr "" + +#: [visio]hang_up +msgid "Hang up" +msgstr "" + +#: [visio]connection +msgid "Connection" +msgstr "" + +#: [global]no_js +msgid "You don't have javascript enabled. Good luck with that." +msgstr "" + +#: [global]description +msgid "Movim is a kickass distributed social networking platform that protect your privacy an comes with a set of awesome features." +msgstr "" + +#: [page]administration +msgid "Administration" +msgstr "" + +#: [page]home +msgid "Home" +msgstr "البداية" + +#: [page]discover +msgid "Discover" +msgstr "" + +#: [page]explore +msgid "Explore" +msgstr "استكشاف" + +#: [page]account_creation +msgid "Account Creation" +msgstr "إنشاء الحساب" + +#: [page]avatar +msgid "Avatar" +msgstr "الصورة" + +#: [page]chats +msgid "Chats" +msgstr "" + +#: [page]server +msgid "Server" +msgstr "" + +#: [page]public_groups +msgid "Public Groups" +msgstr "مجموعات عامة" + +#: [page]viewer +msgid "Viewer" +msgstr "" + +#: [page]media +msgid "Media" +msgstr "وسائط" + +#: [page]blog +msgid "Blog" +msgstr "المدونة" + +#: [page]about +msgid "About" +msgstr "" + +#: [page]login +msgid "Login" +msgstr "" + +#: [page]feed +msgid "Feed" +msgstr "تلقيمة" + +#: [page]gallery +msgid "Gallery" +msgstr "" + +#: [page]visio +msgid "Visio-conference" +msgstr "" + +#: [page]pods +msgid "Pods" +msgstr "" + +#: [page]share +msgid "Share" +msgstr "" + +#: [page]room +msgid "Room" +msgstr "" + +#: [error]error +msgid "Error: %s" +msgstr "خطأ: %s" + +#: [error]cannot_load_file +msgid "Cannot load file '%s'" +msgstr "لا يمكن تحميل الملف '%s'" + +#: [error]route +msgid "Route error, please set all the parameters for the page %s" +msgstr "خطأ في الطريق، برجاء ضبط المعاملات لهذه الصفحة %s" + +#: [error]widget_load_error +msgid "Requested widget '%s' doesn't exist." +msgstr "" + +#: [error]widget_call_error +msgid "Requested event '%s' not registered." +msgstr "" + +#: [error]whoops +msgid "Whoops!" +msgstr "" + +#: [error]media_not_found +msgid "It seem that you don't have any pictures here?" +msgstr "" + +#: [error]media_ask_upload +msgid "You can try to upload a couple by going to the Media page" +msgstr "" + +#: [title]about +msgid "%s - About" +msgstr "" + +#: [title]account +msgid "%s - Account" +msgstr "" + +#: [title]administration +msgid "%s - Administration Panel" +msgstr "" + +#: [title]blog +msgid "%s - Blog" +msgstr "%s - المدونة" + +#: [title]configuration +msgid "%s - Configuration" +msgstr "%s - تكوين" + +#: [title]discover +msgid "%s - Discover" +msgstr "" + +#: [title]explore +msgid "%s - Explore" +msgstr "%s - استكشاف" + +#: [title]help +msgid "%s - Help Page" +msgstr "%s - صفحة المساعدة" + +#: [title]login +msgid "%s - Login to Movim" +msgstr "%s - الولوج إلى Movim" + +#: [title]main +msgid "%s - Welcome to Movim" +msgstr "%s - MOVIM مرحبا بكم في" + +#: [title]media +msgid "%s - Media" +msgstr "%s - وسائط" + +#: [title]news +msgid "%s - News" +msgstr "%s - اﻷخبار" + +#: [title]node_configuration +msgid "%s - Group Configuration" +msgstr "" + +#: [title]node +msgid "%s - Group" +msgstr "" + +#: [title]not_found +msgid "%s - 404" +msgstr "" + +#: [title]profile +msgid "%s - Profile" +msgstr "%s - الملف الشخصي" + +#: [title]server +msgid "%s - Server" +msgstr "" + +#: [button]validate +msgid "Validate" +msgstr "" + +#: [button]refresh +msgid "Refresh" +msgstr "" + +#: [button]add +msgid "Add" +msgstr "أضِف" + +#: [button]delete +msgid "Delete" +msgstr "" + +#: [button]cancel +msgid "Cancel" +msgstr "ألغِ" + +#: [button]close +msgid "Close" +msgstr "" + +#: [button]update +msgid "Update" +msgstr "" + +#: [button]updating +msgid "Updating" +msgstr "" + +#: [button]submitting +msgid "Submitting" +msgstr "يجري الإيداع" + +#: [button]register msgid "Register" msgstr "" -#: ../cache/locales.php:525 +#: [button]unregister msgid "Unregister" msgstr "" -#: ../cache/locales.php:526 +#: [button]save msgid "Save" msgstr "" -#: ../cache/locales.php:527 +#: [button]clear msgid "Clear" msgstr "" -#: ../cache/locales.php:528 +#: [button]upload msgid "Upload" msgstr "" -#: ../cache/locales.php:529 +#: [button]come_in msgid "Come in!" msgstr "تعال!" -#: ../cache/locales.php:530 +#: [button]connecting msgid "Connecting" msgstr "" -#: ../cache/locales.php:531 +#: [button]bool_yes msgid "Yes" msgstr "نعم" -#: ../cache/locales.php:532 +#: [button]bool_no msgid "No" msgstr "لا" -#: ../cache/locales.php:534 +#: [button]return msgid "Return" msgstr "" -#: ../cache/locales.php:535 +#: [button]accept msgid "Accept" msgstr "اقبل" -#: ../cache/locales.php:536 +#: [button]refuse msgid "Refuse" msgstr "" -#: ../cache/locales.php:537 +#: [button]next msgid "Next" msgstr "" -#: ../cache/locales.php:538 +#: [button]previous msgid "Previous" msgstr "" -#: ../cache/locales.php:539 -#, php-format +#: [step]step msgid "Step %s" msgstr "" -#: ../cache/locales.php:542 +#: [day]title msgid "Day" msgstr "يوم" -#: ../cache/locales.php:543 +#: [day]monday msgid "Monday" msgstr "الاثنين" -#: ../cache/locales.php:544 +#: [day]tuesday msgid "Tuesday" msgstr "الثّلاثاء" -#: ../cache/locales.php:545 +#: [day]wednesday msgid "Wednesday" msgstr "الأربعاء" -#: ../cache/locales.php:546 +#: [day]thursday msgid "Thursday" msgstr "الخميس" -#: ../cache/locales.php:547 +#: [day]friday msgid "Friday" msgstr "الجمعة" -#: ../cache/locales.php:548 +#: [day]saturday msgid "Saturday" msgstr "السّبت" -#: ../cache/locales.php:549 +#: [day]sunday msgid "Sunday" msgstr "" -#: ../cache/locales.php:550 ../cache/locales.php:559 +#: [gender]nil +#, fuzzy +msgctxt "[gender]nil" msgid "None" msgstr "لا شيء" -#: ../cache/locales.php:551 +#: [gender]male msgid "Male" msgstr "ذكر" -#: ../cache/locales.php:552 +#: [gender]female msgid "Female" msgstr "أنثى" -#: ../cache/locales.php:553 +#: [gender]other msgid "Other" msgstr "غير ذلك" -#: ../cache/locales.php:554 +#: [client]bot msgid "Bot" msgstr "روبوت" -#: ../cache/locales.php:555 +#: [client]desktop msgid "Desktop" msgstr "سطح المكتب" -#: ../cache/locales.php:556 +#: [client]phone msgid "Phone" msgstr "هاتف" -#: ../cache/locales.php:557 +#: [client]web msgid "Web" msgstr "" -#: ../cache/locales.php:558 +#: [client]registered msgid "Registered" msgstr "" -#: ../cache/locales.php:560 +#: [marital]nil +#, fuzzy +msgctxt "[marital]nil" +msgid "None" +msgstr "لا شيء" + +#: [marital]single msgid "Single" msgstr "عَزَب" -#: ../cache/locales.php:561 +#: [marital]relationship msgid "In a relationship" msgstr "مرتبط" -#: ../cache/locales.php:562 +#: [marital]married msgid "Married" msgstr "متزوّج" -#: ../cache/locales.php:563 +#: [marital]divorced msgid "Divorced" msgstr "مطلّق" -#: ../cache/locales.php:564 +#: [marital]widowed msgid "Widowed" msgstr "أرمل" -#: ../cache/locales.php:565 +#: [marital]cohabiting msgid "Cohabiting" msgstr "مُساكِن" -#: ../cache/locales.php:566 +#: [marital]union msgid "Civil Union" msgstr "علاقة مدنية" -#: ../cache/locales.php:567 +#: [flag]white msgid "Not shared" msgstr "" -#: ../cache/locales.php:568 +#: [flag]green msgid "Shared with one contact" msgstr "" -#: ../cache/locales.php:569 +#: [flag]orange msgid "Shared with all contacts" msgstr "" -#: ../cache/locales.php:570 +#: [flag]red msgid "Shared with the XMPP network" msgstr "" -#: ../cache/locales.php:571 +#: [flag]black msgid "Shared with the whole Internet" msgstr "" -#: ../cache/locales.php:572 +#: [presence]online msgid "Online" msgstr "حاضر" -#: ../cache/locales.php:573 +#: [presence]away msgid "Away" msgstr "غائب" -#: ../cache/locales.php:574 +#: [presence]dnd msgid "Do Not Disturb" msgstr "لا تزعجوني" -#: ../cache/locales.php:575 +#: [presence]xa msgid "Extended Away" msgstr "غائب طويلا" -#: ../cache/locales.php:576 +#: [presence]offline msgid "Offline" msgstr "غير متصل" -#: ../cache/locales.php:577 +#: [presence]error msgid "Error" msgstr "" -#: ../cache/locales.php:578 +#: [mood]afraid msgid "afraid" msgstr "" -#: ../cache/locales.php:579 +#: [mood]amazed msgid "amazed" msgstr "" -#: ../cache/locales.php:580 +#: [mood]amorous msgid "amorous" msgstr "" -#: ../cache/locales.php:581 +#: [mood]angry msgid "angry" msgstr "غاضب" -#: ../cache/locales.php:582 +#: [mood]annoyed msgid "annoyed" msgstr "" -#: ../cache/locales.php:583 +#: [mood]anxious msgid "anxious" msgstr "" -#: ../cache/locales.php:584 +#: [mood]aroused msgid "aroused" msgstr "" -#: ../cache/locales.php:585 +#: [mood]ashamed msgid "ashamed" msgstr "" -#: ../cache/locales.php:586 +#: [mood]bored msgid "bored" msgstr "" -#: ../cache/locales.php:587 +#: [mood]brave msgid "brave" msgstr "" -#: ../cache/locales.php:588 +#: [mood]calm msgid "calm" msgstr "" -#: ../cache/locales.php:589 +#: [mood]cautious msgid "cautious" msgstr "" -#: ../cache/locales.php:590 +#: [mood]cold msgid "cold" msgstr "بارد" -#: ../cache/locales.php:591 +#: [mood]confident msgid "confident" msgstr "" -#: ../cache/locales.php:592 +#: [mood]confused msgid "confused" msgstr "" -#: ../cache/locales.php:593 +#: [mood]contemplative msgid "contemplative" msgstr "" -#: ../cache/locales.php:594 +#: [mood]contented msgid "contented" msgstr "" -#: ../cache/locales.php:595 +#: [mood]cranky msgid "cranky" msgstr "" -#: ../cache/locales.php:596 +#: [mood]crazy msgid "crazy" msgstr "" -#: ../cache/locales.php:597 +#: [mood]creative msgid "creative" msgstr "مبدع" -#: ../cache/locales.php:598 +#: [mood]curious msgid "curious" msgstr "" -#: ../cache/locales.php:599 +#: [mood]dejected msgid "dejected" msgstr "" -#: ../cache/locales.php:600 +#: [mood]depressed msgid "depressed" msgstr "" -#: ../cache/locales.php:601 +#: [mood]disappointed msgid "disappointed" msgstr "" -#: ../cache/locales.php:602 +#: [mood]disgusted msgid "disgusted" msgstr "" -#: ../cache/locales.php:603 +#: [mood]dismayed msgid "dismayed" msgstr "" -#: ../cache/locales.php:604 +#: [mood]distracted msgid "distracted" msgstr "" -#: ../cache/locales.php:605 +#: [mood]embarrassed msgid "embarrassed" msgstr "" -#: ../cache/locales.php:606 +#: [mood]envious msgid "envious" msgstr "" -#: ../cache/locales.php:607 +#: [mood]excited msgid "excited" msgstr "" -#: ../cache/locales.php:608 +#: [mood]flirtatious msgid "flirtatious" msgstr "" -#: ../cache/locales.php:609 +#: [mood]frustated msgid "frustated" msgstr "" -#: ../cache/locales.php:610 +#: [mood]grateful msgid "grateful" msgstr "" -#: ../cache/locales.php:611 +#: [mood]grieving msgid "grieving" msgstr "" -#: ../cache/locales.php:612 +#: [mood]grumpy msgid "grumpy" msgstr "" -#: ../cache/locales.php:613 +#: [mood]guilty msgid "guilty" msgstr "" -#: ../cache/locales.php:614 +#: [mood]happy msgid "happy" msgstr "" -#: ../cache/locales.php:615 +#: [mood]hopeful msgid "hopeful" msgstr "" -#: ../cache/locales.php:616 +#: [mood]hot msgid "hot" msgstr "" -#: ../cache/locales.php:617 +#: [mood]humbled msgid "humbled" msgstr "" -#: ../cache/locales.php:618 +#: [mood]humiliated msgid "humiliated" msgstr "" -#: ../cache/locales.php:619 +#: [mood]hungry msgid "hungry" msgstr "" -#: ../cache/locales.php:620 +#: [mood]hurt msgid "hurt" msgstr "" -#: ../cache/locales.php:621 +#: [mood]impressed msgid "impressed" msgstr "" -#: ../cache/locales.php:622 +#: [mood]in_awe msgid "in awe" msgstr "" -#: ../cache/locales.php:623 +#: [mood]in_love msgid "in love" msgstr "" -#: ../cache/locales.php:624 +#: [mood]indignant msgid "indignant" msgstr "" -#: ../cache/locales.php:625 +#: [mood]interested msgid "interested" msgstr "" -#: ../cache/locales.php:626 +#: [mood]intoxicated msgid "intoxicated" msgstr "" -#: ../cache/locales.php:627 +#: [mood]invincible msgid "invincible" msgstr "" -#: ../cache/locales.php:628 +#: [mood]jealous msgid "jealous" msgstr "" -#: ../cache/locales.php:629 +#: [mood]lonely msgid "lonely" msgstr "" -#: ../cache/locales.php:630 +#: [mood]lost msgid "lost" msgstr "" -#: ../cache/locales.php:631 +#: [mood]lucky msgid "lucky" msgstr "" -#: ../cache/locales.php:632 +#: [mood]mean msgid "mean" msgstr "" -#: ../cache/locales.php:633 +#: [mood]moody msgid "moody" msgstr "" -#: ../cache/locales.php:634 +#: [mood]nervous msgid "nervous" msgstr "" -#: ../cache/locales.php:635 +#: [mood]neutral msgid "neutral" msgstr "" -#: ../cache/locales.php:636 +#: [mood]offended msgid "offended" msgstr "" -#: ../cache/locales.php:637 +#: [mood]outraged msgid "outraged" msgstr "" -#: ../cache/locales.php:638 +#: [mood]playful msgid "playful" msgstr "" -#: ../cache/locales.php:639 +#: [mood]proud msgid "proud" msgstr "" -#: ../cache/locales.php:640 +#: [mood]relaxed msgid "relaxed" msgstr "" -#: ../cache/locales.php:641 +#: [mood]relieved msgid "relieved" msgstr "" -#: ../cache/locales.php:642 -msgid "remorseful" -msgstr "" - -#: ../cache/locales.php:643 +#: [mood]restless msgid "restless" msgstr "" -#: ../cache/locales.php:644 +#: [mood]sad msgid "sad" msgstr "" -#: ../cache/locales.php:645 +#: [mood]sarcastic msgid "sarcastic" msgstr "" -#: ../cache/locales.php:646 +#: [mood]satisfied msgid "satisfied" msgstr "" -#: ../cache/locales.php:647 +#: [mood]serious msgid "serious" msgstr "" -#: ../cache/locales.php:648 +#: [mood]shocked msgid "shocked" msgstr "" -#: ../cache/locales.php:649 +#: [mood]shy msgid "shy" msgstr "" -#: ../cache/locales.php:650 +#: [mood]sick msgid "sick" msgstr "" -#: ../cache/locales.php:651 +#: [mood]sleepy msgid "sleepy" msgstr "" -#: ../cache/locales.php:652 +#: [mood]spontaneous msgid "spontaneous" msgstr "" -#: ../cache/locales.php:653 +#: [mood]stressed msgid "stressed" msgstr "" -#: ../cache/locales.php:654 +#: [mood]strong msgid "strong" msgstr "" -#: ../cache/locales.php:655 +#: [mood]surprised msgid "surprised" msgstr "" -#: ../cache/locales.php:656 +#: [mood]thankful msgid "thankful" msgstr "" -#: ../cache/locales.php:657 +#: [mood]thirsty msgid "thirsty" msgstr "" -#: ../cache/locales.php:658 +#: [mood]tired msgid "tired" msgstr "" -#: ../cache/locales.php:659 +#: [mood]undefined msgid "undefined" msgstr "" -#: ../cache/locales.php:660 +#: [mood]weak msgid "weak" msgstr "" -#: ../cache/locales.php:661 +#: [mood]worried msgid "worried" msgstr "" -#: ../cache/locales.php:662 +#: [month]title msgid "Month" msgstr "شهر" -#: ../cache/locales.php:663 +#: [month]january msgid "January" msgstr "يناير" -#: ../cache/locales.php:664 +#: [month]february msgid "February" msgstr "فبراير" -#: ../cache/locales.php:665 +#: [month]march msgid "March" msgstr "مارس" -#: ../cache/locales.php:666 +#: [month]april msgid "April" msgstr "أبريل" -#: ../cache/locales.php:667 +#: [month]may msgid "May" msgstr "مايو" -#: ../cache/locales.php:668 +#: [month]june msgid "June" msgstr "يونيو" -#: ../cache/locales.php:669 +#: [month]july msgid "July" msgstr "يوليو" -#: ../cache/locales.php:670 +#: [month]august msgid "August" msgstr "أغسطس" -#: ../cache/locales.php:671 +#: [month]september msgid "September" msgstr "سبتمبر" -#: ../cache/locales.php:672 +#: [month]october msgid "October" msgstr "أكتوبر" -#: ../cache/locales.php:673 +#: [month]november msgid "November" msgstr "نوفمبر" -#: ../cache/locales.php:674 +#: [month]december msgid "December" msgstr "ديسمبر" -#: ../cache/locales.php:675 +#: [year]title msgid "Year" msgstr "سنة" -#: ../cache/locales.php:676 +#: [date]today msgid "Today" msgstr "اليوم" -#: ../cache/locales.php:677 +#: [date]tomorrow msgid "Tomorrow" msgstr "غدًا" -#: ../cache/locales.php:678 +#: [date]yesterday msgid "Yesterday" msgstr "أمس" -#: ../cache/locales.php:679 -#, php-format -msgid " %d days ago" +#: [date]ago +#, fuzzy +msgid "%d days ago" msgstr " %d يوما مضت" -#: ../cache/locales.php:680 +#: [date]day msgid "day" msgstr "يوم" -#: ../cache/locales.php:682 +#: [post]whats_new msgid "What's new ?" msgstr "ما الجديد؟" -#: ../cache/locales.php:683 +#: [post]place msgid "Place" msgstr "" -#: ../cache/locales.php:684 +#: [post]by msgid "by" msgstr "" -#: ../cache/locales.php:685 +#: [post]geolocalisation msgid "Geolocalisation" msgstr "" -#: ../cache/locales.php:686 +#: [post]email msgid "email" msgstr "" -#: ../cache/locales.php:688 +#: [post]no_comments msgid "No comments yet" msgstr "" -#: ../cache/locales.php:689 +#: [post]no_comments_stream msgid "No comments stream" msgstr "" -#: ../cache/locales.php:690 +#: [post]no_load msgid "Your feed cannot be loaded." msgstr "تعذّر تنزيل تلقيمتك" -#: ../cache/locales.php:691 +#: [post]older msgid "Get older posts" msgstr "اجلب المداخلات الأسبق" -#: ../cache/locales.php:692 -#, php-format +#: [post]new_items msgid "%s new items" msgstr "" -#: ../cache/locales.php:693 +#: [post]comment_error msgid "Comment publication error" msgstr "" -#: ../cache/locales.php:694 +#: [post]comments_older msgid "Show the older comments" msgstr "" -#: ../cache/locales.php:695 -msgid "Loading comments ..." -msgstr "" +#: [post]comments_loading +#, fuzzy +msgid "Loading comments..." +msgstr "يجري تنزيل تلقيمتك..." -#: ../cache/locales.php:696 +#: [post]comments_get msgid "Get the comments" msgstr "الحصول على تعليقات" -#: ../cache/locales.php:697 +#: [post]comment_add msgid "Add a comment" msgstr "أضف تعليق" -#: ../cache/locales.php:698 +#: [post]share msgid "Share with" msgstr "المشاركة مع" -#: ../cache/locales.php:699 +#: [post]share_everyone msgid "Everyone" msgstr "الجميع" -#: ../cache/locales.php:700 +#: [post]share_your_contacts msgid "Your contacts" msgstr "اتصالاتكم" -#: ../cache/locales.php:702 +#: [post]updated msgid "Updated" msgstr "" -#: ../cache/locales.php:703 +#: [post]content_not_found msgid "Content not found" msgstr "" -#: ../cache/locales.php:704 +#: [post]default_title msgid "Contact publication" msgstr "" -#: ../cache/locales.php:705 +#: [post]comments msgid "Comments" msgstr "" -#: ../cache/locales.php:706 +#: [api]error msgid "The API is not reachable, try again later" msgstr "" -#: ../cache/locales.php:707 +#: [field]type_here msgid "Type here" msgstr "" -#, php-format +#~ msgid "Environment" +#~ msgstr "البيئة" + #~ msgid "%s - Account Creation" #~ msgstr "%s - إنشاء حساب" #~ msgid "or" #~ msgstr "أو" -#, php-format #~ msgid "Install the %s package" #~ msgstr "نضّب الحزمة %s" -#, php-format #~ msgid "Movim requires the %s extension." #~ msgstr "يتطلّب Movim الملحقة %s" #~ msgid "Actual version : " #~ msgstr "الإصدارة الفعلية: " -#, php-format #~ msgid "Install %s and %s packages" #~ msgstr "نصّب الحزمتين %s و %s" #~ msgid "Update your PHP version or contact your server administrator" #~ msgstr "رقِّ إصدارة PHP أو اتصل بمدير الخادوم" -#~ msgid "Enable read and write rights on Movim's root folder" -#~ msgstr "فعّل صلاحيات القراءة و الكتابة على دليل Movim الجذر" - #~ msgid "PHP version mismatch. Movim requires PHP 5.3 minimum." #~ msgstr "إصدارة PHP غير مطابقة. يتطلّب Movim الإصدارة 5.3 أو ما تزيد عليها." #~ msgid "Movim's folder must be writable." #~ msgstr "يجب أن يكون دليل Movim قابلا للكتابة فيه" -#, php-format #~ msgid "Bosh connection failed with error '%s'" #~ msgstr "تعذّر الاتصال BOSH. العطل هو '%s'" -#, php-format #~ msgid "Database connection failed with error '%s'" #~ msgstr "تعذّر الاتصال بقاعدة البيانات. العطل هو '%s'" -#, php-format #~ msgid "XMPP connection through Bosh failed with error '%s'" #~ msgstr "تعذّر الاتصال XMPP عبر BOSH. العطل هو '%s'" -#~ msgid "" -#~ "Keep in mind that Movim is still under development and will handle many " -#~ "personal details. Its use can potentially endanger your data. Always pay " -#~ "attention to information that you submit." -#~ msgstr "" -#~ "لاحظ أن Movim لاتزال قيد التطوير و أنها ستعالج قدرا كبيرا من البيانات " -#~ "الشخصية، مما قد يعرّض بياناتك للانكشاف، لذا دقّق في البيانات التي تضعها فيها." +#~ msgid "Keep in mind that Movim is still under development and will handle many personal details. Its use can potentially endanger your data. Always pay attention to information that you submit." +#~ msgstr "لاحظ أن Movim لاتزال قيد التطوير و أنها ستعالج قدرا كبيرا من البيانات الشخصية، مما قد يعرّض بياناتك للانكشاف، لذا دقّق في البيانات التي تضعها فيها." -#~ msgid "" -#~ "Before you enjoy your social network, a few adjustements are required." +#~ msgid "Before you enjoy your social network, a few adjustements are required." #~ msgstr "قبل أن تستخدم شبكتك الاجتماعية تجب بعض التضبيطات." #~ msgid "Thank you for downloading Movim!" #~ msgstr "شكرا لتنزيلك Movim." -#, php-format #~ msgid "Couldn't create configuration file '%s'." #~ msgstr "تعذّر إنشاء ملف التضبيطات '%s'." #~ msgid "Compatibility Test" #~ msgstr "اختبار التوافقية" -#, php-format #~ msgid "Couldn't create directory '%s'." #~ msgstr "تعذّر إنشاء الدليل '%s'." #~ msgid "Movim Installer" #~ msgstr "مُنصِّب Movim" -#~ msgid "" -#~ "The following requirements were not met. Please make sure they are all " -#~ "satisfied in order to install Movim." +#~ msgid "The following requirements were not met. Please make sure they are all satisfied in order to install Movim." #~ msgstr "المتطلبات التالية غير متوفرة. اعمل على توفيرها قبل تنصيب Movim." #~ msgid "Proxy Preferences" @@ -2685,9 +2800,7 @@ msgstr "" #~ msgid "empty" #~ msgstr "خالٍ" -#~ msgid "" -#~ "Some errors were detected. Please correct them for the installation to " -#~ "proceed." +#~ msgid "Some errors were detected. Please correct them for the installation to proceed." #~ msgstr "التُمست بعض الأعطال. تداركها لمواصلة التنصيب." #~ msgid "Success !" @@ -2705,11 +2818,9 @@ msgstr "" #~ msgid "User not logged in." #~ msgstr "المستخدم غير والجٍ" -#, php-format #~ msgid "Cannot load element value '%s'" #~ msgstr "تعذّر تحميل قيمة العنصر '%s'" -#, php-format #~ msgid "Please remove the %s folder in order to complete the installation" #~ msgstr "أزل الدليل %s لإتمام التنصيب" @@ -2722,11 +2833,9 @@ msgstr "" #~ msgid "Valid Bosh" #~ msgstr "Bosh صحيح" -#, php-format #~ msgid "jid '%s' is incorrect" #~ msgstr "معرِّف JID '%s' غير صحيح" -#, php-format #~ msgid "Cannot open log file '%s'" #~ msgstr "تعذّر فتح ملف السجل '%s'" @@ -2751,7 +2860,6 @@ msgstr "" #~ msgid "Wrong ID" #~ msgstr "معرّف غير صحيح" -#, php-format #~ msgid "%s - Add An Account" #~ msgstr "%s - إضافة حساب" @@ -2770,12 +2878,8 @@ msgstr "" #~ msgid "8 characters" #~ msgstr "ثمانية محارف" -#~ msgid "" -#~ "Firstly fill in this blank with a brand new account ID, this address will " -#~ "follow you on all the Movim network !" -#~ msgstr "" -#~ "بداية، أدخل في هذا الحقل معرّفًا جديدًا للحساب. هذا العنوان سيكون لصيقا بك " -#~ "في شبكة Movim كلّها." +#~ msgid "Firstly fill in this blank with a brand new account ID, this address will follow you on all the Movim network !" +#~ msgstr "بداية، أدخل في هذا الحقل معرّفًا جديدًا للحساب. هذا العنوان سيكون لصيقا بك في شبكة Movim كلّها." #~ msgid "Add your login informations" #~ msgstr "أدخل بيانات الولوج" @@ -2789,26 +2893,18 @@ msgstr "" #~ msgid "Same here !" #~ msgstr "و هنا كذلك" -#~ msgid "Remove this contact" -#~ msgstr "أزّل هذه المعرفة" - #~ msgid "Client Name" #~ msgstr "اسم العميل" #~ msgid "Address" #~ msgstr "العنوان" -#~ msgid "" -#~ "Your server doesn't support post publication, you can only read contact's " -#~ "feeds" +#~ msgid "Your server doesn't support post publication, you can only read contact's feeds" #~ msgstr "خادومك لا يدعم نشر المداخلات، يمكنك و حسبُ مطالعة تلقيمات معارفك" #~ msgid "Invite this user" #~ msgstr "ادعُ هذا الشخص" -#~ msgid "Loading your feed ..." -#~ msgstr "يجري تنزيل تلقيمتك..." - #~ msgid "Client Type" #~ msgstr "نوع العميل" @@ -2818,48 +2914,23 @@ msgstr "" #~ msgid "What is Movim?" #~ msgstr "ما Movim؟" -#~ msgid "" -#~ "Some features are missing/I can't do everything I used to do on other social " -#~ "networks" -#~ msgstr "" -#~ "بعض الوظائف غير موجودة\\لا يمكنني فعل كل ما اعتدت فعله في شبكات اجتماعية " -#~ "أخرى!" +#~ msgid "Some features are missing/I can't do everything I used to do on other social networks" +#~ msgstr "بعض الوظائف غير موجودة\\لا يمكنني فعل كل ما اعتدت فعله في شبكات اجتماعية أخرى!" -#, php-format -#~ msgid "" -#~ "Visit the page %s What is Movim ? %s to know more about the project, its " -#~ "aims and understand how it works." +#~ msgid "Visit the page %s What is Movim ? %s to know more about the project, its aims and understand how it works." #~ msgstr "زر صفحة %s ما Movim؟ %s لتعلم المزيد عن المشروع و أهدافه و كيف يعمل." #~ msgid "The current BOSH URL in invalid" #~ msgstr "مسار BOSH الحالي غير صحيح" -#, php-format -#~ msgid "" -#~ "Go to the %s to the Frequently Asked Questions %s or come ask your question " -#~ "on the official chatroom %s or via our mailing-list (%s see the dedicated " -#~ "page %s)." -#~ msgstr "" -#~ "طالع %s إجابات الأسئة الشائعة %s أو ضع سؤالك في غرفة المحادثة الرسمية " -#~ "للمشروع %s أو في قائمة المراسلات (%s طالع صفحتها %s)." +#~ msgid "Go to the %s to the Frequently Asked Questions %s or come ask your question on the official chatroom %s or via our mailing-list (%s see the dedicated page %s)." +#~ msgstr "طالع %s إجابات الأسئة الشائعة %s أو ضع سؤالك في غرفة المحادثة الرسمية للمشروع %s أو في قائمة المراسلات (%s طالع صفحتها %s)." -#, php-format -#~ msgid "" -#~ "Although Movim is evolving fast, many (many) features are missing. Be " -#~ "patient ;). You can have a look %s at next versions's roadmaps %s to know if " -#~ "the one you want is on its way." -#~ msgstr "" -#~ "برغم من أن Movim يتطوّر بسرعة فإن الكثير الكثير من الوظائف لا تزال ناقصة. " -#~ "صبرا ;) تمكنك مطالعة %s خريطة الإصدارات القادمة %s لمعرفة إن كان ما تريده في " -#~ "الطريق." +#~ msgid "Although Movim is evolving fast, many (many) features are missing. Be patient ;). You can have a look %s at next versions's roadmaps %s to know if the one you want is on its way." +#~ msgstr "برغم من أن Movim يتطوّر بسرعة فإن الكثير الكثير من الوظائف لا تزال ناقصة. صبرا ;) تمكنك مطالعة %s خريطة الإصدارات القادمة %s لمعرفة إن كان ما تريده في الطريق." -#, php-format -#~ msgid "" -#~ "Don't forget that Movim is an open source project, a helping hand is always " -#~ "welcome (see %s Can I participate %s)" -#~ msgstr "" -#~ "لا تنسَ أن Movim مشروع مفتوح المصدر، و أن المساعدة مرحّب بها دوما (طالع %s " -#~ "أتمكنني المساهمة؟ %s)" +#~ msgid "Don't forget that Movim is an open source project, a helping hand is always welcome (see %s Can I participate %s)" +#~ msgstr "لا تنسَ أن Movim مشروع مفتوح المصدر، و أن المساعدة مرحّب بها دوما (طالع %s أتمكنني المساهمة؟ %s)" #~ msgid "I can't find the answer to my question here" #~ msgstr "لا أجد إجابة سؤالي هنا!" @@ -2867,10 +2938,6 @@ msgstr "" #~ msgid "wants to talk with you" #~ msgstr "يريد التحدّث معك" -#, php-format -#~ msgid "This server hosts %s accounts" -#~ msgstr "يستضيف هذا الخادوم %s حسابات" - #~ msgid "Connecting..." #~ msgstr "يجري الاتصال..." @@ -2880,7 +2947,6 @@ msgstr "" #~ msgid "Decline" #~ msgstr "ارفض" -#, php-format #~ msgid "Contacts (%s)" #~ msgstr "المعارف (%s)" @@ -2908,7 +2974,6 @@ msgstr "" #~ msgid "Debug console" #~ msgstr "مرقاب التبقيق" -#, php-format #~ msgid "You can now access your shiny Movim instance %sJump In !%s" #~ msgstr "يمكنك الآن استخدام تنصيبة Movim الجديدة. %sهيّا%s" diff --git a/sources/locales/be.po b/sources/locales/be.po index ee17f8e..1584604 100644 --- a/sources/locales/be.po +++ b/sources/locales/be.po @@ -1,2587 +1,2702 @@ # Byelorussian translations for Movim package. # This file is distributed under the same license as the Movim package. # This file was translated from CodingTeam at . +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/About/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Account/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AccountNext/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AdHoc/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AdminDB/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AdminMain/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AdminTest/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Api/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Avatar/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Blog/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Bookmark/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Chat/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Chats/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/ConfigData/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Config/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Contact/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Group/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Groups/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Header/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Hello/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Help/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Init/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Location/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/LoginAnonymous/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Login/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Menu/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/NodeAffiliations/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/NodeSubscriptions/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Notifs/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Post/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Presence/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Publish/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/PubsubSubscriptionConfig/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Rooms/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Roster/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Share/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Statistics/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Subscribe/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Syndication/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Upload/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Vcard4/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/VisioExt/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Visio/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../locales/locales.ini msgid "" msgstr "" "Project-Id-Version: Movim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-06-08 22:06+0200\n" +"POT-Creation-Date: 2015-08-20 15:17+0200\n" "PO-Revision-Date: 2011-10-26 21:31+0000\n" "Last-Translator: edhelas \n" "Language-Team: LANGUAGE \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2015-06-18 21:08+0000\n" "X-Generator: Launchpad (build 17570)\n" -#: ../cache/locales.php:2 +#: [about]thanks msgid "Thanks" msgstr "" -#: ../cache/locales.php:3 +#: [about]developers msgid "Developers" msgstr "" -#: ../cache/locales.php:4 +#: [about]translators msgid "Translators" msgstr "" -#: ../cache/locales.php:5 +#: [about]software msgid "Software" msgstr "" -#: ../cache/locales.php:6 +#: [about]resources msgid "Resources" msgstr "" -#: ../cache/locales.php:7 ../cache/locales.php:83 ../cache/locales.php:85 +#: [about]api [schema]api [api]title msgid "API" msgstr "" -#: ../cache/locales.php:8 -msgid "" -"Movim is an XMPP-based communication platform. All the project, except the " -"following software and resources, is under" +#: [about]info +msgid "Movim is an XMPP-based communication platform. All the project, except the following software and resources, is under" msgstr "" -#: ../cache/locales.php:9 +#: [account]title msgid "Account" msgstr "" -#: ../cache/locales.php:10 -msgid "The password has been updated" -msgstr "" +#: [account]password_change_title +#, fuzzy +msgid "Change my password" +msgstr "Няправільны пароль" -#: ../cache/locales.php:11 -msgid "Please provide a valid password (6 characters minimum)" -msgstr "" - -#: ../cache/locales.php:12 -msgid "The provided passwords are not the same" -msgstr "" - -#: ../cache/locales.php:13 -msgid "Delete my account" -msgstr "" - -#: ../cache/locales.php:14 -msgid "" -"You will delete your XMPP account and all the relative information linked to " -"it (profile, contacts and publications)." -msgstr "" - -#: ../cache/locales.php:15 -msgid "Are you sure that you want to delete it ?" -msgstr "" - -#: ../cache/locales.php:16 ../cache/locales.php:411 -msgid "Create a new account" -msgstr "" - -#: ../cache/locales.php:17 -msgid "No account creation form found on the server" -msgstr "" - -#: ../cache/locales.php:18 ../cache/locales.php:172 -msgid "on" -msgstr "" - -#: ../cache/locales.php:19 -msgid "Your acccount has been successfully registered" -msgstr "" - -#: ../cache/locales.php:20 -msgid "Loading" -msgstr "" - -#: ../cache/locales.php:21 -msgid "Not Acceptable" -msgstr "" - -#: ../cache/locales.php:22 -msgid "The registration system of this server is currently unavailable" -msgstr "" - -#: ../cache/locales.php:23 -msgid "" -"This server use an external system for the registration, please click on the " -"following URL." -msgstr "" - -#: ../cache/locales.php:24 -msgid "Actions" -msgstr "" - -#: ../cache/locales.php:25 ../cache/locales.php:82 -msgid "Database" -msgstr "" - -#: ../cache/locales.php:26 -msgid "Modl wasn't able to connect to the database" -msgstr "" - -#: ../cache/locales.php:27 -msgid "Movim is connected to the database" -msgstr "" - -#: ../cache/locales.php:28 -msgid "The database need to be updated" -msgstr "" - -#: ../cache/locales.php:29 -msgid "Movim database is up to date" -msgstr "" - -#: ../cache/locales.php:30 -msgid "Database Type" -msgstr "" - -#: ../cache/locales.php:31 ../cache/locales.php:50 ../cache/locales.php:540 -msgid "Username" -msgstr "" - -#: ../cache/locales.php:32 ../cache/locales.php:51 ../cache/locales.php:282 -#: ../cache/locales.php:541 +#: [account]password [db]password [credentials]password [form]password +#: [input]password msgid "Password" msgstr "Пароль" -#: ../cache/locales.php:33 +#: [account]password_confirmation +#, fuzzy +msgid "Password confirmation" +msgstr "%s - Канфігурацыя" + +#: [account]password_changed +msgid "The password has been updated" +msgstr "" + +#: [account]password_not_valid +msgid "Please provide a valid password (6 characters minimum)" +msgstr "" + +#: [account]password_not_same +msgid "The provided passwords are not the same" +msgstr "" + +#: [account]delete_title +msgid "Delete my account" +msgstr "" + +#: [account]delete +msgid "Delete your account" +msgstr "" + +#: [account]delete_text +msgid "You will delete your XMPP account and all the relative information linked to it (profile, contacts and publications)." +msgstr "" + +#: [account]delete_text_confirm +msgid "Are you sure that you want to delete it ?" +msgstr "" + +#: [account]gateway_title +msgid "Gateway" +msgstr "" + +#: [create]title [subscribe]title +msgid "Create a new account" +msgstr "" + +#: [create]notfound +msgid "No account creation form found on the server" +msgstr "" + +#: [create]server_on +msgid "on" +msgstr "" + +#: [create]successfull +msgid "Your acccount has been successfully registered" +msgstr "" + +#: [create]loading +msgid "Loading" +msgstr "" + +#: [error]not_acceptable +msgid "Not Acceptable" +msgstr "" + +#: [error]service_unavailable +msgid "The registration system of this server is currently unavailable" +msgstr "" + +#: [oob]about +msgid "This server use an external system for the registration, please click on the following URL." +msgstr "" + +#: [adhoc]title +msgid "Actions" +msgstr "" + +#: [db]legend [schema]database +msgid "Database" +msgstr "" + +#: [db]connect_error +msgid "Modl wasn't able to connect to the database" +msgstr "" + +#: [db]connect_success +msgid "Movim is connected to the database" +msgstr "" + +#: [db]update +msgid "The database need to be updated" +msgstr "" + +#: [db]up_to_date +msgid "Movim database is up to date" +msgstr "" + +#: [db]type +msgid "Database Type" +msgstr "" + +#: [db]username [credentials]username [input]username +msgid "Username" +msgstr "" + +#: [db]host msgid "Host" msgstr "" -#: ../cache/locales.php:34 +#: [db]port msgid "Port" msgstr "" -#: ../cache/locales.php:35 -msgid "Database Name" +#: [db]name +msgid "Database sName" msgstr "" -#: ../cache/locales.php:36 +#: [admin]general msgid "General Settings" msgstr "" -#: ../cache/locales.php:37 +#: [general]theme msgid "Theme" msgstr "" -#: ../cache/locales.php:38 +#: [general]language msgid "Default language" msgstr "" -#: ../cache/locales.php:39 -msgid "Environment" -msgstr "" - -#: ../cache/locales.php:40 +#: [general]log_verbosity msgid "Log verbosity" msgstr "" -#: ../cache/locales.php:41 +#: [general]timezone msgid "Server Timezone" msgstr "" -#: ../cache/locales.php:42 +#: [general]limit msgid "User folder size limit (in bytes)" msgstr "" -#: ../cache/locales.php:43 +#: [websocket]title msgid "WebSocket Configuration" msgstr "" -#: ../cache/locales.php:44 +#: [websocket]info msgid "Enter here a valid WebSocket URI in the form" msgstr "" -#: ../cache/locales.php:45 +#: [websocket]label msgid "WebSocket URI" msgstr "" -#: ../cache/locales.php:46 -msgid "" -"If you change the URI, please restart the daemon to reload the configuration" +#: [websocket]save_info +msgid "If you change the URI, please restart the daemon to reload the configuration" msgstr "" -#: ../cache/locales.php:47 +#: [websocket]publics msgid "Public WebSockets" msgstr "" -#: ../cache/locales.php:48 +#: [credentials]title msgid "Administration Credential" msgstr "" -#: ../cache/locales.php:49 +#: [credentials]info msgid "Change the default credentials admin/password" msgstr "" -#: ../cache/locales.php:52 +#: [credentials]re_password msgid "Retype password" msgstr "" -#: ../cache/locales.php:53 +#: [whitelist]title msgid "Whitelist - XMPP Server" msgstr "" -#: ../cache/locales.php:54 -msgid "" -"If you want to specify a list of authorized XMPP servers on your Movim pod " -"and forbid the connection on all the others please put their domain name " -"here, with comma (ex: movim.eu,jabber.fr)" +#: [whitelist]info1 +msgid "If you want to specify a list of authorized XMPP servers on your Movim pod and forbid the connection on all the others please put their domain name here, with comma (ex: movim.eu,jabber.fr)" msgstr "" -#: ../cache/locales.php:55 -msgid "" -"Leave this field blank if you allow the access to all the XMPP accounts." +#: [whitelist]info2 +msgid "Leave this field blank if you allow the access to all the XMPP accounts." msgstr "" -#: ../cache/locales.php:56 +#: [whitelist]label msgid "List of whitelisted XMPP servers" msgstr "" -#: ../cache/locales.php:57 ../cache/locales.php:61 +#: [information]title +msgctxt "[information]title" msgid "Information Message" msgstr "" -#: ../cache/locales.php:58 +#: [information]description msgid "Description" msgstr "" -#: ../cache/locales.php:59 +#: [information]info1 msgid "This message will be displayed on the login page" msgstr "" -#: ../cache/locales.php:60 -msgid "Leave this field blank if you don't want to show any message." +#: [information]info2 +msgid "Leave this field blank if you dont want to show any message." msgstr "" -#: ../cache/locales.php:62 +#: [information]label +msgctxt "[information]label" +msgid "Information Message" +msgstr "" + +#: [log]empty msgid "Empty" msgstr "" -#: ../cache/locales.php:63 +#: [log]syslog msgid "Syslog" msgstr "" -#: ../cache/locales.php:64 +#: [log]syslog_files msgid "Syslog and files" msgstr "" -#: ../cache/locales.php:65 +#: [rewrite]title msgid "URL Rewriting" msgstr "" -#: ../cache/locales.php:66 +#: [rewrite]info msgid "The URL Rewriting can be enabled" msgstr "" -#: ../cache/locales.php:67 +#: [admin]compatibility msgid "General Overview" msgstr "" -#: ../cache/locales.php:68 -msgid "" -"Movim has found some issues or things that need to be fixed or improved" +#: [compatibility]info +msgid "Movim has found some issues or things that need to be fixed or improved" msgstr "" -#: ../cache/locales.php:69 -#, php-format +#: [compatibility]php1 msgid "Update your PHP-Version: %s" msgstr "" -#: ../cache/locales.php:70 +#: [compatibility]php2 msgid "Required: 5.3.0" msgstr "" -#: ../cache/locales.php:71 +#: [compatibility]curl msgid "Install the php5-curl library" msgstr "" -#: ../cache/locales.php:72 +#: [compatibility]imagick msgid "Install the php5-imagick library" msgstr "" -#: ../cache/locales.php:73 +#: [compatibility]gd msgid "Install the php5-gd library" msgstr "" -#: ../cache/locales.php:74 -msgid "Read and write rights for the webserver in Movim's root directory" +#: [compatibility]rights +msgid "Read and write rights for the webserver in Movims root directory" msgstr "" -#: ../cache/locales.php:75 +#: [compatibility]rewrite msgid "The URL Rewriting support is currently disabled" msgstr "" -#: ../cache/locales.php:76 +#: [compatibility]db msgid "The database need to be updated, go to the database panel to fix this" msgstr "" -#: ../cache/locales.php:77 -msgid "" -"WebSocket connection error, check if the Movim Daemon is running and is " -"reacheable" +#: [compatibility]websocket +msgid "WebSocket connection error, check if the Movim Daemon is running and is reachable" msgstr "" -#: ../cache/locales.php:78 -msgid "" -"XMPP Websocket connection error, please check the validity of the URL given " -"in the General Configuration" +#: [compatibility]xmpp_websocket +msgid "XMPP Websocket connection error, please check the validity of the URL given in the General Configuration" msgstr "" -#: ../cache/locales.php:79 +#: [schema]browser msgid "Browser" msgstr "" -#: ../cache/locales.php:80 +#: [schema]movim msgid "Movim Core" msgstr "" -#: ../cache/locales.php:81 +#: [schema]daemon msgid "Movim Daemon" msgstr "" -#: ../cache/locales.php:84 +#: [schema]xmpp msgid "XMPP" msgstr "" -#: ../cache/locales.php:86 -#, php-format -msgid "" -"Here you can register your pod on the official %sMovim API%s and be listed " -"on %sthe pods page%s." +#: [api]info +msgid "Here you can register your pod on the official %sMovim API%s and be listed on %sthe pods page%s." msgstr "" -#: ../cache/locales.php:87 +#: [api]register msgid "Your pod is not registered on the API" msgstr "" -#: ../cache/locales.php:88 +#: [api]registered msgid "Your pod is registered on the API" msgstr "" -#: ../cache/locales.php:89 +#: [api]wait msgid "Your pod is not yet validated" msgstr "" -#: ../cache/locales.php:90 +#: [api]validated msgid "Your pod is validated" msgstr "" -#: ../cache/locales.php:91 -msgid "" -"You asked to be removed from the API, this request will be processed in a " -"couple of hours" +#: [api]unregister +msgid "You asked to be removed from the API, this request will be processed in a couple of hours" msgstr "" -#: ../cache/locales.php:92 ../cache/locales.php:147 +#: [api]conf_updated [config]updated msgid "Configuration updated" msgstr "" -#: ../cache/locales.php:93 +#: [avatar]file msgid "File" msgstr "" -#: ../cache/locales.php:94 +#: [avatar]use_it msgid "Use it" msgstr "" -#: ../cache/locales.php:95 +#: [avatar]webcam msgid "Webcam" msgstr "" -#: ../cache/locales.php:96 +#: [avatar]cheese msgid "Cheese !" msgstr "" -#: ../cache/locales.php:97 +#: [avatar]snapshot msgid "Take a webcam snapshot" msgstr "" -#: ../cache/locales.php:98 +#: [avatar]updated msgid "Avatar Updated" msgstr "" -#: ../cache/locales.php:99 +#: [avatar]not_updated msgid "Avatar Not Updated" msgstr "" -#: ../cache/locales.php:100 ../cache/locales.php:415 -#, php-format +#: [blog]title [feed]title msgid "%s's feed" msgstr "" -#: ../cache/locales.php:101 +#: [blog]empty msgid "This user has not posted anything right now" msgstr "" -#: ../cache/locales.php:102 +#: [title]conferences msgid "Conferences" msgstr "" -#: ../cache/locales.php:103 ../cache/locales.php:193 ../cache/locales.php:217 -#: ../cache/locales.php:468 +#: [title]groups [group]empty_title [menu]groups [page]groups msgid "Groups" msgstr "" -#: ../cache/locales.php:104 +#: [chatroom]add msgid "Add a new Chat Room" msgstr "" -#: ../cache/locales.php:105 ../cache/locales.php:368 +#: [chatroom]id [chatrooms]id msgid "Chat Room ID" msgstr "" -#: ../cache/locales.php:106 ../cache/locales.php:116 ../cache/locales.php:156 -#: ../cache/locales.php:361 ../cache/locales.php:369 ../cache/locales.php:424 +#: [chatroom]name +msgctxt "[chatroom]name" msgid "Name" msgstr "" -#: ../cache/locales.php:107 ../cache/locales.php:157 ../cache/locales.php:371 -#: ../cache/locales.php:425 +#: [chatroom]nickname [general]nickname [chatrooms]nickname msgid "Nickname" msgstr "" -#: ../cache/locales.php:108 +#: [chatroom]autojoin_label msgid "Do you want do join automaticaly this Chat Room ?" msgstr "" -#: ../cache/locales.php:109 ../cache/locales.php:372 +#: [chatroom]bad_id [chatrooms]bad_id msgid "Bad Chatroom ID" msgstr "" -#: ../cache/locales.php:110 ../cache/locales.php:373 +#: [chatroom]empty_name [chatrooms]empty_name msgid "Empty name" msgstr "" -#: ../cache/locales.php:111 ../cache/locales.php:380 +#: [bookmarks]updated msgid "Bookmarks updated" msgstr "" -#: ../cache/locales.php:112 -msgid "An error occured : " +#: [bookmarks]error +msgid "An error occured :" msgstr "" -#: ../cache/locales.php:113 +#: [bookmarks]configure msgid "Configure" msgstr "" -#: ../cache/locales.php:114 +#: [url]add msgid "Add a new URL" msgstr "" -#: ../cache/locales.php:115 +#: [url]url msgid "URL" msgstr "" -#: ../cache/locales.php:117 +#: [url]name +msgctxt "[url]name" +msgid "Name" +msgstr "" + +#: [message]published msgid "Message Published" msgstr "" -#: ../cache/locales.php:118 ../cache/locales.php:138 +#: [message]encrypted msgid "Encrypted message" msgstr "" -#: ../cache/locales.php:119 +#: [message]composing [chats]composing msgid "Composing..." msgstr "" -#: ../cache/locales.php:120 +#: [message]paused [chats]paused msgid "Paused..." msgstr "" -#: ../cache/locales.php:121 +#: [message]gone msgid "Contact gone" msgstr "" -#: ../cache/locales.php:122 -#, php-format +#: [chat]attention msgid "%s needs your attention" msgstr "" -#: ../cache/locales.php:123 +#: [chat]placeholder msgid "Your message here..." msgstr "" -#: ../cache/locales.php:124 +#: [chat]smileys msgid "Smileys" msgstr "" -#: ../cache/locales.php:125 ../cache/locales.php:139 +#: [chat]empty_title [button]chat msgid "Chat" msgstr "Чат" -#: ../cache/locales.php:126 +#: [chat]empty_text msgid "Discuss with your contacts" msgstr "" -#: ../cache/locales.php:127 -msgid "Members" -msgstr "" - -#: ../cache/locales.php:128 ../cache/locales.php:376 -msgid "Connected to the chatroom" -msgstr "" - -#: ../cache/locales.php:129 ../cache/locales.php:377 -msgid "Disconnected from the chatroom" -msgstr "" - -#: ../cache/locales.php:130 ../cache/locales.php:200 ../cache/locales.php:469 -msgid "Configuration" -msgstr "Канфігурацыя" - -#: ../cache/locales.php:131 -msgid "Configuration saved" -msgstr "" - -#: ../cache/locales.php:132 -msgid "Subject" -msgstr "" - -#: ../cache/locales.php:133 -msgid "Subject changed" -msgstr "" - -#: ../cache/locales.php:134 -msgid "Open a new conversation by clicking on the plus button bellow" -msgstr "" - -#: ../cache/locales.php:135 -msgid "Chat with a contact" -msgstr "" - -#: ../cache/locales.php:136 +#: [chat]frequent [chats]frequent msgid "Frequent contacts" msgstr "" -#: ../cache/locales.php:137 +#: [chatroom]members +msgid "Members" +msgstr "" + +#: [chatroom]connected [chatrooms]connected +msgid "Connected to the chatroom" +msgstr "" + +#: [chatroom]disconnected [chatrooms]disconnected +msgid "Disconnected from the chatroom" +msgstr "" + +#: [chatroom]config [group]configuration [page]configuration +msgid "Configuration" +msgstr "Канфігурацыя" + +#: [chatroom]config_saved +msgid "Configuration saved" +msgstr "" + +#: [chatroom]subject +msgid "Subject" +msgstr "" + +#: [chatroom]subject_changed +msgid "Subject changed" +msgstr "" + +#: [chats]empty_title +msgid "No chats yet..." +msgstr "" + +#: [chats]empty +msgid "Open a new conversation by clicking on the plus button bellow or visit the Contacts page." +msgstr "" + +#: [chats]add +msgid "Chat with a contact" +msgstr "" + +#: [chats]more msgid "Load more contacts" msgstr "" -#: ../cache/locales.php:140 -msgid "General" -msgstr "" - -#: ../cache/locales.php:141 -msgid "Language" -msgstr "Мова" - -#: ../cache/locales.php:142 -msgid "Roster display" -msgstr "" - -#: ../cache/locales.php:143 -msgid "Show the offline contacts" -msgstr "" - -#: ../cache/locales.php:144 -msgid "Hide the offline contacts" -msgstr "" - -#: ../cache/locales.php:145 -msgid "Appearence" -msgstr "" - -#: ../cache/locales.php:146 -msgid "This configuration is shared wherever you are connected !" -msgstr "" - -#: ../cache/locales.php:148 -msgid "Notify on incoming message" -msgstr "" - -#: ../cache/locales.php:149 -msgid "Use desktop notifications" -msgstr "" - -#: ../cache/locales.php:150 +#: [title]data msgid "Data" msgstr "" -#: ../cache/locales.php:151 +#: [title]cache msgid "Cache" msgstr "" -#: ../cache/locales.php:152 ../cache/locales.php:218 ../cache/locales.php:466 +#: [title]contacts [menu]contacts [page]contacts msgid "Contacts" msgstr "" -#: ../cache/locales.php:153 ../cache/locales.php:480 +#: [title]posts [page]posts msgid "Posts" msgstr "" -#: ../cache/locales.php:154 +#: [title]messages msgid "Messages" msgstr "" -#: ../cache/locales.php:155 ../cache/locales.php:423 +#: [config]general +msgid "General" +msgstr "" + +#: [config]language +msgid "Language" +msgstr "Мова" + +#: [config]roster +msgid "Roster display" +msgstr "" + +#: [config]roster_show +msgid "Show the offline contacts" +msgstr "" + +#: [config]roster_hide +msgid "Hide the offline contacts" +msgstr "" + +#: [config]appearence +msgid "Appearence" +msgstr "" + +#: [config]info +msgid "This configuration is shared wherever you are connected" +msgstr "" + +#: [notifications]message +msgid "Notify on incoming message" +msgstr "" + +#: [notifications]desktop +msgid "Use desktop notifications" +msgstr "" + +#: [general]legend [general]general_title msgid "General Informations" msgstr "" -#: ../cache/locales.php:158 ../cache/locales.php:427 +#: [general]name [public_groups]name [chatrooms]name +msgid "Name" +msgstr "" + +#: [general]date_of_birth msgid "Date of Birth" msgstr "" -#: ../cache/locales.php:159 ../cache/locales.php:428 +#: [general]gender msgid "Gender" msgstr "" -#: ../cache/locales.php:160 ../cache/locales.php:429 +#: [general]marital msgid "Marital Status" msgstr "" -#: ../cache/locales.php:161 ../cache/locales.php:426 +#: [general]email msgid "Email" msgstr "" -#: ../cache/locales.php:162 ../cache/locales.php:430 +#: [general]website msgid "Website" msgstr "" -#: ../cache/locales.php:163 ../cache/locales.php:431 +#: [general]about msgid "About Me" msgstr "" -#: ../cache/locales.php:164 +#: [general]accounts msgid "Other Accounts" msgstr "" -#: ../cache/locales.php:165 +#: [general]tune msgid "Is Listening" msgstr "" -#: ../cache/locales.php:166 ../cache/locales.php:432 +#: [position]legend [position]position_title msgid "Geographic Position" msgstr "" -#: ../cache/locales.php:167 ../cache/locales.php:433 +#: [position]locality msgid "Locality" msgstr "" -#: ../cache/locales.php:168 ../cache/locales.php:434 +#: [position]country msgid "Country" msgstr "" -#: ../cache/locales.php:169 +#: [mood]title msgid "Mood" msgstr "" -#: ../cache/locales.php:170 +#: [mood]im msgid "I'm " msgstr "" -#: ../cache/locales.php:171 +#: [listen]title msgid "Listening" msgstr "" -#: ../cache/locales.php:173 +#: [last]title msgid "Last seen" msgstr "" -#: ../cache/locales.php:174 +#: [client]title msgid "Client Informations" msgstr "" -#: ../cache/locales.php:175 +#: [explore]last_registered msgid "Last registered" msgstr "" -#: ../cache/locales.php:176 +#: [explore]explore msgid "Find some new friends" msgstr "" -#: ../cache/locales.php:177 ../cache/locales.php:533 +#: [edit]title [button]edit msgid "Edit" msgstr "" -#: ../cache/locales.php:178 +#: [edit]alias msgid "Alias" msgstr "" -#: ../cache/locales.php:179 +#: [edit]group msgid "Group" msgstr "" -#: ../cache/locales.php:180 ../cache/locales.php:400 +#: [edit]updated [roster]updated msgid "Contact updated" msgstr "" -#: ../cache/locales.php:181 +#: [delete]title msgid "Are you sure?" msgstr "" -#: ../cache/locales.php:182 -msgid "" -"You are going to delete one of your contacts, please confirm your action" +#: [delete]text +msgid "You are going to delete one of your contacts, please confirm your action" msgstr "" -#: ../cache/locales.php:183 -#, php-format +#: [age]years msgid "%s years" msgstr "" -#: ../cache/locales.php:184 +#: [blog]last msgid "Last public post" msgstr "" -#: ../cache/locales.php:185 +#: [subscription]to +msgid "You can see this contact status" +msgstr "" + +#: [subscription]to_button +msgid "Share my status" +msgstr "" + +#: [subscription]to_text +msgid "But this contact cannot see yours" +msgstr "" + +#: [subscription]from +msgid "You are not subscribed to this contact" +msgstr "" + +#: [subscription]from_button +msgid "Ask to subscribe" +msgstr "" + +#: [subscription]from_text +msgid "But this contact can still see if you are online" +msgstr "" + +#: [subscription]nil +msgid "No subscriptions" +msgstr "" + +#: [subscription]nil_button +msgid "Invite" +msgstr "" + +#: [subscription]nil_text +msgid "This contact is in your contact list but there is no subscriptions between the two accounts" +msgstr "" + +#: [group]subscribe msgid "Subscribe" msgstr "" -#: ../cache/locales.php:186 +#: [group]subscribed msgid "Subscribed" msgstr "" -#: ../cache/locales.php:187 +#: [group]unsubscribe msgid "Unsubscribe" msgstr "" -#: ../cache/locales.php:188 +#: [group]unsubscribe_text msgid "You are going to unsubscribe from this Group" msgstr "" -#: ../cache/locales.php:189 +#: [group]unsubscribed msgid "Unsubscribed" msgstr "" -#: ../cache/locales.php:190 +#: [group]share_label msgid "Make your membership to this group public to your friends" msgstr "" -#: ../cache/locales.php:191 +#: [group]label_label msgid "Give a label for this group" msgstr "" -#: ../cache/locales.php:192 +#: [group]sure msgid "Are you sure ?" msgstr "" -#: ../cache/locales.php:194 +#: [group]empty_text msgid "Discover, follow and share" msgstr "" -#: ../cache/locales.php:195 +#: [group]empty msgid "Something bad happened to this group" msgstr "" -#: ../cache/locales.php:196 +#: [group]config_saved msgid "Group configuration saved" msgstr "" -#: ../cache/locales.php:197 +#: [group]delete_title msgid "Delete the group" msgstr "" -#: ../cache/locales.php:198 -msgid "" -"You are going to delete the following group. Please confirm your action." +#: [group]delete_text +msgid "You are going to delete the following group. Please confirm your action." msgstr "" -#: ../cache/locales.php:199 -msgid "" -"It seems that this group doesn't exists anymore. Do you want to remove it " -"from your subscriptions?" +#: [group]delete_clean_text +msgid "It seems that this group doesn't exists anymore. Do you want to remove it from your subscriptions?" msgstr "" -#: ../cache/locales.php:201 ../cache/locales.php:408 +#: [group]counter +msgid "%s groups on this server" +msgstr "" + +#: [group]subscriptions [statistics]subscriptions msgid "Subscriptions" msgstr "" -#: ../cache/locales.php:202 ../cache/locales.php:290 +#: [group]servers +msgid "Groups servers" +msgstr "" + +#: [group]search_server +msgid "Search for a new server" +msgstr "" + +#: [group]help_info1 +msgid "Groups are the perfect way to share posts about topics that you like with all the other Movim's users." +msgstr "" + +#: [group]help_info2 +msgid "Choose a server and a Group and subscribe to it using the %s button in the header. You can also create a new one using the %s button." +msgstr "" + +#: [group]help_info3 +msgid "Done? You can now publish a new post in the Group by using the %s button." +msgstr "" + +#: [group]help_info4 +msgid "You will find a list of all your subscribed Groups in My Subscriptions and receive instantly all the new incoming posts in the %sNews%s page." +msgstr "" + +#: [groups]empty_title msgid "Hello" msgstr "" -#: ../cache/locales.php:203 ../cache/locales.php:225 ../cache/locales.php:291 +#: [groups]contact_post [hello]contact_post [menu]contact_post msgid "Contact post" msgstr "" -#: ../cache/locales.php:204 -msgid "" -"You don't have any subscriptions yet, select a group server above to start " -"exploring." +#: [groups]empty_text1 +msgid "You don't have any subscriptions yet, select a group server above to start exploring." msgstr "" -#: ../cache/locales.php:205 +#: [groups]empty_text2 msgid "Subscribe to your favorite feeds by bookmarking them." msgstr "" -#: ../cache/locales.php:206 +#: [groups]subscriptions msgid "My Subscriptions" msgstr "" -#: ../cache/locales.php:207 +#: [groups]add msgid "Create a new Group" msgstr "" -#: ../cache/locales.php:208 +#: [groups]name msgid "Group name" msgstr "" -#: ../cache/locales.php:209 +#: [groups]name_example msgid "My Little Pony - Fan Club" msgstr "" -#: ../cache/locales.php:210 +#: [groups]created msgid "Group created successfully" msgstr "" -#: ../cache/locales.php:211 +#: [groups]deleted msgid "Group deleted successfully" msgstr "" -#: ../cache/locales.php:212 +#: [groups]name_error msgid "Please provide a valid group name (4 characters minimum)" msgstr "" -#: ../cache/locales.php:213 +#: [groups]no_creation msgid "You cannot create a new Group on this server" msgstr "" -#: ../cache/locales.php:214 -#, php-format +#: [groups]sub msgid "%s subscribers" msgstr "" -#: ../cache/locales.php:215 -#, php-format +#: [groups]num msgid "%s posts" msgstr "" -#: ../cache/locales.php:216 +#: [groups]disco_error +msgid "This server doesn't exists" +msgstr "" + +#: [menu]all msgid "All" msgstr "" -#: ../cache/locales.php:219 +#: [menu]refresh msgid "Refresh all the streams" msgstr "" -#: ../cache/locales.php:220 ../cache/locales.php:402 -msgid "Search" +#: [roster]search +msgid "Search in your contacts" msgstr "" -#: ../cache/locales.php:221 +#: [hello]active_contacts +msgid "Active contacts" +msgstr "" + +#: [hello]chat msgid "Go on the Chat page" msgstr "" -#: ../cache/locales.php:222 -msgid "Read all theses articles on the News page" -msgstr "" - -#: ../cache/locales.php:223 -msgid "Visit your public blog" -msgstr "" - -#: ../cache/locales.php:224 -msgid "See your public posts and share them with all your contacts" -msgstr "" - -#: ../cache/locales.php:226 -msgid "Universal share button" -msgstr "" - -#: ../cache/locales.php:227 -msgid "" -"Bookmark or drag and drop the following button in your toolbar and use it on " -"all the pages you want to share on Movim" -msgstr "" - -#: ../cache/locales.php:228 -msgid "Share on Movim" -msgstr "" - -#: ../cache/locales.php:229 -msgid "Frequently Asked Questions" -msgstr "" - -#: ../cache/locales.php:230 -msgid "What do the little banners refer to ?" -msgstr "" - -#: ../cache/locales.php:231 -msgid "" -"Thanks to these five little banners, you can quickly identitfy the level of " -"confdentiality applied to the information you provide." -msgstr "" - -#: ../cache/locales.php:232 -msgid "White, only you can see the information" -msgstr "" - -#: ../cache/locales.php:233 -msgid "Green, you have chosen some contacts who can see your information" -msgstr "" - -#: ../cache/locales.php:234 -msgid "Orange, all your contact list can see your information" -msgstr "" - -#: ../cache/locales.php:235 -msgid "Red, everybody in the XMPP network can see your information" -msgstr "" - -#: ../cache/locales.php:236 -msgid "Black, the whole Internet can see your information" -msgstr "" - -#: ../cache/locales.php:237 -msgid "Looking for some documentation ?" -msgstr "" - -#: ../cache/locales.php:238 -msgid "Read the Wiki" -msgstr "" - -#: ../cache/locales.php:239 -msgid "Talk with us by email ?" -msgstr "" - -#: ../cache/locales.php:240 -msgid "Join the Mailing List" -msgstr "" - -#: ../cache/locales.php:241 -msgid "Chat with the team ?" -msgstr "" - -#: ../cache/locales.php:242 -msgid "Join the Chatroom" -msgstr "" - -#: ../cache/locales.php:243 -msgid "Location node created" -msgstr "" - -#: ../cache/locales.php:244 -msgid "Bookmark node created" -msgstr "" - -#: ../cache/locales.php:245 -msgid "Profile node created" -msgstr "" - -#: ../cache/locales.php:246 -msgid "Avatar node created" -msgstr "" - -#: ../cache/locales.php:247 -msgid "Subscriptions node created" -msgstr "" - -#: ../cache/locales.php:248 -msgid "Microblog node created" -msgstr "" - -#: ../cache/locales.php:249 -msgid "Location" -msgstr "" - -#: ../cache/locales.php:250 -msgid "Wrong position" -msgstr "" - -#: ../cache/locales.php:251 -msgid "Location updated" -msgstr "" - -#: ../cache/locales.php:252 -msgid "Update my position" -msgstr "" - -#: ../cache/locales.php:253 -msgid "Wrong username" -msgstr "" - -#: ../cache/locales.php:254 -msgid "Invalid JID" -msgstr "" - -#: ../cache/locales.php:255 -msgid "Empty Challenge from the server" -msgstr "" - -#: ../cache/locales.php:256 -msgid "XMPP Domain error, your account is not a correct Jabber ID" -msgstr "" - -#: ../cache/locales.php:257 -msgid "Some data are missing !" -msgstr "" - -#: ../cache/locales.php:258 -msgid "Wrong password" -msgstr "Няправільны пароль" - -#: ../cache/locales.php:259 -msgid "Internal server error" -msgstr "" - -#: ../cache/locales.php:260 -msgid "Session error" -msgstr "" - -#: ../cache/locales.php:261 -msgid "Account successfully created" -msgstr "" - -#: ../cache/locales.php:262 ../cache/locales.php:271 -msgid "Your XMPP server is unauthorized" -msgstr "" - -#: ../cache/locales.php:263 -msgid "The server takes too much time to respond" -msgstr "" - -#: ../cache/locales.php:264 -msgid "Your web browser is too old to use with Movim." -msgstr "" - -#: ../cache/locales.php:265 -msgid "" -"Movim cannot talk with the server, please try again later (Websocket " -"connection error)" -msgstr "" - -#: ../cache/locales.php:266 -msgid "Impossible login" -msgstr "" - -#: ../cache/locales.php:267 -msgid "Oops!" -msgstr "" - -#: ../cache/locales.php:268 ../cache/locales.php:449 ../cache/locales.php:455 -msgid "Unknown error" -msgstr "" - -#: ../cache/locales.php:269 -msgid "Invalid username format" -msgstr "" - -#: ../cache/locales.php:270 -msgid "Invalid password format" -msgstr "" - -#: ../cache/locales.php:272 -msgid "A Movim session is already open on an other device" -msgstr "" - -#: ../cache/locales.php:273 -msgid "Movim failed to authenticate. You entered wrong data" -msgstr "" - -#: ../cache/locales.php:274 -msgid "Authentication mechanism not supported by Movim" -msgstr "" - -#: ../cache/locales.php:275 -msgid "The XMPP authentification failed" -msgstr "" - -#: ../cache/locales.php:276 -#, php-format -msgid "" -"You can login with Facebook (chat only) using %syour.id@chat.facebook.com%s " -"and your password" -msgstr "" - -#: ../cache/locales.php:277 -#, php-format -msgid "%sGmail accounts are also compatible%s but are not fully supported" -msgstr "" - -#: ../cache/locales.php:278 -msgid "You can login using your favorite Jabber account" -msgstr "" - -#: ../cache/locales.php:279 -msgid "or with our demonstration account" -msgstr "" - -#: ../cache/locales.php:280 ../cache/locales.php:435 -msgid "Accounts" -msgstr "" - -#: ../cache/locales.php:281 -msgid "My address" -msgstr "Мой адрас" - -#: ../cache/locales.php:283 -msgid "Create one !" -msgstr "" - -#: ../cache/locales.php:284 -msgid "No account yet ?" -msgstr "" - -#: ../cache/locales.php:285 -msgid "Another account" -msgstr "" - -#: ../cache/locales.php:286 -msgid "You can login with accounts from theses servers" -msgstr "" - -#: ../cache/locales.php:287 -msgid "Connected" -msgstr "" - -#: ../cache/locales.php:288 -msgid "Population" -msgstr "" - -#: ../cache/locales.php:289 -msgid "Bad nickname (between 4 and 40 characters)" -msgstr "" - -#: ../cache/locales.php:292 -msgid "" -"Welcome on your news feed, here you will see all the posts published in the " -"groups you have subscribed." -msgstr "" - -#: ../cache/locales.php:293 -msgid "Refreshing all the streams" -msgstr "" - -#: ../cache/locales.php:294 -msgid "This post is public" -msgstr "" - -#: ../cache/locales.php:295 -msgid "Manage your members" -msgstr "" - -#: ../cache/locales.php:296 -msgid "Get the members" -msgstr "" - -#: ../cache/locales.php:297 -msgid "Affiliations saved" -msgstr "" - -#: ../cache/locales.php:298 -msgid "Manage your subscriptions" -msgstr "" - -#: ../cache/locales.php:299 -msgid "Manage the subscriptions" -msgstr "" - -#: ../cache/locales.php:300 -msgid "Get the subscriptions" -msgstr "" - -#: ../cache/locales.php:301 -msgid "Subscriptions saved" -msgstr "" - -#: ../cache/locales.php:302 -msgid "Pending Invitations" -msgstr "" - -#: ../cache/locales.php:303 -#, php-format -msgid "%s wants to talk with you" -msgstr "" - -#: ../cache/locales.php:304 -msgid "Manage" -msgstr "" - -#: ../cache/locales.php:305 ../cache/locales.php:338 -msgid "News Feed" -msgstr "" - -#: ../cache/locales.php:306 ../cache/locales.php:339 -msgid "Discover and register to the groups you are interested in" -msgstr "" - -#: ../cache/locales.php:307 ../cache/locales.php:340 ../cache/locales.php:482 -msgid "Preview" -msgstr "" - -#: ../cache/locales.php:308 ../cache/locales.php:341 ../cache/locales.php:478 -msgid "Help" -msgstr "" - -#: ../cache/locales.php:309 ../cache/locales.php:342 -msgid "More help" -msgstr "" - -#: ../cache/locales.php:310 ../cache/locales.php:343 -msgid "Markdown syntax manual" -msgstr "" - -#: ../cache/locales.php:311 ../cache/locales.php:344 ../cache/locales.php:681 -msgid "Title" -msgstr "" - -#: ../cache/locales.php:312 ../cache/locales.php:345 -msgid "Content" -msgstr "" - -#: ../cache/locales.php:313 ../cache/locales.php:346 -msgid "Link" -msgstr "" - -#: ../cache/locales.php:314 ../cache/locales.php:347 -msgid "Tags" -msgstr "" - -#: ../cache/locales.php:315 ../cache/locales.php:348 -msgid "Please enter a valid url" -msgstr "" - -#: ../cache/locales.php:316 ../cache/locales.php:349 -msgid "No content to preview" -msgstr "" - -#: ../cache/locales.php:317 ../cache/locales.php:350 ../cache/locales.php:687 -msgid "No content" -msgstr "" - -#: ../cache/locales.php:318 ../cache/locales.php:351 -msgid "Post published" -msgstr "" - -#: ../cache/locales.php:319 ../cache/locales.php:352 -msgid "Post deleted" -msgstr "" - -#: ../cache/locales.php:320 ../cache/locales.php:353 -msgid "This picture will be added to your gallery" -msgstr "" - -#: ../cache/locales.php:321 ../cache/locales.php:354 -msgid "What's Hot" -msgstr "" - -#: ../cache/locales.php:322 ../cache/locales.php:355 -msgid "New post" -msgstr "" - -#: ../cache/locales.php:323 ../cache/locales.php:357 -msgid "" -"You can also use services like Imgur or Flickr to host your picture and " -"paste the link here." -msgstr "" - -#: ../cache/locales.php:324 -#, php-format -msgid "This is a re-post from %s" -msgstr "" - -#: ../cache/locales.php:325 -#, php-format -msgid "See %s profile" -msgstr "" - -#: ../cache/locales.php:326 -msgid "Publish this post on your public feed?" -msgstr "" - -#: ../cache/locales.php:327 -msgid "Post published on your blog" -msgstr "" - -#: ../cache/locales.php:328 -msgid "Post removed from your blog" -msgstr "" - -#: ../cache/locales.php:329 ../cache/locales.php:701 -msgid "Delete this post" -msgstr "" - -#: ../cache/locales.php:330 -msgid "You are going to delete this post, please confirm your action" -msgstr "" - -#: ../cache/locales.php:331 -msgid "Comments disabled" -msgstr "" - -#: ../cache/locales.php:332 -msgid "Comment published" -msgstr "" - -#: ../cache/locales.php:333 -msgid "Disconnect" -msgstr "" - -#: ../cache/locales.php:334 -msgid "Your status here !" -msgstr "" - -#: ../cache/locales.php:335 -msgid "Status updated" -msgstr "" - -#: ../cache/locales.php:336 -msgid "Status" -msgstr "" - -#: ../cache/locales.php:337 -msgid "Presence" -msgstr "" - -#: ../cache/locales.php:356 -msgid "Publish" -msgstr "" - -#: ../cache/locales.php:358 -msgid "You cannot publish a post on this Group" -msgstr "" - -#: ../cache/locales.php:359 -msgid "" -"Some fields have been filled in. Do you still want to go back and loose " -"their content?" -msgstr "" - -#: ../cache/locales.php:360 -msgid "Shared" -msgstr "" - -#: ../cache/locales.php:362 -#, php-format -msgid "%s has been added to your public groups" -msgstr "" - -#: ../cache/locales.php:363 -#, php-format -msgid "%s has been removed from your public groups" -msgstr "" - -#: ../cache/locales.php:364 -msgid "Add a chatroom" -msgstr "" - -#: ../cache/locales.php:365 -msgid "You don't have any chatroom yet." -msgstr "" - -#: ../cache/locales.php:366 -msgid "Add one by clicking on the add button in the header." -msgstr "" - -#: ../cache/locales.php:367 -msgid "Chatrooms" -msgstr "" - -#: ../cache/locales.php:370 -msgid "My Favorite Room" -msgstr "" - -#: ../cache/locales.php:374 -msgid "Remove a chatroom" -msgstr "" - -#: ../cache/locales.php:375 -msgid "" -"You are going to remove the following chatroom. Please confirm your action." -msgstr "" - -#: ../cache/locales.php:378 -msgid "Users in the room" -msgstr "" - -#: ../cache/locales.php:379 -msgid "Please enter a correct nickname (6 to 40 characters)" -msgstr "" - -#: ../cache/locales.php:381 -msgid "Public chatroom" -msgstr "" - -#: ../cache/locales.php:382 -msgid "Please provide a room address" -msgstr "" - -#: ../cache/locales.php:383 -msgid "You are currently logued as an anonymous user." -msgstr "" - -#: ../cache/locales.php:384 -msgid "" -"You can join using your own account or create one on the login page by " -"loging out using the cross in the top-right corner." -msgstr "" - -#: ../cache/locales.php:385 -#, php-format -msgid "Login on %s" -msgstr "" - -#: ../cache/locales.php:386 -msgid "Your nickname" -msgstr "" - -#: ../cache/locales.php:387 -msgid "Ungrouped" -msgstr "" - -#: ../cache/locales.php:388 -msgid "Show disconnected contacts" -msgstr "" - -#: ../cache/locales.php:389 -msgid "Hide disconnected contacts" -msgstr "" - -#: ../cache/locales.php:390 -#, php-format -msgid "Show group %s" -msgstr "" - -#: ../cache/locales.php:391 -#, php-format -msgid "Hide group %s" -msgstr "" - -#: ../cache/locales.php:392 -msgid "Please enter a valid Jabber ID" -msgstr "" - -#: ../cache/locales.php:393 -msgid "" -"No contacts ? You can add one using the + button bellow or going to the " -"Explore page" -msgstr "" - -#: ../cache/locales.php:394 -msgid "Show/Hide" -msgstr "" - -#: ../cache/locales.php:395 -msgid "Enter the Jabber ID of your contact." -msgstr "" - -#: ../cache/locales.php:396 -msgid "Press enter to validate." -msgstr "" - -#: ../cache/locales.php:397 -msgid "JID" -msgstr "" - -#: ../cache/locales.php:398 -msgid "Results" -msgstr "" - -#: ../cache/locales.php:399 -msgid "Contact added" -msgstr "" - -#: ../cache/locales.php:401 -msgid "Contact deleted" -msgstr "" - -#: ../cache/locales.php:403 -msgid "This is not a valid url" -msgstr "" - -#: ../cache/locales.php:404 -msgid "Sharing the URL" -msgstr "" - -#: ../cache/locales.php:405 -msgid "Statistics" -msgstr "" - -#: ../cache/locales.php:406 -msgid "Since" -msgstr "" - -#: ../cache/locales.php:407 -msgid "Sessions" -msgstr "" - -#: ../cache/locales.php:409 -msgid "Monthly Subscriptions" -msgstr "" - -#: ../cache/locales.php:410 -msgid "Monthly Subscriptions Cumulated" -msgstr "" - -#: ../cache/locales.php:412 -msgid "" -"Movim is a decentralized social network, before creating a new account you " -"need to choose a server to register." -msgstr "" - -#: ../cache/locales.php:413 -msgid "Your server here ?" -msgstr "" - -#: ../cache/locales.php:414 -msgid "Contact us to add yours to the officially supported servers list" -msgstr "" - -#: ../cache/locales.php:416 -msgid "No public feed for this contact" -msgstr "" - -#: ../cache/locales.php:417 -msgid "No contact specified" -msgstr "" - -#: ../cache/locales.php:418 ../cache/locales.php:473 -msgid "Profile" -msgstr "" - -#: ../cache/locales.php:419 -msgid "Profile Updated" -msgstr "" - -#: ../cache/locales.php:420 -msgid "Profile Not Updated" -msgstr "" - -#: ../cache/locales.php:421 -msgid "Your profile is now public" -msgstr "" - -#: ../cache/locales.php:422 -msgid "Your profile is now restricted" -msgstr "" - -#: ../cache/locales.php:436 -msgid "Twitter" -msgstr "" - -#: ../cache/locales.php:437 -msgid "Skype" -msgstr "" - -#: ../cache/locales.php:438 -msgid "Yahoo" -msgstr "" - -#: ../cache/locales.php:439 -msgid "Privacy Level" -msgstr "" - -#: ../cache/locales.php:440 -msgid "Is this profile public ?" -msgstr "" - -#: ../cache/locales.php:441 -msgid "" -"Please pay attention ! By making your profile public, all the information " -"listed above will be available for all the Movim users and on the whole " -"Internet." -msgstr "" - -#: ../cache/locales.php:442 -msgid "Call" -msgstr "" - -#: ../cache/locales.php:443 -msgid "Hang up" -msgstr "" - -#: ../cache/locales.php:444 -msgid "Connection" -msgstr "" - -#: ../cache/locales.php:445 ../cache/locales.php:451 -msgid "Hung up" -msgstr "" - -#: ../cache/locales.php:446 ../cache/locales.php:452 -msgid "Your contact is busy" -msgstr "" - -#: ../cache/locales.php:447 ../cache/locales.php:453 -msgid "Declined" -msgstr "" - -#: ../cache/locales.php:448 ../cache/locales.php:454 -msgid "Remote application incompatible" -msgstr "" - -#: ../cache/locales.php:450 ../cache/locales.php:456 -msgid "Is calling you" -msgstr "" - -#: ../cache/locales.php:457 -msgid "You don't have javascript enabled. Good luck with that." -msgstr "" - -#: ../cache/locales.php:458 -msgid "" -"Movim is a kickass distributed social networking platform that protect your " -"privacy an comes with a set of awesome features." -msgstr "" - -#: ../cache/locales.php:459 -msgid "Administration" -msgstr "" - -#: ../cache/locales.php:460 -msgid "Home" -msgstr "Галоўная" - -#: ../cache/locales.php:461 -msgid "Discover" -msgstr "" - -#: ../cache/locales.php:462 -msgid "Explore" -msgstr "" - -#: ../cache/locales.php:463 -msgid "Account Creation" -msgstr "Стварэнне логiна" - -#: ../cache/locales.php:464 +#: [hello]news [page]news msgid "News" msgstr "" -#: ../cache/locales.php:465 -msgid "Avatar" +#: [hello]news_page +msgid "Read all theses articles on the News page" msgstr "" -#: ../cache/locales.php:467 -msgid "Chats" +#: [hello]blog_title +msgid "Visit your public blog" msgstr "" -#: ../cache/locales.php:470 -msgid "Server" +#: [hello]blog_text +msgid "See your public posts and share them with all your contacts" msgstr "" -#: ../cache/locales.php:471 -msgid "Public Groups" +#: [hello]share_title +msgid "Universal share button" msgstr "" -#: ../cache/locales.php:472 -msgid "Viewer" +#: [hello]share_text +msgid "Bookmark or drag and drop the following button in your toolbar and use it on all the pages you want to share on Movim" msgstr "" -#: ../cache/locales.php:474 -msgid "Media" +#: [hello]share_button +msgid "Share on Movim" msgstr "" -#: ../cache/locales.php:475 -msgid "Blog" +#: [help]faq +msgid "Frequently Asked Questions" msgstr "" -#: ../cache/locales.php:476 -msgid "About" +#: [banner]title +msgid "What do the little banners refer to ?" msgstr "" -#: ../cache/locales.php:477 -msgid "Login" +#: [banner]info1 +msgid "Thanks to these five little banners, you can quickly identitfy the level of confdentiality applied to the information you provide." msgstr "" -#: ../cache/locales.php:479 -msgid "Feed" +#: [banner]white +msgid "White, only you can see the information" msgstr "" -#: ../cache/locales.php:481 -msgid "Gallery" +#: [banner]green +msgid "Green, you have chosen some contacts who can see your information" msgstr "" -#: ../cache/locales.php:483 -msgid "Visio-conference" +#: [banner]orange +msgid "Orange, all your contact list can see your information" msgstr "" -#: ../cache/locales.php:484 -msgid "Pods" +#: [banner]red +msgid "Red, everybody in the XMPP network can see your information" msgstr "" -#: ../cache/locales.php:485 -msgid "Share" +#: [banner]black +msgid "Black, the whole Internet can see your information" msgstr "" -#: ../cache/locales.php:486 -msgid "Room" +#: [wiki]question +msgid "Looking for some documentation ?" msgstr "" -#: ../cache/locales.php:487 -#, php-format -msgid "Error: %s" +#: [wiki]button +msgid "Read the Wiki" msgstr "" -#: ../cache/locales.php:488 -#, php-format -msgid "Cannot load file '%s'" +#: [ml]question +msgid "Talk with us by email ?" msgstr "" -#: ../cache/locales.php:489 -#, php-format -msgid "Route error, please set all the parameters for the page %s" +#: [ml]button +msgid "Join the Mailing List" msgstr "" -#: ../cache/locales.php:490 -#, php-format -msgid "Requested widget '%s' doesn't exist." +#: [chatroom]question +msgid "Chat with the team ?" msgstr "" -#: ../cache/locales.php:491 -#, php-format -msgid "Requested event '%s' not registered." +#: [chatroom]button +msgid "Join the Chatroom" msgstr "" -#: ../cache/locales.php:492 -msgid "Whoops!" +#: [init]location +msgid "Location node created" msgstr "" -#: ../cache/locales.php:493 -msgid "It seem that you don't have any pictures here?" +#: [init]bookmark +msgid "Bookmark node created" msgstr "" -#: ../cache/locales.php:494 -msgid "You can try to upload a couple by going to the Media page" +#: [init]vcard4 +msgid "Profile node created" msgstr "" -#: ../cache/locales.php:495 -#, php-format -msgid "%s - About" +#: [init]avatar +msgid "Avatar node created" msgstr "" -#: ../cache/locales.php:496 -#, php-format -msgid "%s - Account" +#: [init]subscriptions +msgid "Subscriptions node created" msgstr "" -#: ../cache/locales.php:497 -#, php-format -msgid "%s - Administration Panel" +#: [init]microblog +msgid "Microblog node created" msgstr "" -#: ../cache/locales.php:498 -#, php-format -msgid "%s - Blog" +#: [location]title +msgid "Location" msgstr "" -#: ../cache/locales.php:499 -#, php-format -msgid "%s - Configuration" -msgstr "%s - Канфігурацыя" - -#: ../cache/locales.php:500 -#, php-format -msgid "%s - Discover" +#: [location]wrong_postition +msgid "Wrong position" msgstr "" -#: ../cache/locales.php:501 -#, php-format -msgid "%s - Explore" +#: [location]updated +msgid "Location updated" msgstr "" -#: ../cache/locales.php:502 -#, php-format -msgid "%s - Help Page" +#: [location]update +msgid "Update my position" msgstr "" -#: ../cache/locales.php:503 -#, php-format -msgid "%s - Login to Movim" -msgstr "%s - Увайсці ў Movim" - -#: ../cache/locales.php:504 -#, php-format -msgid "%s - Welcome to Movim" -msgstr "%s - Сардэчна запрашаем у Movim" - -#: ../cache/locales.php:505 -#, php-format -msgid "%s - Media" +#: [login_anonymous]bad_username +msgid "Bad nickname (between 4 and 40 characters)" msgstr "" -#: ../cache/locales.php:506 -#, php-format -msgid "%s - News" +#: [error]username +msgid "Wrong username" msgstr "" -#: ../cache/locales.php:507 -#, php-format -msgid "%s - Group Configuration" +#: [error]jid +msgid "Invalid JID" msgstr "" -#: ../cache/locales.php:508 -#, php-format -msgid "%s - Group" +#: [error]empty_challenge +msgid "Empty Challenge from the server" msgstr "" -#: ../cache/locales.php:509 -#, php-format -msgid "%s - 404" +#: [error]dns +msgid "XMPP Domain error, your account is not a correct Jabber ID" msgstr "" -#: ../cache/locales.php:510 -#, php-format -msgid "%s - Profile" +#: [error]data_missings +msgid "Some data are missing !" msgstr "" -#: ../cache/locales.php:511 -#, php-format -msgid "%s - Server" +#: [error]wrong_password +msgid "Wrong password" +msgstr "Няправільны пароль" + +#: [error]internal +msgid "Internal server error" msgstr "" -#: ../cache/locales.php:512 -msgid "Validate" +#: [error]session +msgid "Session error" msgstr "" -#: ../cache/locales.php:513 -msgid "Refresh" +#: [error]account_created +msgid "Account successfully created" msgstr "" -#: ../cache/locales.php:514 -msgid "Add" +#: [error]xmpp_unauthorized +msgctxt "[error]xmpp_unauthorized" +msgid "Your XMPP server is unauthorized" msgstr "" -#: ../cache/locales.php:515 -msgid "Delete" +#: [error]mec_error +msgid "The server takes too much time to respond" msgstr "" -#: ../cache/locales.php:516 -msgid "Remove" +#: [error]too_old +msgid "Your web browser is too old to use with Movim." msgstr "" -#: ../cache/locales.php:517 -msgid "Cancel" +#: [error]websocket +msgid "Movim cannot talk with the server, please try again later (Websocket connection error)" msgstr "" -#: ../cache/locales.php:518 -msgid "Close" +#: [error]impossible +msgid "Impossible login" msgstr "" -#: ../cache/locales.php:519 -msgid "Update" +#: [error]title +msgid "Oops!" msgstr "" -#: ../cache/locales.php:520 -msgid "Updating" +#: [error]default [visio]unknown_error +msgid "Unknown error" msgstr "" -#: ../cache/locales.php:521 +#: [error]login_format +msgid "Invalid username format" +msgstr "" + +#: [error]password_format +msgid "Invalid password format" +msgstr "" + +#: [error]unauthorized +msgctxt "[error]unauthorized" +msgid "Your XMPP server is unauthorized" +msgstr "" + +#: [error]conflict +msgid "A Movim session is already open on an other device" +msgstr "" + +#: [error]wrong_account +msgid "Movim failed to authenticate. You entered wrong data" +msgstr "" + +#: [error]mechanism +msgid "Authentication mechanism not supported by Movim" +msgstr "" + +#: [error]fail_auth +msgid "The XMPP authentification failed" +msgstr "" + +#: [account]title [accounts]accounts_title +msgid "Accounts" +msgstr "" + +#: [form]username +msgid "My address" +msgstr "Мой адрас" + +#: [form]create_one +msgid "Create one !" +msgstr "" + +#: [form]another_account +msgid "Another account" +msgstr "" + +#: [form]no_account +msgid "No account yet ?" +msgstr "" + +#: [form]whitelist.info +msgid "You can login with accounts from theses servers" +msgstr "" + +#: [form]connected +msgid "Connected" +msgstr "" + +#: [form]population +msgid "Population" +msgstr "" + +#: [menu]empty_title +msgid "No news yet..." +msgstr "" + +#: [menu]empty +msgid "Welcome on your news feed, here you will see all the posts published by your contacts and in the groups you have subscribed." +msgstr "" + +#: [menu]refresh +msgid "Refreshing all the streams" +msgstr "" + +#: [menu]public +msgid "This post is public" +msgstr "" + +#: [affiliations]title +msgid "Manage your members" +msgstr "" + +#: [affiliations]get +msgid "Get the members" +msgstr "" + +#: [affiliations]saved +msgid "Affiliations saved" +msgstr "" + +#: [subscriptions]title +msgid "Manage your subscriptions" +msgstr "" + +#: [subscriptions]info +msgid "Manage the subscriptions" +msgstr "" + +#: [subscriptions]get +msgid "Get the subscriptions" +msgstr "" + +#: [subscriptions]saved +msgid "Subscriptions saved" +msgstr "" + +#: [notifs]title +msgid "Pending Invitations" +msgstr "" + +#: [notifs]wants_to_talk +msgid "%s wants to talk with you" +msgstr "" + +#: [notifs]manage +msgid "Manage" +msgstr "" + +#: [post]news_feed +msgid "News Feed" +msgstr "" + +#: [post]placeholder +msgid "Discover and register to the groups you are interested in" +msgstr "" + +#: [post]preview [page]preview +msgid "Preview" +msgstr "" + +#: [post]help [page]help +msgid "Help" +msgstr "" + +#: [post]help_more +msgid "More help" +msgstr "" + +#: [post]help_manual +msgid "Markdown syntax manual" +msgstr "" + +#: [post]title +msgid "Title" +msgstr "" + +#: [post]content +msgid "Content" +msgstr "" + +#: [post]link +msgid "Link" +msgstr "" + +#: [post]tags +msgid "Tags" +msgstr "" + +#: [post]valid_url [publish]valid_url +msgid "Please enter a valid url" +msgstr "" + +#: [post]no_content_preview [publish]no_content_preview +msgid "No content to preview" +msgstr "" + +#: [post]no_content [publish]no_content [post]empty +msgid "No content" +msgstr "" + +#: [post]published +msgid "Post published" +msgstr "" + +#: [post]deleted +msgid "Post deleted" +msgstr "" + +#: [post]gallery +msgid "This picture will be added to your gallery" +msgstr "" + +#: [post]hot +msgid "What's Hot" +msgstr "" + +#: [post]hot_text +msgid "Posts recently published in Groups that you are not subscribed (yet)" +msgstr "" + +#: [post]new [publish]new +msgid "New post" +msgstr "" + +#: [post]embed_tip +msgid "You can also use services like Imgur or Flickr to host your picture and paste the link here." +msgstr "" + +#: [post]repost +msgid "This is a re-post from %s" +msgstr "" + +#: [post]repost_profile +msgid "See %s profile" +msgstr "" + +#: [post]public +msgid "Publish this post publicly?" +msgstr "" + +#: [post]blog_add +msgid "Post published on your blog" +msgstr "" + +#: [post]blog_remove +msgid "Post removed from your blog" +msgstr "" + +#: [post]delete_title [post]delete +msgid "Delete this post" +msgstr "" + +#: [post]delete_text +msgid "You are going to delete this post, please confirm your action" +msgstr "" + +#: [post]comments_disabled +msgid "Comments disabled" +msgstr "" + +#: [post]comment_published +msgid "Comment published" +msgstr "" + +#: [status]disconnect +msgid "Disconnect" +msgstr "" + +#: [status]here +msgid "Your status here !" +msgstr "" + +#: [status]updated +msgid "Status updated" +msgstr "" + +#: [status]status +msgid "Status" +msgstr "" + +#: [status]presence +msgid "Presence" +msgstr "" + +#: [status]online +msgid "Online with Movim" +msgstr "" + +#: [publish]title +msgid "Publish" +msgstr "" + +#: [publish]attach +msgid "Add a file or a picture to your post" +msgstr "" + +#: [publish]no_publication +msgid "You cannot publish a post on this Group" +msgstr "" + +#: [publish]form_filled +msgid "Some fields have been filled in. Do you still want to go back and loose their content?" +msgstr "" + +#: [public_groups]shared +msgid "Shared" +msgstr "" + +#: [public_groups]added +msgid "%s has been added to your public groups" +msgstr "" + +#: [rooms]add +msgid "Add a chatroom" +msgstr "" + +#: [rooms]empty_text1 +msgid "You don't have any chatroom yet." +msgstr "" + +#: [rooms]empty_text2 +msgid "Add one by clicking on the add button in the header." +msgstr "" + +#: [chatrooms]title +msgid "Chatrooms" +msgstr "" + +#: [chatrooms]name_placeholder +msgid "My Favorite Room" +msgstr "" + +#: [chatrooms]users +msgid "Users in the room" +msgstr "" + +#: [chatrooms]bad_nickname +msgid "Please enter a correct nickname (2 to 40 characters)" +msgstr "" + +#: [room]anonymous_title +msgid "Public chatroom" +msgstr "" + +#: [room]no_room +msgid "Please provide a room address" +msgstr "" + +#: [room]anonymous_text1 +msgid "You are currently logued as an anonymous user." +msgstr "" + +#: [room]anonymous_text2 +msgid "You can join using your own account or create one on the login page by loging out using the cross in the top-right corner." +msgstr "" + +#: [room]anonymous_login +msgid "Login on %s" +msgstr "" + +#: [room]nick +msgid "Your nickname" +msgstr "" + +#: [roster]ungrouped +msgid "Ungrouped" +msgstr "" + +#: [roster]show_disconnected +msgid "Show disconnected contacts" +msgstr "" + +#: [roster]hide_disconnected +msgid "Hide disconnected contacts" +msgstr "" + +#: [roster]show_group +msgid "Show group %s" +msgstr "" + +#: [roster]hide_group +msgid "Hide group %s" +msgstr "" + +#: [roster]jid_error +msgid "Please enter a valid Jabber ID" +msgstr "" + +#: [roster]no_contacts_title +msgid "No contacts ?" +msgstr "" + +#: [roster]no_contacts_text +msgid "You can add one using the + button bellow" +msgstr "" + +#: [roster]show_hide +msgid "Show/Hide" +msgstr "" + +#: [roster]add_contact_info1 +msgid "Enter the Jabber ID of your contact." +msgstr "" + +#: [roster]add_contact_info2 +msgid "Press enter to validate." +msgstr "" + +#: [roster]jid +msgid "JID" +msgstr "" + +#: [roster]results +msgid "Results" +msgstr "" + +#: [roster]added +msgid "Contact added" +msgstr "" + +#: [roster]deleted +msgid "Contact deleted" +msgstr "" + +#: [roster]search +msgid "Search" +msgstr "" + +#: [share]error +msgid "This is not a valid url" +msgstr "" + +#: [share]success +msgid "Sharing the URL" +msgstr "" + +#: [statistics]title +msgid "Statistics" +msgstr "" + +#: [statistics]since +msgid "Since" +msgstr "" + +#: [statistics]sessions +msgid "Sessions" +msgstr "" + +#: [statistics]monthly_sub +msgid "Monthly Subscriptions" +msgstr "" + +#: [statistics]monthly_sub_cum +msgid "Monthly Subscriptions Cumulated" +msgstr "" + +#: [subscribe]info +msgid "Movim is a decentralized social network, before creating a new account you need to choose a server to register." +msgstr "" + +#: [subscribe]server_question +msgid "Your server here ?" +msgstr "" + +#: [subscribe]server_contact +msgid "Contact us to add yours to the officially supported servers list" +msgstr "" + +#: [feed]nope +msgid "No public feed for this contact" +msgstr "" + +#: [feed]nope_contact +msgid "No contact specified" +msgstr "" + +#: [upload]title +msgid "Upload a file" +msgstr "" + +#: [upload]choose +msgid "Choose a file to upload" +msgstr "" + +#: [vcard]title [page]profile +msgid "Profile" +msgstr "" + +#: [vcard]updated +msgid "Profile Updated" +msgstr "" + +#: [vcard]not_updated +msgid "Profile Not Updated" +msgstr "" + +#: [vcard]public +msgid "Your profile is now public" +msgstr "" + +#: [vcard]restricted +msgid "Your profile is now restricted" +msgstr "" + +#: [general]nickname +msgctxt "[general]nickname" +msgid "Nickname" +msgstr "" + +#: [accounts]twitter +msgid "Twitter" +msgstr "" + +#: [accounts]skype +msgid "Skype" +msgstr "" + +#: [accounts]yahoo +msgid "Yahoo" +msgstr "" + +#: [accounts]accounts_nickname +msgctxt "[accounts]accounts_nickname" +msgid "Nickname" +msgstr "" + +#: [accounts]accounts_yahoo +msgid "Yahoo Account" +msgstr "" + +#: [privacy]privacy_title +msgid "Privacy Level" +msgstr "" + +#: [privacy]privacy_question +msgid "Is this profile public ?" +msgstr "" + +#: [privacy]privacy_info +msgid "Please pay attention ! By making your profile public, all the information listed above will be available for all the Movim users and on the whole Internet." +msgstr "" + +#: [save]submit [button]submit msgid "Submit" msgstr "Даслаць" -#: ../cache/locales.php:522 -msgid "Submitting" -msgstr "" - -#: ../cache/locales.php:523 +#: [save]reset [button]reset msgid "Reset" msgstr "Скід" -#: ../cache/locales.php:524 +#: [visio]hung_up +msgid "Hung up" +msgstr "" + +#: [visio]busy +msgid "Your contact is busy" +msgstr "" + +#: [visio]declined +msgid "Declined" +msgstr "" + +#: [visio]calling +msgid "Is calling you" +msgstr "" + +#: [visio]call +msgid "Call" +msgstr "" + +#: [visio]hang_up +msgid "Hang up" +msgstr "" + +#: [visio]connection +msgid "Connection" +msgstr "" + +#: [global]no_js +msgid "You don't have javascript enabled. Good luck with that." +msgstr "" + +#: [global]description +msgid "Movim is a kickass distributed social networking platform that protect your privacy an comes with a set of awesome features." +msgstr "" + +#: [page]administration +msgid "Administration" +msgstr "" + +#: [page]home +msgid "Home" +msgstr "Галоўная" + +#: [page]discover +msgid "Discover" +msgstr "" + +#: [page]explore +msgid "Explore" +msgstr "" + +#: [page]account_creation +msgid "Account Creation" +msgstr "Стварэнне логiна" + +#: [page]avatar +msgid "Avatar" +msgstr "" + +#: [page]chats +msgid "Chats" +msgstr "" + +#: [page]server +msgid "Server" +msgstr "" + +#: [page]public_groups +msgid "Public Groups" +msgstr "" + +#: [page]viewer +msgid "Viewer" +msgstr "" + +#: [page]media +msgid "Media" +msgstr "" + +#: [page]blog +msgid "Blog" +msgstr "" + +#: [page]about +msgid "About" +msgstr "" + +#: [page]login +msgid "Login" +msgstr "" + +#: [page]feed +msgid "Feed" +msgstr "" + +#: [page]gallery +msgid "Gallery" +msgstr "" + +#: [page]visio +msgid "Visio-conference" +msgstr "" + +#: [page]pods +msgid "Pods" +msgstr "" + +#: [page]share +msgid "Share" +msgstr "" + +#: [page]room +msgid "Room" +msgstr "" + +#: [error]error +msgid "Error: %s" +msgstr "" + +#: [error]cannot_load_file +msgid "Cannot load file '%s'" +msgstr "" + +#: [error]route +msgid "Route error, please set all the parameters for the page %s" +msgstr "" + +#: [error]widget_load_error +msgid "Requested widget '%s' doesn't exist." +msgstr "" + +#: [error]widget_call_error +msgid "Requested event '%s' not registered." +msgstr "" + +#: [error]whoops +msgid "Whoops!" +msgstr "" + +#: [error]media_not_found +msgid "It seem that you don't have any pictures here?" +msgstr "" + +#: [error]media_ask_upload +msgid "You can try to upload a couple by going to the Media page" +msgstr "" + +#: [title]about +msgid "%s - About" +msgstr "" + +#: [title]account +msgid "%s - Account" +msgstr "" + +#: [title]administration +msgid "%s - Administration Panel" +msgstr "" + +#: [title]blog +msgid "%s - Blog" +msgstr "" + +#: [title]configuration +msgid "%s - Configuration" +msgstr "%s - Канфігурацыя" + +#: [title]discover +msgid "%s - Discover" +msgstr "" + +#: [title]explore +msgid "%s - Explore" +msgstr "" + +#: [title]help +msgid "%s - Help Page" +msgstr "" + +#: [title]login +msgid "%s - Login to Movim" +msgstr "%s - Увайсці ў Movim" + +#: [title]main +msgid "%s - Welcome to Movim" +msgstr "%s - Сардэчна запрашаем у Movim" + +#: [title]media +msgid "%s - Media" +msgstr "" + +#: [title]news +msgid "%s - News" +msgstr "" + +#: [title]node_configuration +msgid "%s - Group Configuration" +msgstr "" + +#: [title]node +msgid "%s - Group" +msgstr "" + +#: [title]not_found +msgid "%s - 404" +msgstr "" + +#: [title]profile +msgid "%s - Profile" +msgstr "" + +#: [title]server +msgid "%s - Server" +msgstr "" + +#: [button]validate +msgid "Validate" +msgstr "" + +#: [button]refresh +msgid "Refresh" +msgstr "" + +#: [button]add +msgid "Add" +msgstr "" + +#: [button]delete +msgid "Delete" +msgstr "" + +#: [button]cancel +msgid "Cancel" +msgstr "" + +#: [button]close +msgid "Close" +msgstr "" + +#: [button]update +msgid "Update" +msgstr "" + +#: [button]updating +msgid "Updating" +msgstr "" + +#: [button]submitting +msgid "Submitting" +msgstr "" + +#: [button]register msgid "Register" msgstr "" -#: ../cache/locales.php:525 +#: [button]unregister msgid "Unregister" msgstr "" -#: ../cache/locales.php:526 +#: [button]save msgid "Save" msgstr "" -#: ../cache/locales.php:527 +#: [button]clear msgid "Clear" msgstr "" -#: ../cache/locales.php:528 +#: [button]upload msgid "Upload" msgstr "" -#: ../cache/locales.php:529 +#: [button]come_in msgid "Come in!" msgstr "Заходзьце!" -#: ../cache/locales.php:530 +#: [button]connecting msgid "Connecting" msgstr "" -#: ../cache/locales.php:531 +#: [button]bool_yes msgid "Yes" msgstr "" -#: ../cache/locales.php:532 +#: [button]bool_no msgid "No" msgstr "" -#: ../cache/locales.php:534 +#: [button]return msgid "Return" msgstr "" -#: ../cache/locales.php:535 +#: [button]accept msgid "Accept" msgstr "" -#: ../cache/locales.php:536 +#: [button]refuse msgid "Refuse" msgstr "" -#: ../cache/locales.php:537 +#: [button]next msgid "Next" msgstr "" -#: ../cache/locales.php:538 +#: [button]previous msgid "Previous" msgstr "" -#: ../cache/locales.php:539 -#, php-format +#: [step]step msgid "Step %s" msgstr "" -#: ../cache/locales.php:542 +#: [day]title msgid "Day" msgstr "" -#: ../cache/locales.php:543 +#: [day]monday msgid "Monday" msgstr "" -#: ../cache/locales.php:544 +#: [day]tuesday msgid "Tuesday" msgstr "" -#: ../cache/locales.php:545 +#: [day]wednesday msgid "Wednesday" msgstr "" -#: ../cache/locales.php:546 +#: [day]thursday msgid "Thursday" msgstr "" -#: ../cache/locales.php:547 +#: [day]friday msgid "Friday" msgstr "" -#: ../cache/locales.php:548 +#: [day]saturday msgid "Saturday" msgstr "" -#: ../cache/locales.php:549 +#: [day]sunday msgid "Sunday" msgstr "" -#: ../cache/locales.php:550 ../cache/locales.php:559 +#: [gender]nil +msgctxt "[gender]nil" msgid "None" msgstr "" -#: ../cache/locales.php:551 +#: [gender]male msgid "Male" msgstr "" -#: ../cache/locales.php:552 +#: [gender]female msgid "Female" msgstr "" -#: ../cache/locales.php:553 +#: [gender]other msgid "Other" msgstr "" -#: ../cache/locales.php:554 +#: [client]bot msgid "Bot" msgstr "" -#: ../cache/locales.php:555 +#: [client]desktop msgid "Desktop" msgstr "" -#: ../cache/locales.php:556 +#: [client]phone msgid "Phone" msgstr "" -#: ../cache/locales.php:557 +#: [client]web msgid "Web" msgstr "" -#: ../cache/locales.php:558 +#: [client]registered msgid "Registered" msgstr "" -#: ../cache/locales.php:560 +#: [marital]nil +msgctxt "[marital]nil" +msgid "None" +msgstr "" + +#: [marital]single msgid "Single" msgstr "" -#: ../cache/locales.php:561 +#: [marital]relationship msgid "In a relationship" msgstr "" -#: ../cache/locales.php:562 +#: [marital]married msgid "Married" msgstr "" -#: ../cache/locales.php:563 +#: [marital]divorced msgid "Divorced" msgstr "" -#: ../cache/locales.php:564 +#: [marital]widowed msgid "Widowed" msgstr "" -#: ../cache/locales.php:565 +#: [marital]cohabiting msgid "Cohabiting" msgstr "" -#: ../cache/locales.php:566 +#: [marital]union msgid "Civil Union" msgstr "" -#: ../cache/locales.php:567 +#: [flag]white msgid "Not shared" msgstr "" -#: ../cache/locales.php:568 +#: [flag]green msgid "Shared with one contact" msgstr "" -#: ../cache/locales.php:569 +#: [flag]orange msgid "Shared with all contacts" msgstr "" -#: ../cache/locales.php:570 +#: [flag]red msgid "Shared with the XMPP network" msgstr "" -#: ../cache/locales.php:571 +#: [flag]black msgid "Shared with the whole Internet" msgstr "" -#: ../cache/locales.php:572 +#: [presence]online msgid "Online" msgstr "" -#: ../cache/locales.php:573 +#: [presence]away msgid "Away" msgstr "Далёка" -#: ../cache/locales.php:574 +#: [presence]dnd msgid "Do Not Disturb" msgstr "" -#: ../cache/locales.php:575 +#: [presence]xa msgid "Extended Away" msgstr "" -#: ../cache/locales.php:576 +#: [presence]offline msgid "Offline" msgstr "" -#: ../cache/locales.php:577 +#: [presence]error msgid "Error" msgstr "" -#: ../cache/locales.php:578 +#: [mood]afraid msgid "afraid" msgstr "" -#: ../cache/locales.php:579 +#: [mood]amazed msgid "amazed" msgstr "" -#: ../cache/locales.php:580 +#: [mood]amorous msgid "amorous" msgstr "" -#: ../cache/locales.php:581 +#: [mood]angry msgid "angry" msgstr "" -#: ../cache/locales.php:582 +#: [mood]annoyed msgid "annoyed" msgstr "" -#: ../cache/locales.php:583 +#: [mood]anxious msgid "anxious" msgstr "" -#: ../cache/locales.php:584 +#: [mood]aroused msgid "aroused" msgstr "" -#: ../cache/locales.php:585 +#: [mood]ashamed msgid "ashamed" msgstr "" -#: ../cache/locales.php:586 +#: [mood]bored msgid "bored" msgstr "" -#: ../cache/locales.php:587 +#: [mood]brave msgid "brave" msgstr "" -#: ../cache/locales.php:588 +#: [mood]calm msgid "calm" msgstr "" -#: ../cache/locales.php:589 +#: [mood]cautious msgid "cautious" msgstr "" -#: ../cache/locales.php:590 +#: [mood]cold msgid "cold" msgstr "" -#: ../cache/locales.php:591 +#: [mood]confident msgid "confident" msgstr "" -#: ../cache/locales.php:592 +#: [mood]confused msgid "confused" msgstr "" -#: ../cache/locales.php:593 +#: [mood]contemplative msgid "contemplative" msgstr "" -#: ../cache/locales.php:594 +#: [mood]contented msgid "contented" msgstr "" -#: ../cache/locales.php:595 +#: [mood]cranky msgid "cranky" msgstr "" -#: ../cache/locales.php:596 +#: [mood]crazy msgid "crazy" msgstr "" -#: ../cache/locales.php:597 +#: [mood]creative msgid "creative" msgstr "" -#: ../cache/locales.php:598 +#: [mood]curious msgid "curious" msgstr "" -#: ../cache/locales.php:599 +#: [mood]dejected msgid "dejected" msgstr "" -#: ../cache/locales.php:600 +#: [mood]depressed msgid "depressed" msgstr "" -#: ../cache/locales.php:601 +#: [mood]disappointed msgid "disappointed" msgstr "" -#: ../cache/locales.php:602 +#: [mood]disgusted msgid "disgusted" msgstr "" -#: ../cache/locales.php:603 +#: [mood]dismayed msgid "dismayed" msgstr "" -#: ../cache/locales.php:604 +#: [mood]distracted msgid "distracted" msgstr "" -#: ../cache/locales.php:605 +#: [mood]embarrassed msgid "embarrassed" msgstr "" -#: ../cache/locales.php:606 +#: [mood]envious msgid "envious" msgstr "" -#: ../cache/locales.php:607 +#: [mood]excited msgid "excited" msgstr "" -#: ../cache/locales.php:608 +#: [mood]flirtatious msgid "flirtatious" msgstr "" -#: ../cache/locales.php:609 +#: [mood]frustated msgid "frustated" msgstr "" -#: ../cache/locales.php:610 +#: [mood]grateful msgid "grateful" msgstr "" -#: ../cache/locales.php:611 +#: [mood]grieving msgid "grieving" msgstr "" -#: ../cache/locales.php:612 +#: [mood]grumpy msgid "grumpy" msgstr "" -#: ../cache/locales.php:613 +#: [mood]guilty msgid "guilty" msgstr "" -#: ../cache/locales.php:614 +#: [mood]happy msgid "happy" msgstr "" -#: ../cache/locales.php:615 +#: [mood]hopeful msgid "hopeful" msgstr "" -#: ../cache/locales.php:616 +#: [mood]hot msgid "hot" msgstr "" -#: ../cache/locales.php:617 +#: [mood]humbled msgid "humbled" msgstr "" -#: ../cache/locales.php:618 +#: [mood]humiliated msgid "humiliated" msgstr "" -#: ../cache/locales.php:619 +#: [mood]hungry msgid "hungry" msgstr "" -#: ../cache/locales.php:620 +#: [mood]hurt msgid "hurt" msgstr "" -#: ../cache/locales.php:621 +#: [mood]impressed msgid "impressed" msgstr "" -#: ../cache/locales.php:622 +#: [mood]in_awe msgid "in awe" msgstr "" -#: ../cache/locales.php:623 +#: [mood]in_love msgid "in love" msgstr "" -#: ../cache/locales.php:624 +#: [mood]indignant msgid "indignant" msgstr "" -#: ../cache/locales.php:625 +#: [mood]interested msgid "interested" msgstr "" -#: ../cache/locales.php:626 +#: [mood]intoxicated msgid "intoxicated" msgstr "" -#: ../cache/locales.php:627 +#: [mood]invincible msgid "invincible" msgstr "" -#: ../cache/locales.php:628 +#: [mood]jealous msgid "jealous" msgstr "" -#: ../cache/locales.php:629 +#: [mood]lonely msgid "lonely" msgstr "" -#: ../cache/locales.php:630 +#: [mood]lost msgid "lost" msgstr "" -#: ../cache/locales.php:631 +#: [mood]lucky msgid "lucky" msgstr "" -#: ../cache/locales.php:632 +#: [mood]mean msgid "mean" msgstr "" -#: ../cache/locales.php:633 +#: [mood]moody msgid "moody" msgstr "" -#: ../cache/locales.php:634 +#: [mood]nervous msgid "nervous" msgstr "" -#: ../cache/locales.php:635 +#: [mood]neutral msgid "neutral" msgstr "" -#: ../cache/locales.php:636 +#: [mood]offended msgid "offended" msgstr "" -#: ../cache/locales.php:637 +#: [mood]outraged msgid "outraged" msgstr "" -#: ../cache/locales.php:638 +#: [mood]playful msgid "playful" msgstr "" -#: ../cache/locales.php:639 +#: [mood]proud msgid "proud" msgstr "" -#: ../cache/locales.php:640 +#: [mood]relaxed msgid "relaxed" msgstr "" -#: ../cache/locales.php:641 +#: [mood]relieved msgid "relieved" msgstr "" -#: ../cache/locales.php:642 -msgid "remorseful" -msgstr "" - -#: ../cache/locales.php:643 +#: [mood]restless msgid "restless" msgstr "" -#: ../cache/locales.php:644 +#: [mood]sad msgid "sad" msgstr "" -#: ../cache/locales.php:645 +#: [mood]sarcastic msgid "sarcastic" msgstr "" -#: ../cache/locales.php:646 +#: [mood]satisfied msgid "satisfied" msgstr "" -#: ../cache/locales.php:647 +#: [mood]serious msgid "serious" msgstr "" -#: ../cache/locales.php:648 +#: [mood]shocked msgid "shocked" msgstr "" -#: ../cache/locales.php:649 +#: [mood]shy msgid "shy" msgstr "" -#: ../cache/locales.php:650 +#: [mood]sick msgid "sick" msgstr "" -#: ../cache/locales.php:651 +#: [mood]sleepy msgid "sleepy" msgstr "" -#: ../cache/locales.php:652 +#: [mood]spontaneous msgid "spontaneous" msgstr "" -#: ../cache/locales.php:653 +#: [mood]stressed msgid "stressed" msgstr "" -#: ../cache/locales.php:654 +#: [mood]strong msgid "strong" msgstr "" -#: ../cache/locales.php:655 +#: [mood]surprised msgid "surprised" msgstr "" -#: ../cache/locales.php:656 +#: [mood]thankful msgid "thankful" msgstr "" -#: ../cache/locales.php:657 +#: [mood]thirsty msgid "thirsty" msgstr "" -#: ../cache/locales.php:658 +#: [mood]tired msgid "tired" msgstr "" -#: ../cache/locales.php:659 +#: [mood]undefined msgid "undefined" msgstr "" -#: ../cache/locales.php:660 +#: [mood]weak msgid "weak" msgstr "" -#: ../cache/locales.php:661 +#: [mood]worried msgid "worried" msgstr "" -#: ../cache/locales.php:662 +#: [month]title msgid "Month" msgstr "" -#: ../cache/locales.php:663 +#: [month]january msgid "January" msgstr "" -#: ../cache/locales.php:664 +#: [month]february msgid "February" msgstr "" -#: ../cache/locales.php:665 +#: [month]march msgid "March" msgstr "" -#: ../cache/locales.php:666 +#: [month]april msgid "April" msgstr "" -#: ../cache/locales.php:667 +#: [month]may msgid "May" msgstr "" -#: ../cache/locales.php:668 +#: [month]june msgid "June" msgstr "" -#: ../cache/locales.php:669 +#: [month]july msgid "July" msgstr "" -#: ../cache/locales.php:670 +#: [month]august msgid "August" msgstr "" -#: ../cache/locales.php:671 +#: [month]september msgid "September" msgstr "" -#: ../cache/locales.php:672 +#: [month]october msgid "October" msgstr "" -#: ../cache/locales.php:673 +#: [month]november msgid "November" msgstr "" -#: ../cache/locales.php:674 +#: [month]december msgid "December" msgstr "" -#: ../cache/locales.php:675 +#: [year]title msgid "Year" msgstr "" -#: ../cache/locales.php:676 +#: [date]today msgid "Today" msgstr "" -#: ../cache/locales.php:677 +#: [date]tomorrow msgid "Tomorrow" msgstr "" -#: ../cache/locales.php:678 +#: [date]yesterday msgid "Yesterday" msgstr "" -#: ../cache/locales.php:679 -#, php-format -msgid " %d days ago" +#: [date]ago +msgid "%d days ago" msgstr "" -#: ../cache/locales.php:680 +#: [date]day msgid "day" msgstr "" -#: ../cache/locales.php:682 +#: [post]whats_new msgid "What's new ?" msgstr "" -#: ../cache/locales.php:683 +#: [post]place msgid "Place" msgstr "" -#: ../cache/locales.php:684 +#: [post]by msgid "by" msgstr "" -#: ../cache/locales.php:685 +#: [post]geolocalisation msgid "Geolocalisation" msgstr "" -#: ../cache/locales.php:686 +#: [post]email msgid "email" msgstr "" -#: ../cache/locales.php:688 +#: [post]no_comments msgid "No comments yet" msgstr "" -#: ../cache/locales.php:689 +#: [post]no_comments_stream msgid "No comments stream" msgstr "" -#: ../cache/locales.php:690 +#: [post]no_load msgid "Your feed cannot be loaded." msgstr "" -#: ../cache/locales.php:691 +#: [post]older msgid "Get older posts" msgstr "" -#: ../cache/locales.php:692 -#, php-format +#: [post]new_items msgid "%s new items" msgstr "" -#: ../cache/locales.php:693 +#: [post]comment_error msgid "Comment publication error" msgstr "" -#: ../cache/locales.php:694 +#: [post]comments_older msgid "Show the older comments" msgstr "" -#: ../cache/locales.php:695 -msgid "Loading comments ..." +#: [post]comments_loading +msgid "Loading comments..." msgstr "" -#: ../cache/locales.php:696 +#: [post]comments_get msgid "Get the comments" msgstr "" -#: ../cache/locales.php:697 +#: [post]comment_add msgid "Add a comment" msgstr "" -#: ../cache/locales.php:698 +#: [post]share msgid "Share with" msgstr "" -#: ../cache/locales.php:699 +#: [post]share_everyone msgid "Everyone" msgstr "" -#: ../cache/locales.php:700 +#: [post]share_your_contacts msgid "Your contacts" msgstr "" -#: ../cache/locales.php:702 +#: [post]updated msgid "Updated" msgstr "" -#: ../cache/locales.php:703 +#: [post]content_not_found msgid "Content not found" msgstr "" -#: ../cache/locales.php:704 +#: [post]default_title msgid "Contact publication" msgstr "" -#: ../cache/locales.php:705 +#: [post]comments msgid "Comments" msgstr "" -#: ../cache/locales.php:706 +#: [api]error msgid "The API is not reachable, try again later" msgstr "" -#: ../cache/locales.php:707 +#: [field]type_here msgid "Type here" msgstr "" -#, php-format #~ msgid "%s - Account Creation" #~ msgstr "%s - Стварэнне логiна" diff --git a/sources/locales/bn.po b/sources/locales/bn.po index beb719e..b34728b 100644 --- a/sources/locales/bn.po +++ b/sources/locales/bn.po @@ -3,2584 +3,2700 @@ # This file is distributed under the same license as the movim package. # FIRST AUTHOR , 2013. # +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/About/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Account/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AccountNext/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AdHoc/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AdminDB/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AdminMain/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AdminTest/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Api/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Avatar/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Blog/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Bookmark/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Chat/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Chats/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/ConfigData/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Config/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Contact/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Group/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Groups/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Header/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Hello/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Help/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Init/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Location/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/LoginAnonymous/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Login/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Menu/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/NodeAffiliations/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/NodeSubscriptions/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Notifs/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Post/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Presence/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Publish/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/PubsubSubscriptionConfig/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Rooms/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Roster/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Share/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Statistics/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Subscribe/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Syndication/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Upload/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Vcard4/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/VisioExt/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Visio/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../locales/locales.ini msgid "" msgstr "" "Project-Id-Version: movim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-06-08 22:06+0200\n" +"POT-Creation-Date: 2015-08-20 15:17+0200\n" "PO-Revision-Date: 2014-05-23 12:58+0000\n" "Last-Translator: Guruvai Oronno Bangalee \n" "Language-Team: Bengali \n" +"Language: bn\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2015-06-18 21:08+0000\n" "X-Generator: Launchpad (build 17570)\n" -"Language: bn\n" -#: ../cache/locales.php:2 +#: [about]thanks msgid "Thanks" msgstr "" -#: ../cache/locales.php:3 +#: [about]developers msgid "Developers" msgstr "" -#: ../cache/locales.php:4 +#: [about]translators msgid "Translators" msgstr "" -#: ../cache/locales.php:5 +#: [about]software msgid "Software" msgstr "" -#: ../cache/locales.php:6 +#: [about]resources msgid "Resources" msgstr "" -#: ../cache/locales.php:7 ../cache/locales.php:83 ../cache/locales.php:85 +#: [about]api [schema]api [api]title msgid "API" msgstr "" -#: ../cache/locales.php:8 -msgid "" -"Movim is an XMPP-based communication platform. All the project, except the " -"following software and resources, is under" +#: [about]info +msgid "Movim is an XMPP-based communication platform. All the project, except the following software and resources, is under" msgstr "" -#: ../cache/locales.php:9 +#: [account]title msgid "Account" msgstr "" -#: ../cache/locales.php:10 -msgid "The password has been updated" +#: [account]password_change_title +msgid "Change my password" msgstr "" -#: ../cache/locales.php:11 -msgid "Please provide a valid password (6 characters minimum)" -msgstr "" - -#: ../cache/locales.php:12 -msgid "The provided passwords are not the same" -msgstr "" - -#: ../cache/locales.php:13 -msgid "Delete my account" -msgstr "" - -#: ../cache/locales.php:14 -msgid "" -"You will delete your XMPP account and all the relative information linked to " -"it (profile, contacts and publications)." -msgstr "" - -#: ../cache/locales.php:15 -msgid "Are you sure that you want to delete it ?" -msgstr "" - -#: ../cache/locales.php:16 ../cache/locales.php:411 -msgid "Create a new account" -msgstr "" - -#: ../cache/locales.php:17 -msgid "No account creation form found on the server" -msgstr "" - -#: ../cache/locales.php:18 ../cache/locales.php:172 -msgid "on" -msgstr "" - -#: ../cache/locales.php:19 -msgid "Your acccount has been successfully registered" -msgstr "" - -#: ../cache/locales.php:20 -msgid "Loading" -msgstr "" - -#: ../cache/locales.php:21 -msgid "Not Acceptable" -msgstr "" - -#: ../cache/locales.php:22 -msgid "The registration system of this server is currently unavailable" -msgstr "" - -#: ../cache/locales.php:23 -msgid "" -"This server use an external system for the registration, please click on the " -"following URL." -msgstr "" - -#: ../cache/locales.php:24 -msgid "Actions" -msgstr "" - -#: ../cache/locales.php:25 ../cache/locales.php:82 -msgid "Database" -msgstr "" - -#: ../cache/locales.php:26 -msgid "Modl wasn't able to connect to the database" -msgstr "" - -#: ../cache/locales.php:27 -msgid "Movim is connected to the database" -msgstr "" - -#: ../cache/locales.php:28 -msgid "The database need to be updated" -msgstr "" - -#: ../cache/locales.php:29 -msgid "Movim database is up to date" -msgstr "" - -#: ../cache/locales.php:30 -msgid "Database Type" -msgstr "" - -#: ../cache/locales.php:31 ../cache/locales.php:50 ../cache/locales.php:540 -msgid "Username" -msgstr "" - -#: ../cache/locales.php:32 ../cache/locales.php:51 ../cache/locales.php:282 -#: ../cache/locales.php:541 +#: [account]password [db]password [credentials]password [form]password +#: [input]password msgid "Password" msgstr "" -#: ../cache/locales.php:33 +#: [account]password_confirmation +msgid "Password confirmation" +msgstr "" + +#: [account]password_changed +msgid "The password has been updated" +msgstr "" + +#: [account]password_not_valid +msgid "Please provide a valid password (6 characters minimum)" +msgstr "" + +#: [account]password_not_same +msgid "The provided passwords are not the same" +msgstr "" + +#: [account]delete_title +msgid "Delete my account" +msgstr "" + +#: [account]delete +msgid "Delete your account" +msgstr "" + +#: [account]delete_text +msgid "You will delete your XMPP account and all the relative information linked to it (profile, contacts and publications)." +msgstr "" + +#: [account]delete_text_confirm +msgid "Are you sure that you want to delete it ?" +msgstr "" + +#: [account]gateway_title +msgid "Gateway" +msgstr "" + +#: [create]title [subscribe]title +msgid "Create a new account" +msgstr "" + +#: [create]notfound +msgid "No account creation form found on the server" +msgstr "" + +#: [create]server_on +msgid "on" +msgstr "" + +#: [create]successfull +msgid "Your acccount has been successfully registered" +msgstr "" + +#: [create]loading +msgid "Loading" +msgstr "" + +#: [error]not_acceptable +msgid "Not Acceptable" +msgstr "" + +#: [error]service_unavailable +msgid "The registration system of this server is currently unavailable" +msgstr "" + +#: [oob]about +msgid "This server use an external system for the registration, please click on the following URL." +msgstr "" + +#: [adhoc]title +msgid "Actions" +msgstr "" + +#: [db]legend [schema]database +msgid "Database" +msgstr "" + +#: [db]connect_error +msgid "Modl wasn't able to connect to the database" +msgstr "" + +#: [db]connect_success +msgid "Movim is connected to the database" +msgstr "" + +#: [db]update +msgid "The database need to be updated" +msgstr "" + +#: [db]up_to_date +msgid "Movim database is up to date" +msgstr "" + +#: [db]type +msgid "Database Type" +msgstr "" + +#: [db]username [credentials]username [input]username +msgid "Username" +msgstr "" + +#: [db]host msgid "Host" msgstr "" -#: ../cache/locales.php:34 +#: [db]port msgid "Port" msgstr "" -#: ../cache/locales.php:35 -msgid "Database Name" +#: [db]name +msgid "Database sName" msgstr "" -#: ../cache/locales.php:36 +#: [admin]general msgid "General Settings" msgstr "" -#: ../cache/locales.php:37 +#: [general]theme msgid "Theme" msgstr "" -#: ../cache/locales.php:38 +#: [general]language msgid "Default language" msgstr "" -#: ../cache/locales.php:39 -msgid "Environment" -msgstr "" - -#: ../cache/locales.php:40 +#: [general]log_verbosity msgid "Log verbosity" msgstr "" -#: ../cache/locales.php:41 +#: [general]timezone msgid "Server Timezone" msgstr "" -#: ../cache/locales.php:42 +#: [general]limit msgid "User folder size limit (in bytes)" msgstr "" -#: ../cache/locales.php:43 +#: [websocket]title msgid "WebSocket Configuration" msgstr "" -#: ../cache/locales.php:44 +#: [websocket]info msgid "Enter here a valid WebSocket URI in the form" msgstr "" -#: ../cache/locales.php:45 +#: [websocket]label msgid "WebSocket URI" msgstr "" -#: ../cache/locales.php:46 -msgid "" -"If you change the URI, please restart the daemon to reload the configuration" +#: [websocket]save_info +msgid "If you change the URI, please restart the daemon to reload the configuration" msgstr "" -#: ../cache/locales.php:47 +#: [websocket]publics msgid "Public WebSockets" msgstr "" -#: ../cache/locales.php:48 +#: [credentials]title msgid "Administration Credential" msgstr "" -#: ../cache/locales.php:49 +#: [credentials]info msgid "Change the default credentials admin/password" msgstr "" -#: ../cache/locales.php:52 +#: [credentials]re_password msgid "Retype password" msgstr "" -#: ../cache/locales.php:53 +#: [whitelist]title msgid "Whitelist - XMPP Server" msgstr "" -#: ../cache/locales.php:54 -msgid "" -"If you want to specify a list of authorized XMPP servers on your Movim pod " -"and forbid the connection on all the others please put their domain name " -"here, with comma (ex: movim.eu,jabber.fr)" +#: [whitelist]info1 +msgid "If you want to specify a list of authorized XMPP servers on your Movim pod and forbid the connection on all the others please put their domain name here, with comma (ex: movim.eu,jabber.fr)" msgstr "" -#: ../cache/locales.php:55 -msgid "" -"Leave this field blank if you allow the access to all the XMPP accounts." +#: [whitelist]info2 +msgid "Leave this field blank if you allow the access to all the XMPP accounts." msgstr "" -#: ../cache/locales.php:56 +#: [whitelist]label msgid "List of whitelisted XMPP servers" msgstr "" -#: ../cache/locales.php:57 ../cache/locales.php:61 +#: [information]title +msgctxt "[information]title" msgid "Information Message" msgstr "" -#: ../cache/locales.php:58 +#: [information]description msgid "Description" msgstr "" -#: ../cache/locales.php:59 +#: [information]info1 msgid "This message will be displayed on the login page" msgstr "" -#: ../cache/locales.php:60 -msgid "Leave this field blank if you don't want to show any message." +#: [information]info2 +msgid "Leave this field blank if you dont want to show any message." msgstr "" -#: ../cache/locales.php:62 +#: [information]label +msgctxt "[information]label" +msgid "Information Message" +msgstr "" + +#: [log]empty msgid "Empty" msgstr "" -#: ../cache/locales.php:63 +#: [log]syslog msgid "Syslog" msgstr "" -#: ../cache/locales.php:64 +#: [log]syslog_files msgid "Syslog and files" msgstr "" -#: ../cache/locales.php:65 +#: [rewrite]title msgid "URL Rewriting" msgstr "" -#: ../cache/locales.php:66 +#: [rewrite]info msgid "The URL Rewriting can be enabled" msgstr "" -#: ../cache/locales.php:67 +#: [admin]compatibility msgid "General Overview" msgstr "" -#: ../cache/locales.php:68 -msgid "" -"Movim has found some issues or things that need to be fixed or improved" +#: [compatibility]info +msgid "Movim has found some issues or things that need to be fixed or improved" msgstr "" -#: ../cache/locales.php:69 -#, php-format +#: [compatibility]php1 msgid "Update your PHP-Version: %s" msgstr "" -#: ../cache/locales.php:70 +#: [compatibility]php2 msgid "Required: 5.3.0" msgstr "" -#: ../cache/locales.php:71 +#: [compatibility]curl msgid "Install the php5-curl library" msgstr "" -#: ../cache/locales.php:72 +#: [compatibility]imagick msgid "Install the php5-imagick library" msgstr "" -#: ../cache/locales.php:73 +#: [compatibility]gd msgid "Install the php5-gd library" msgstr "" -#: ../cache/locales.php:74 -msgid "Read and write rights for the webserver in Movim's root directory" +#: [compatibility]rights +msgid "Read and write rights for the webserver in Movims root directory" msgstr "" -#: ../cache/locales.php:75 +#: [compatibility]rewrite msgid "The URL Rewriting support is currently disabled" msgstr "" -#: ../cache/locales.php:76 +#: [compatibility]db msgid "The database need to be updated, go to the database panel to fix this" msgstr "" -#: ../cache/locales.php:77 -msgid "" -"WebSocket connection error, check if the Movim Daemon is running and is " -"reacheable" +#: [compatibility]websocket +msgid "WebSocket connection error, check if the Movim Daemon is running and is reachable" msgstr "" -#: ../cache/locales.php:78 -msgid "" -"XMPP Websocket connection error, please check the validity of the URL given " -"in the General Configuration" +#: [compatibility]xmpp_websocket +msgid "XMPP Websocket connection error, please check the validity of the URL given in the General Configuration" msgstr "" -#: ../cache/locales.php:79 +#: [schema]browser msgid "Browser" msgstr "" -#: ../cache/locales.php:80 +#: [schema]movim msgid "Movim Core" msgstr "" -#: ../cache/locales.php:81 +#: [schema]daemon msgid "Movim Daemon" msgstr "" -#: ../cache/locales.php:84 +#: [schema]xmpp msgid "XMPP" msgstr "" -#: ../cache/locales.php:86 -#, php-format -msgid "" -"Here you can register your pod on the official %sMovim API%s and be listed " -"on %sthe pods page%s." +#: [api]info +msgid "Here you can register your pod on the official %sMovim API%s and be listed on %sthe pods page%s." msgstr "" -#: ../cache/locales.php:87 +#: [api]register msgid "Your pod is not registered on the API" msgstr "" -#: ../cache/locales.php:88 +#: [api]registered msgid "Your pod is registered on the API" msgstr "" -#: ../cache/locales.php:89 +#: [api]wait msgid "Your pod is not yet validated" msgstr "" -#: ../cache/locales.php:90 +#: [api]validated msgid "Your pod is validated" msgstr "" -#: ../cache/locales.php:91 -msgid "" -"You asked to be removed from the API, this request will be processed in a " -"couple of hours" +#: [api]unregister +msgid "You asked to be removed from the API, this request will be processed in a couple of hours" msgstr "" -#: ../cache/locales.php:92 ../cache/locales.php:147 +#: [api]conf_updated [config]updated msgid "Configuration updated" msgstr "" -#: ../cache/locales.php:93 +#: [avatar]file msgid "File" msgstr "" -#: ../cache/locales.php:94 +#: [avatar]use_it msgid "Use it" msgstr "" -#: ../cache/locales.php:95 +#: [avatar]webcam msgid "Webcam" msgstr "" -#: ../cache/locales.php:96 +#: [avatar]cheese msgid "Cheese !" msgstr "" -#: ../cache/locales.php:97 +#: [avatar]snapshot msgid "Take a webcam snapshot" msgstr "" -#: ../cache/locales.php:98 +#: [avatar]updated msgid "Avatar Updated" msgstr "" -#: ../cache/locales.php:99 +#: [avatar]not_updated msgid "Avatar Not Updated" msgstr "" -#: ../cache/locales.php:100 ../cache/locales.php:415 -#, php-format +#: [blog]title [feed]title msgid "%s's feed" msgstr "" -#: ../cache/locales.php:101 +#: [blog]empty msgid "This user has not posted anything right now" msgstr "" -#: ../cache/locales.php:102 +#: [title]conferences msgid "Conferences" msgstr "" -#: ../cache/locales.php:103 ../cache/locales.php:193 ../cache/locales.php:217 -#: ../cache/locales.php:468 +#: [title]groups [group]empty_title [menu]groups [page]groups msgid "Groups" msgstr "" -#: ../cache/locales.php:104 +#: [chatroom]add msgid "Add a new Chat Room" msgstr "" -#: ../cache/locales.php:105 ../cache/locales.php:368 +#: [chatroom]id [chatrooms]id msgid "Chat Room ID" msgstr "" -#: ../cache/locales.php:106 ../cache/locales.php:116 ../cache/locales.php:156 -#: ../cache/locales.php:361 ../cache/locales.php:369 ../cache/locales.php:424 +#: [chatroom]name +msgctxt "[chatroom]name" msgid "Name" msgstr "" -#: ../cache/locales.php:107 ../cache/locales.php:157 ../cache/locales.php:371 -#: ../cache/locales.php:425 +#: [chatroom]nickname [general]nickname [chatrooms]nickname msgid "Nickname" msgstr "" -#: ../cache/locales.php:108 +#: [chatroom]autojoin_label msgid "Do you want do join automaticaly this Chat Room ?" msgstr "" -#: ../cache/locales.php:109 ../cache/locales.php:372 +#: [chatroom]bad_id [chatrooms]bad_id msgid "Bad Chatroom ID" msgstr "" -#: ../cache/locales.php:110 ../cache/locales.php:373 +#: [chatroom]empty_name [chatrooms]empty_name msgid "Empty name" msgstr "" -#: ../cache/locales.php:111 ../cache/locales.php:380 +#: [bookmarks]updated msgid "Bookmarks updated" msgstr "" -#: ../cache/locales.php:112 -msgid "An error occured : " +#: [bookmarks]error +msgid "An error occured :" msgstr "" -#: ../cache/locales.php:113 +#: [bookmarks]configure msgid "Configure" msgstr "" -#: ../cache/locales.php:114 +#: [url]add msgid "Add a new URL" msgstr "" -#: ../cache/locales.php:115 +#: [url]url msgid "URL" msgstr "" -#: ../cache/locales.php:117 +#: [url]name +msgctxt "[url]name" +msgid "Name" +msgstr "" + +#: [message]published msgid "Message Published" msgstr "" -#: ../cache/locales.php:118 ../cache/locales.php:138 +#: [message]encrypted msgid "Encrypted message" msgstr "" -#: ../cache/locales.php:119 +#: [message]composing [chats]composing msgid "Composing..." msgstr "" -#: ../cache/locales.php:120 +#: [message]paused [chats]paused msgid "Paused..." msgstr "" -#: ../cache/locales.php:121 +#: [message]gone msgid "Contact gone" msgstr "" -#: ../cache/locales.php:122 -#, php-format +#: [chat]attention msgid "%s needs your attention" msgstr "" -#: ../cache/locales.php:123 +#: [chat]placeholder msgid "Your message here..." msgstr "" -#: ../cache/locales.php:124 +#: [chat]smileys msgid "Smileys" msgstr "" -#: ../cache/locales.php:125 ../cache/locales.php:139 +#: [chat]empty_title [button]chat msgid "Chat" msgstr "" -#: ../cache/locales.php:126 +#: [chat]empty_text msgid "Discuss with your contacts" msgstr "" -#: ../cache/locales.php:127 -msgid "Members" -msgstr "" - -#: ../cache/locales.php:128 ../cache/locales.php:376 -msgid "Connected to the chatroom" -msgstr "" - -#: ../cache/locales.php:129 ../cache/locales.php:377 -msgid "Disconnected from the chatroom" -msgstr "" - -#: ../cache/locales.php:130 ../cache/locales.php:200 ../cache/locales.php:469 -msgid "Configuration" -msgstr "" - -#: ../cache/locales.php:131 -msgid "Configuration saved" -msgstr "" - -#: ../cache/locales.php:132 -msgid "Subject" -msgstr "" - -#: ../cache/locales.php:133 -msgid "Subject changed" -msgstr "" - -#: ../cache/locales.php:134 -msgid "Open a new conversation by clicking on the plus button bellow" -msgstr "" - -#: ../cache/locales.php:135 -msgid "Chat with a contact" -msgstr "" - -#: ../cache/locales.php:136 +#: [chat]frequent [chats]frequent msgid "Frequent contacts" msgstr "" -#: ../cache/locales.php:137 +#: [chatroom]members +msgid "Members" +msgstr "" + +#: [chatroom]connected [chatrooms]connected +msgid "Connected to the chatroom" +msgstr "" + +#: [chatroom]disconnected [chatrooms]disconnected +msgid "Disconnected from the chatroom" +msgstr "" + +#: [chatroom]config [group]configuration [page]configuration +msgid "Configuration" +msgstr "" + +#: [chatroom]config_saved +msgid "Configuration saved" +msgstr "" + +#: [chatroom]subject +msgid "Subject" +msgstr "" + +#: [chatroom]subject_changed +msgid "Subject changed" +msgstr "" + +#: [chats]empty_title +msgid "No chats yet..." +msgstr "" + +#: [chats]empty +msgid "Open a new conversation by clicking on the plus button bellow or visit the Contacts page." +msgstr "" + +#: [chats]add +msgid "Chat with a contact" +msgstr "" + +#: [chats]more msgid "Load more contacts" msgstr "" -#: ../cache/locales.php:140 -msgid "General" -msgstr "" - -#: ../cache/locales.php:141 -msgid "Language" -msgstr "" - -#: ../cache/locales.php:142 -msgid "Roster display" -msgstr "" - -#: ../cache/locales.php:143 -msgid "Show the offline contacts" -msgstr "" - -#: ../cache/locales.php:144 -msgid "Hide the offline contacts" -msgstr "" - -#: ../cache/locales.php:145 -msgid "Appearence" -msgstr "" - -#: ../cache/locales.php:146 -msgid "This configuration is shared wherever you are connected !" -msgstr "" - -#: ../cache/locales.php:148 -msgid "Notify on incoming message" -msgstr "" - -#: ../cache/locales.php:149 -msgid "Use desktop notifications" -msgstr "" - -#: ../cache/locales.php:150 +#: [title]data msgid "Data" msgstr "" -#: ../cache/locales.php:151 +#: [title]cache msgid "Cache" msgstr "" -#: ../cache/locales.php:152 ../cache/locales.php:218 ../cache/locales.php:466 +#: [title]contacts [menu]contacts [page]contacts msgid "Contacts" msgstr "" -#: ../cache/locales.php:153 ../cache/locales.php:480 +#: [title]posts [page]posts msgid "Posts" msgstr "" -#: ../cache/locales.php:154 +#: [title]messages msgid "Messages" msgstr "" -#: ../cache/locales.php:155 ../cache/locales.php:423 +#: [config]general +msgid "General" +msgstr "" + +#: [config]language +msgid "Language" +msgstr "" + +#: [config]roster +msgid "Roster display" +msgstr "" + +#: [config]roster_show +msgid "Show the offline contacts" +msgstr "" + +#: [config]roster_hide +msgid "Hide the offline contacts" +msgstr "" + +#: [config]appearence +msgid "Appearence" +msgstr "" + +#: [config]info +msgid "This configuration is shared wherever you are connected" +msgstr "" + +#: [notifications]message +msgid "Notify on incoming message" +msgstr "" + +#: [notifications]desktop +msgid "Use desktop notifications" +msgstr "" + +#: [general]legend [general]general_title msgid "General Informations" msgstr "" -#: ../cache/locales.php:158 ../cache/locales.php:427 +#: [general]name [public_groups]name [chatrooms]name +msgid "Name" +msgstr "" + +#: [general]date_of_birth msgid "Date of Birth" msgstr "" -#: ../cache/locales.php:159 ../cache/locales.php:428 +#: [general]gender msgid "Gender" msgstr "" -#: ../cache/locales.php:160 ../cache/locales.php:429 +#: [general]marital msgid "Marital Status" msgstr "" -#: ../cache/locales.php:161 ../cache/locales.php:426 +#: [general]email msgid "Email" msgstr "" -#: ../cache/locales.php:162 ../cache/locales.php:430 +#: [general]website msgid "Website" msgstr "" -#: ../cache/locales.php:163 ../cache/locales.php:431 +#: [general]about msgid "About Me" msgstr "" -#: ../cache/locales.php:164 +#: [general]accounts msgid "Other Accounts" msgstr "" -#: ../cache/locales.php:165 +#: [general]tune msgid "Is Listening" msgstr "" -#: ../cache/locales.php:166 ../cache/locales.php:432 +#: [position]legend [position]position_title msgid "Geographic Position" msgstr "" -#: ../cache/locales.php:167 ../cache/locales.php:433 +#: [position]locality msgid "Locality" msgstr "" -#: ../cache/locales.php:168 ../cache/locales.php:434 +#: [position]country msgid "Country" msgstr "" -#: ../cache/locales.php:169 +#: [mood]title msgid "Mood" msgstr "" -#: ../cache/locales.php:170 +#: [mood]im msgid "I'm " msgstr "" -#: ../cache/locales.php:171 +#: [listen]title msgid "Listening" msgstr "" -#: ../cache/locales.php:173 +#: [last]title msgid "Last seen" msgstr "" -#: ../cache/locales.php:174 +#: [client]title msgid "Client Informations" msgstr "" -#: ../cache/locales.php:175 +#: [explore]last_registered msgid "Last registered" msgstr "" -#: ../cache/locales.php:176 +#: [explore]explore msgid "Find some new friends" msgstr "" -#: ../cache/locales.php:177 ../cache/locales.php:533 +#: [edit]title [button]edit msgid "Edit" msgstr "" -#: ../cache/locales.php:178 +#: [edit]alias msgid "Alias" msgstr "" -#: ../cache/locales.php:179 +#: [edit]group msgid "Group" msgstr "" -#: ../cache/locales.php:180 ../cache/locales.php:400 +#: [edit]updated [roster]updated msgid "Contact updated" msgstr "" -#: ../cache/locales.php:181 +#: [delete]title msgid "Are you sure?" msgstr "" -#: ../cache/locales.php:182 -msgid "" -"You are going to delete one of your contacts, please confirm your action" +#: [delete]text +msgid "You are going to delete one of your contacts, please confirm your action" msgstr "" -#: ../cache/locales.php:183 -#, php-format +#: [age]years msgid "%s years" msgstr "" -#: ../cache/locales.php:184 +#: [blog]last msgid "Last public post" msgstr "" -#: ../cache/locales.php:185 +#: [subscription]to +msgid "You can see this contact status" +msgstr "" + +#: [subscription]to_button +msgid "Share my status" +msgstr "" + +#: [subscription]to_text +msgid "But this contact cannot see yours" +msgstr "" + +#: [subscription]from +msgid "You are not subscribed to this contact" +msgstr "" + +#: [subscription]from_button +msgid "Ask to subscribe" +msgstr "" + +#: [subscription]from_text +msgid "But this contact can still see if you are online" +msgstr "" + +#: [subscription]nil +msgid "No subscriptions" +msgstr "" + +#: [subscription]nil_button +msgid "Invite" +msgstr "" + +#: [subscription]nil_text +msgid "This contact is in your contact list but there is no subscriptions between the two accounts" +msgstr "" + +#: [group]subscribe msgid "Subscribe" msgstr "" -#: ../cache/locales.php:186 +#: [group]subscribed msgid "Subscribed" msgstr "" -#: ../cache/locales.php:187 +#: [group]unsubscribe msgid "Unsubscribe" msgstr "" -#: ../cache/locales.php:188 +#: [group]unsubscribe_text msgid "You are going to unsubscribe from this Group" msgstr "" -#: ../cache/locales.php:189 +#: [group]unsubscribed msgid "Unsubscribed" msgstr "" -#: ../cache/locales.php:190 +#: [group]share_label msgid "Make your membership to this group public to your friends" msgstr "" -#: ../cache/locales.php:191 +#: [group]label_label msgid "Give a label for this group" msgstr "" -#: ../cache/locales.php:192 +#: [group]sure msgid "Are you sure ?" msgstr "" -#: ../cache/locales.php:194 +#: [group]empty_text msgid "Discover, follow and share" msgstr "" -#: ../cache/locales.php:195 +#: [group]empty msgid "Something bad happened to this group" msgstr "" -#: ../cache/locales.php:196 +#: [group]config_saved msgid "Group configuration saved" msgstr "" -#: ../cache/locales.php:197 +#: [group]delete_title msgid "Delete the group" msgstr "" -#: ../cache/locales.php:198 -msgid "" -"You are going to delete the following group. Please confirm your action." +#: [group]delete_text +msgid "You are going to delete the following group. Please confirm your action." msgstr "" -#: ../cache/locales.php:199 -msgid "" -"It seems that this group doesn't exists anymore. Do you want to remove it " -"from your subscriptions?" +#: [group]delete_clean_text +msgid "It seems that this group doesn't exists anymore. Do you want to remove it from your subscriptions?" msgstr "" -#: ../cache/locales.php:201 ../cache/locales.php:408 +#: [group]counter +msgid "%s groups on this server" +msgstr "" + +#: [group]subscriptions [statistics]subscriptions msgid "Subscriptions" msgstr "" -#: ../cache/locales.php:202 ../cache/locales.php:290 +#: [group]servers +msgid "Groups servers" +msgstr "" + +#: [group]search_server +msgid "Search for a new server" +msgstr "" + +#: [group]help_info1 +msgid "Groups are the perfect way to share posts about topics that you like with all the other Movim's users." +msgstr "" + +#: [group]help_info2 +msgid "Choose a server and a Group and subscribe to it using the %s button in the header. You can also create a new one using the %s button." +msgstr "" + +#: [group]help_info3 +msgid "Done? You can now publish a new post in the Group by using the %s button." +msgstr "" + +#: [group]help_info4 +msgid "You will find a list of all your subscribed Groups in My Subscriptions and receive instantly all the new incoming posts in the %sNews%s page." +msgstr "" + +#: [groups]empty_title msgid "Hello" msgstr "" -#: ../cache/locales.php:203 ../cache/locales.php:225 ../cache/locales.php:291 +#: [groups]contact_post [hello]contact_post [menu]contact_post msgid "Contact post" msgstr "" -#: ../cache/locales.php:204 -msgid "" -"You don't have any subscriptions yet, select a group server above to start " -"exploring." +#: [groups]empty_text1 +msgid "You don't have any subscriptions yet, select a group server above to start exploring." msgstr "" -#: ../cache/locales.php:205 +#: [groups]empty_text2 msgid "Subscribe to your favorite feeds by bookmarking them." msgstr "" -#: ../cache/locales.php:206 +#: [groups]subscriptions msgid "My Subscriptions" msgstr "" -#: ../cache/locales.php:207 +#: [groups]add msgid "Create a new Group" msgstr "" -#: ../cache/locales.php:208 +#: [groups]name msgid "Group name" msgstr "" -#: ../cache/locales.php:209 +#: [groups]name_example msgid "My Little Pony - Fan Club" msgstr "" -#: ../cache/locales.php:210 +#: [groups]created msgid "Group created successfully" msgstr "" -#: ../cache/locales.php:211 +#: [groups]deleted msgid "Group deleted successfully" msgstr "" -#: ../cache/locales.php:212 +#: [groups]name_error msgid "Please provide a valid group name (4 characters minimum)" msgstr "" -#: ../cache/locales.php:213 +#: [groups]no_creation msgid "You cannot create a new Group on this server" msgstr "" -#: ../cache/locales.php:214 -#, php-format +#: [groups]sub msgid "%s subscribers" msgstr "" -#: ../cache/locales.php:215 -#, php-format +#: [groups]num msgid "%s posts" msgstr "" -#: ../cache/locales.php:216 +#: [groups]disco_error +msgid "This server doesn't exists" +msgstr "" + +#: [menu]all msgid "All" msgstr "" -#: ../cache/locales.php:219 +#: [menu]refresh msgid "Refresh all the streams" msgstr "" -#: ../cache/locales.php:220 ../cache/locales.php:402 -msgid "Search" +#: [roster]search +msgid "Search in your contacts" msgstr "" -#: ../cache/locales.php:221 +#: [hello]active_contacts +msgid "Active contacts" +msgstr "" + +#: [hello]chat msgid "Go on the Chat page" msgstr "" -#: ../cache/locales.php:222 -msgid "Read all theses articles on the News page" -msgstr "" - -#: ../cache/locales.php:223 -msgid "Visit your public blog" -msgstr "" - -#: ../cache/locales.php:224 -msgid "See your public posts and share them with all your contacts" -msgstr "" - -#: ../cache/locales.php:226 -msgid "Universal share button" -msgstr "" - -#: ../cache/locales.php:227 -msgid "" -"Bookmark or drag and drop the following button in your toolbar and use it on " -"all the pages you want to share on Movim" -msgstr "" - -#: ../cache/locales.php:228 -msgid "Share on Movim" -msgstr "" - -#: ../cache/locales.php:229 -msgid "Frequently Asked Questions" -msgstr "" - -#: ../cache/locales.php:230 -msgid "What do the little banners refer to ?" -msgstr "" - -#: ../cache/locales.php:231 -msgid "" -"Thanks to these five little banners, you can quickly identitfy the level of " -"confdentiality applied to the information you provide." -msgstr "" - -#: ../cache/locales.php:232 -msgid "White, only you can see the information" -msgstr "" - -#: ../cache/locales.php:233 -msgid "Green, you have chosen some contacts who can see your information" -msgstr "" - -#: ../cache/locales.php:234 -msgid "Orange, all your contact list can see your information" -msgstr "" - -#: ../cache/locales.php:235 -msgid "Red, everybody in the XMPP network can see your information" -msgstr "" - -#: ../cache/locales.php:236 -msgid "Black, the whole Internet can see your information" -msgstr "" - -#: ../cache/locales.php:237 -msgid "Looking for some documentation ?" -msgstr "" - -#: ../cache/locales.php:238 -msgid "Read the Wiki" -msgstr "" - -#: ../cache/locales.php:239 -msgid "Talk with us by email ?" -msgstr "" - -#: ../cache/locales.php:240 -msgid "Join the Mailing List" -msgstr "" - -#: ../cache/locales.php:241 -msgid "Chat with the team ?" -msgstr "" - -#: ../cache/locales.php:242 -msgid "Join the Chatroom" -msgstr "" - -#: ../cache/locales.php:243 -msgid "Location node created" -msgstr "" - -#: ../cache/locales.php:244 -msgid "Bookmark node created" -msgstr "" - -#: ../cache/locales.php:245 -msgid "Profile node created" -msgstr "" - -#: ../cache/locales.php:246 -msgid "Avatar node created" -msgstr "" - -#: ../cache/locales.php:247 -msgid "Subscriptions node created" -msgstr "" - -#: ../cache/locales.php:248 -msgid "Microblog node created" -msgstr "" - -#: ../cache/locales.php:249 -msgid "Location" -msgstr "" - -#: ../cache/locales.php:250 -msgid "Wrong position" -msgstr "" - -#: ../cache/locales.php:251 -msgid "Location updated" -msgstr "" - -#: ../cache/locales.php:252 -msgid "Update my position" -msgstr "" - -#: ../cache/locales.php:253 -msgid "Wrong username" -msgstr "" - -#: ../cache/locales.php:254 -msgid "Invalid JID" -msgstr "" - -#: ../cache/locales.php:255 -msgid "Empty Challenge from the server" -msgstr "" - -#: ../cache/locales.php:256 -msgid "XMPP Domain error, your account is not a correct Jabber ID" -msgstr "" - -#: ../cache/locales.php:257 -msgid "Some data are missing !" -msgstr "" - -#: ../cache/locales.php:258 -msgid "Wrong password" -msgstr "" - -#: ../cache/locales.php:259 -msgid "Internal server error" -msgstr "" - -#: ../cache/locales.php:260 -msgid "Session error" -msgstr "" - -#: ../cache/locales.php:261 -msgid "Account successfully created" -msgstr "" - -#: ../cache/locales.php:262 ../cache/locales.php:271 -msgid "Your XMPP server is unauthorized" -msgstr "" - -#: ../cache/locales.php:263 -msgid "The server takes too much time to respond" -msgstr "" - -#: ../cache/locales.php:264 -msgid "Your web browser is too old to use with Movim." -msgstr "" - -#: ../cache/locales.php:265 -msgid "" -"Movim cannot talk with the server, please try again later (Websocket " -"connection error)" -msgstr "" - -#: ../cache/locales.php:266 -msgid "Impossible login" -msgstr "" - -#: ../cache/locales.php:267 -msgid "Oops!" -msgstr "" - -#: ../cache/locales.php:268 ../cache/locales.php:449 ../cache/locales.php:455 -msgid "Unknown error" -msgstr "" - -#: ../cache/locales.php:269 -msgid "Invalid username format" -msgstr "" - -#: ../cache/locales.php:270 -msgid "Invalid password format" -msgstr "" - -#: ../cache/locales.php:272 -msgid "A Movim session is already open on an other device" -msgstr "" - -#: ../cache/locales.php:273 -msgid "Movim failed to authenticate. You entered wrong data" -msgstr "" - -#: ../cache/locales.php:274 -msgid "Authentication mechanism not supported by Movim" -msgstr "" - -#: ../cache/locales.php:275 -msgid "The XMPP authentification failed" -msgstr "" - -#: ../cache/locales.php:276 -#, php-format -msgid "" -"You can login with Facebook (chat only) using %syour.id@chat.facebook.com%s " -"and your password" -msgstr "" - -#: ../cache/locales.php:277 -#, php-format -msgid "%sGmail accounts are also compatible%s but are not fully supported" -msgstr "" - -#: ../cache/locales.php:278 -msgid "You can login using your favorite Jabber account" -msgstr "" - -#: ../cache/locales.php:279 -msgid "or with our demonstration account" -msgstr "" - -#: ../cache/locales.php:280 ../cache/locales.php:435 -msgid "Accounts" -msgstr "" - -#: ../cache/locales.php:281 -msgid "My address" -msgstr "" - -#: ../cache/locales.php:283 -msgid "Create one !" -msgstr "" - -#: ../cache/locales.php:284 -msgid "No account yet ?" -msgstr "" - -#: ../cache/locales.php:285 -msgid "Another account" -msgstr "" - -#: ../cache/locales.php:286 -msgid "You can login with accounts from theses servers" -msgstr "" - -#: ../cache/locales.php:287 -msgid "Connected" -msgstr "" - -#: ../cache/locales.php:288 -msgid "Population" -msgstr "" - -#: ../cache/locales.php:289 -msgid "Bad nickname (between 4 and 40 characters)" -msgstr "" - -#: ../cache/locales.php:292 -msgid "" -"Welcome on your news feed, here you will see all the posts published in the " -"groups you have subscribed." -msgstr "" - -#: ../cache/locales.php:293 -msgid "Refreshing all the streams" -msgstr "" - -#: ../cache/locales.php:294 -msgid "This post is public" -msgstr "" - -#: ../cache/locales.php:295 -msgid "Manage your members" -msgstr "" - -#: ../cache/locales.php:296 -msgid "Get the members" -msgstr "" - -#: ../cache/locales.php:297 -msgid "Affiliations saved" -msgstr "" - -#: ../cache/locales.php:298 -msgid "Manage your subscriptions" -msgstr "" - -#: ../cache/locales.php:299 -msgid "Manage the subscriptions" -msgstr "" - -#: ../cache/locales.php:300 -msgid "Get the subscriptions" -msgstr "" - -#: ../cache/locales.php:301 -msgid "Subscriptions saved" -msgstr "" - -#: ../cache/locales.php:302 -msgid "Pending Invitations" -msgstr "" - -#: ../cache/locales.php:303 -#, php-format -msgid "%s wants to talk with you" -msgstr "" - -#: ../cache/locales.php:304 -msgid "Manage" -msgstr "" - -#: ../cache/locales.php:305 ../cache/locales.php:338 -msgid "News Feed" -msgstr "" - -#: ../cache/locales.php:306 ../cache/locales.php:339 -msgid "Discover and register to the groups you are interested in" -msgstr "" - -#: ../cache/locales.php:307 ../cache/locales.php:340 ../cache/locales.php:482 -msgid "Preview" -msgstr "" - -#: ../cache/locales.php:308 ../cache/locales.php:341 ../cache/locales.php:478 -msgid "Help" -msgstr "" - -#: ../cache/locales.php:309 ../cache/locales.php:342 -msgid "More help" -msgstr "" - -#: ../cache/locales.php:310 ../cache/locales.php:343 -msgid "Markdown syntax manual" -msgstr "" - -#: ../cache/locales.php:311 ../cache/locales.php:344 ../cache/locales.php:681 -msgid "Title" -msgstr "" - -#: ../cache/locales.php:312 ../cache/locales.php:345 -msgid "Content" -msgstr "" - -#: ../cache/locales.php:313 ../cache/locales.php:346 -msgid "Link" -msgstr "" - -#: ../cache/locales.php:314 ../cache/locales.php:347 -msgid "Tags" -msgstr "" - -#: ../cache/locales.php:315 ../cache/locales.php:348 -msgid "Please enter a valid url" -msgstr "" - -#: ../cache/locales.php:316 ../cache/locales.php:349 -msgid "No content to preview" -msgstr "" - -#: ../cache/locales.php:317 ../cache/locales.php:350 ../cache/locales.php:687 -msgid "No content" -msgstr "" - -#: ../cache/locales.php:318 ../cache/locales.php:351 -msgid "Post published" -msgstr "" - -#: ../cache/locales.php:319 ../cache/locales.php:352 -msgid "Post deleted" -msgstr "" - -#: ../cache/locales.php:320 ../cache/locales.php:353 -msgid "This picture will be added to your gallery" -msgstr "" - -#: ../cache/locales.php:321 ../cache/locales.php:354 -msgid "What's Hot" -msgstr "" - -#: ../cache/locales.php:322 ../cache/locales.php:355 -msgid "New post" -msgstr "" - -#: ../cache/locales.php:323 ../cache/locales.php:357 -msgid "" -"You can also use services like Imgur or Flickr to host your picture and " -"paste the link here." -msgstr "" - -#: ../cache/locales.php:324 -#, php-format -msgid "This is a re-post from %s" -msgstr "" - -#: ../cache/locales.php:325 -#, php-format -msgid "See %s profile" -msgstr "" - -#: ../cache/locales.php:326 -msgid "Publish this post on your public feed?" -msgstr "" - -#: ../cache/locales.php:327 -msgid "Post published on your blog" -msgstr "" - -#: ../cache/locales.php:328 -msgid "Post removed from your blog" -msgstr "" - -#: ../cache/locales.php:329 ../cache/locales.php:701 -msgid "Delete this post" -msgstr "" - -#: ../cache/locales.php:330 -msgid "You are going to delete this post, please confirm your action" -msgstr "" - -#: ../cache/locales.php:331 -msgid "Comments disabled" -msgstr "" - -#: ../cache/locales.php:332 -msgid "Comment published" -msgstr "" - -#: ../cache/locales.php:333 -msgid "Disconnect" -msgstr "" - -#: ../cache/locales.php:334 -msgid "Your status here !" -msgstr "" - -#: ../cache/locales.php:335 -msgid "Status updated" -msgstr "" - -#: ../cache/locales.php:336 -msgid "Status" -msgstr "" - -#: ../cache/locales.php:337 -msgid "Presence" -msgstr "" - -#: ../cache/locales.php:356 -msgid "Publish" -msgstr "" - -#: ../cache/locales.php:358 -msgid "You cannot publish a post on this Group" -msgstr "" - -#: ../cache/locales.php:359 -msgid "" -"Some fields have been filled in. Do you still want to go back and loose " -"their content?" -msgstr "" - -#: ../cache/locales.php:360 -msgid "Shared" -msgstr "" - -#: ../cache/locales.php:362 -#, php-format -msgid "%s has been added to your public groups" -msgstr "" - -#: ../cache/locales.php:363 -#, php-format -msgid "%s has been removed from your public groups" -msgstr "" - -#: ../cache/locales.php:364 -msgid "Add a chatroom" -msgstr "" - -#: ../cache/locales.php:365 -msgid "You don't have any chatroom yet." -msgstr "" - -#: ../cache/locales.php:366 -msgid "Add one by clicking on the add button in the header." -msgstr "" - -#: ../cache/locales.php:367 -msgid "Chatrooms" -msgstr "" - -#: ../cache/locales.php:370 -msgid "My Favorite Room" -msgstr "" - -#: ../cache/locales.php:374 -msgid "Remove a chatroom" -msgstr "" - -#: ../cache/locales.php:375 -msgid "" -"You are going to remove the following chatroom. Please confirm your action." -msgstr "" - -#: ../cache/locales.php:378 -msgid "Users in the room" -msgstr "" - -#: ../cache/locales.php:379 -msgid "Please enter a correct nickname (6 to 40 characters)" -msgstr "" - -#: ../cache/locales.php:381 -msgid "Public chatroom" -msgstr "" - -#: ../cache/locales.php:382 -msgid "Please provide a room address" -msgstr "" - -#: ../cache/locales.php:383 -msgid "You are currently logued as an anonymous user." -msgstr "" - -#: ../cache/locales.php:384 -msgid "" -"You can join using your own account or create one on the login page by " -"loging out using the cross in the top-right corner." -msgstr "" - -#: ../cache/locales.php:385 -#, php-format -msgid "Login on %s" -msgstr "" - -#: ../cache/locales.php:386 -msgid "Your nickname" -msgstr "" - -#: ../cache/locales.php:387 -msgid "Ungrouped" -msgstr "" - -#: ../cache/locales.php:388 -msgid "Show disconnected contacts" -msgstr "" - -#: ../cache/locales.php:389 -msgid "Hide disconnected contacts" -msgstr "" - -#: ../cache/locales.php:390 -#, php-format -msgid "Show group %s" -msgstr "" - -#: ../cache/locales.php:391 -#, php-format -msgid "Hide group %s" -msgstr "" - -#: ../cache/locales.php:392 -msgid "Please enter a valid Jabber ID" -msgstr "" - -#: ../cache/locales.php:393 -msgid "" -"No contacts ? You can add one using the + button bellow or going to the " -"Explore page" -msgstr "" - -#: ../cache/locales.php:394 -msgid "Show/Hide" -msgstr "" - -#: ../cache/locales.php:395 -msgid "Enter the Jabber ID of your contact." -msgstr "" - -#: ../cache/locales.php:396 -msgid "Press enter to validate." -msgstr "" - -#: ../cache/locales.php:397 -msgid "JID" -msgstr "" - -#: ../cache/locales.php:398 -msgid "Results" -msgstr "" - -#: ../cache/locales.php:399 -msgid "Contact added" -msgstr "" - -#: ../cache/locales.php:401 -msgid "Contact deleted" -msgstr "" - -#: ../cache/locales.php:403 -msgid "This is not a valid url" -msgstr "" - -#: ../cache/locales.php:404 -msgid "Sharing the URL" -msgstr "" - -#: ../cache/locales.php:405 -msgid "Statistics" -msgstr "" - -#: ../cache/locales.php:406 -msgid "Since" -msgstr "" - -#: ../cache/locales.php:407 -msgid "Sessions" -msgstr "" - -#: ../cache/locales.php:409 -msgid "Monthly Subscriptions" -msgstr "" - -#: ../cache/locales.php:410 -msgid "Monthly Subscriptions Cumulated" -msgstr "" - -#: ../cache/locales.php:412 -msgid "" -"Movim is a decentralized social network, before creating a new account you " -"need to choose a server to register." -msgstr "" - -#: ../cache/locales.php:413 -msgid "Your server here ?" -msgstr "" - -#: ../cache/locales.php:414 -msgid "Contact us to add yours to the officially supported servers list" -msgstr "" - -#: ../cache/locales.php:416 -msgid "No public feed for this contact" -msgstr "" - -#: ../cache/locales.php:417 -msgid "No contact specified" -msgstr "" - -#: ../cache/locales.php:418 ../cache/locales.php:473 -msgid "Profile" -msgstr "" - -#: ../cache/locales.php:419 -msgid "Profile Updated" -msgstr "" - -#: ../cache/locales.php:420 -msgid "Profile Not Updated" -msgstr "" - -#: ../cache/locales.php:421 -msgid "Your profile is now public" -msgstr "" - -#: ../cache/locales.php:422 -msgid "Your profile is now restricted" -msgstr "" - -#: ../cache/locales.php:436 -msgid "Twitter" -msgstr "" - -#: ../cache/locales.php:437 -msgid "Skype" -msgstr "" - -#: ../cache/locales.php:438 -msgid "Yahoo" -msgstr "" - -#: ../cache/locales.php:439 -msgid "Privacy Level" -msgstr "" - -#: ../cache/locales.php:440 -msgid "Is this profile public ?" -msgstr "" - -#: ../cache/locales.php:441 -msgid "" -"Please pay attention ! By making your profile public, all the information " -"listed above will be available for all the Movim users and on the whole " -"Internet." -msgstr "" - -#: ../cache/locales.php:442 -msgid "Call" -msgstr "" - -#: ../cache/locales.php:443 -msgid "Hang up" -msgstr "" - -#: ../cache/locales.php:444 -msgid "Connection" -msgstr "" - -#: ../cache/locales.php:445 ../cache/locales.php:451 -msgid "Hung up" -msgstr "" - -#: ../cache/locales.php:446 ../cache/locales.php:452 -msgid "Your contact is busy" -msgstr "" - -#: ../cache/locales.php:447 ../cache/locales.php:453 -msgid "Declined" -msgstr "" - -#: ../cache/locales.php:448 ../cache/locales.php:454 -msgid "Remote application incompatible" -msgstr "" - -#: ../cache/locales.php:450 ../cache/locales.php:456 -msgid "Is calling you" -msgstr "" - -#: ../cache/locales.php:457 -msgid "You don't have javascript enabled. Good luck with that." -msgstr "" - -#: ../cache/locales.php:458 -msgid "" -"Movim is a kickass distributed social networking platform that protect your " -"privacy an comes with a set of awesome features." -msgstr "" - -#: ../cache/locales.php:459 -msgid "Administration" -msgstr "" - -#: ../cache/locales.php:460 -msgid "Home" -msgstr "" - -#: ../cache/locales.php:461 -msgid "Discover" -msgstr "" - -#: ../cache/locales.php:462 -msgid "Explore" -msgstr "" - -#: ../cache/locales.php:463 -msgid "Account Creation" -msgstr "" - -#: ../cache/locales.php:464 +#: [hello]news [page]news msgid "News" msgstr "" -#: ../cache/locales.php:465 -msgid "Avatar" +#: [hello]news_page +msgid "Read all theses articles on the News page" msgstr "" -#: ../cache/locales.php:467 -msgid "Chats" +#: [hello]blog_title +msgid "Visit your public blog" msgstr "" -#: ../cache/locales.php:470 -msgid "Server" +#: [hello]blog_text +msgid "See your public posts and share them with all your contacts" msgstr "" -#: ../cache/locales.php:471 -msgid "Public Groups" +#: [hello]share_title +msgid "Universal share button" msgstr "" -#: ../cache/locales.php:472 -msgid "Viewer" +#: [hello]share_text +msgid "Bookmark or drag and drop the following button in your toolbar and use it on all the pages you want to share on Movim" msgstr "" -#: ../cache/locales.php:474 -msgid "Media" +#: [hello]share_button +msgid "Share on Movim" msgstr "" -#: ../cache/locales.php:475 -msgid "Blog" +#: [help]faq +msgid "Frequently Asked Questions" msgstr "" -#: ../cache/locales.php:476 -msgid "About" +#: [banner]title +msgid "What do the little banners refer to ?" msgstr "" -#: ../cache/locales.php:477 -msgid "Login" +#: [banner]info1 +msgid "Thanks to these five little banners, you can quickly identitfy the level of confdentiality applied to the information you provide." msgstr "" -#: ../cache/locales.php:479 -msgid "Feed" +#: [banner]white +msgid "White, only you can see the information" msgstr "" -#: ../cache/locales.php:481 -msgid "Gallery" +#: [banner]green +msgid "Green, you have chosen some contacts who can see your information" msgstr "" -#: ../cache/locales.php:483 -msgid "Visio-conference" +#: [banner]orange +msgid "Orange, all your contact list can see your information" msgstr "" -#: ../cache/locales.php:484 -msgid "Pods" +#: [banner]red +msgid "Red, everybody in the XMPP network can see your information" msgstr "" -#: ../cache/locales.php:485 -msgid "Share" +#: [banner]black +msgid "Black, the whole Internet can see your information" msgstr "" -#: ../cache/locales.php:486 -msgid "Room" +#: [wiki]question +msgid "Looking for some documentation ?" msgstr "" -#: ../cache/locales.php:487 -#, php-format -msgid "Error: %s" +#: [wiki]button +msgid "Read the Wiki" msgstr "" -#: ../cache/locales.php:488 -#, php-format -msgid "Cannot load file '%s'" -msgstr "নথি '%s' লোড করা যাচ্ছে না" - -#: ../cache/locales.php:489 -#, php-format -msgid "Route error, please set all the parameters for the page %s" +#: [ml]question +msgid "Talk with us by email ?" msgstr "" -#: ../cache/locales.php:490 -#, php-format -msgid "Requested widget '%s' doesn't exist." +#: [ml]button +msgid "Join the Mailing List" msgstr "" -#: ../cache/locales.php:491 -#, php-format -msgid "Requested event '%s' not registered." +#: [chatroom]question +msgid "Chat with the team ?" msgstr "" -#: ../cache/locales.php:492 -msgid "Whoops!" +#: [chatroom]button +msgid "Join the Chatroom" msgstr "" -#: ../cache/locales.php:493 -msgid "It seem that you don't have any pictures here?" +#: [init]location +msgid "Location node created" msgstr "" -#: ../cache/locales.php:494 -msgid "You can try to upload a couple by going to the Media page" +#: [init]bookmark +msgid "Bookmark node created" msgstr "" -#: ../cache/locales.php:495 -#, php-format -msgid "%s - About" +#: [init]vcard4 +msgid "Profile node created" msgstr "" -#: ../cache/locales.php:496 -#, php-format -msgid "%s - Account" +#: [init]avatar +msgid "Avatar node created" msgstr "" -#: ../cache/locales.php:497 -#, php-format -msgid "%s - Administration Panel" +#: [init]subscriptions +msgid "Subscriptions node created" msgstr "" -#: ../cache/locales.php:498 -#, php-format -msgid "%s - Blog" +#: [init]microblog +msgid "Microblog node created" msgstr "" -#: ../cache/locales.php:499 -#, php-format -msgid "%s - Configuration" +#: [location]title +msgid "Location" msgstr "" -#: ../cache/locales.php:500 -#, php-format -msgid "%s - Discover" +#: [location]wrong_postition +msgid "Wrong position" msgstr "" -#: ../cache/locales.php:501 -#, php-format -msgid "%s - Explore" +#: [location]updated +msgid "Location updated" msgstr "" -#: ../cache/locales.php:502 -#, php-format -msgid "%s - Help Page" +#: [location]update +msgid "Update my position" msgstr "" -#: ../cache/locales.php:503 -#, php-format -msgid "%s - Login to Movim" +#: [login_anonymous]bad_username +msgid "Bad nickname (between 4 and 40 characters)" msgstr "" -#: ../cache/locales.php:504 -#, php-format -msgid "%s - Welcome to Movim" +#: [error]username +msgid "Wrong username" msgstr "" -#: ../cache/locales.php:505 -#, php-format -msgid "%s - Media" +#: [error]jid +msgid "Invalid JID" msgstr "" -#: ../cache/locales.php:506 -#, php-format -msgid "%s - News" +#: [error]empty_challenge +msgid "Empty Challenge from the server" msgstr "" -#: ../cache/locales.php:507 -#, php-format -msgid "%s - Group Configuration" +#: [error]dns +msgid "XMPP Domain error, your account is not a correct Jabber ID" msgstr "" -#: ../cache/locales.php:508 -#, php-format -msgid "%s - Group" +#: [error]data_missings +msgid "Some data are missing !" msgstr "" -#: ../cache/locales.php:509 -#, php-format -msgid "%s - 404" +#: [error]wrong_password +msgid "Wrong password" msgstr "" -#: ../cache/locales.php:510 -#, php-format -msgid "%s - Profile" +#: [error]internal +msgid "Internal server error" msgstr "" -#: ../cache/locales.php:511 -#, php-format -msgid "%s - Server" +#: [error]session +msgid "Session error" msgstr "" -#: ../cache/locales.php:512 -msgid "Validate" +#: [error]account_created +msgid "Account successfully created" msgstr "" -#: ../cache/locales.php:513 -msgid "Refresh" +#: [error]xmpp_unauthorized +msgctxt "[error]xmpp_unauthorized" +msgid "Your XMPP server is unauthorized" msgstr "" -#: ../cache/locales.php:514 -msgid "Add" +#: [error]mec_error +msgid "The server takes too much time to respond" msgstr "" -#: ../cache/locales.php:515 -msgid "Delete" +#: [error]too_old +msgid "Your web browser is too old to use with Movim." msgstr "" -#: ../cache/locales.php:516 -msgid "Remove" +#: [error]websocket +msgid "Movim cannot talk with the server, please try again later (Websocket connection error)" msgstr "" -#: ../cache/locales.php:517 -msgid "Cancel" +#: [error]impossible +msgid "Impossible login" msgstr "" -#: ../cache/locales.php:518 -msgid "Close" +#: [error]title +msgid "Oops!" msgstr "" -#: ../cache/locales.php:519 -msgid "Update" +#: [error]default [visio]unknown_error +msgid "Unknown error" msgstr "" -#: ../cache/locales.php:520 -msgid "Updating" +#: [error]login_format +msgid "Invalid username format" msgstr "" -#: ../cache/locales.php:521 +#: [error]password_format +msgid "Invalid password format" +msgstr "" + +#: [error]unauthorized +msgctxt "[error]unauthorized" +msgid "Your XMPP server is unauthorized" +msgstr "" + +#: [error]conflict +msgid "A Movim session is already open on an other device" +msgstr "" + +#: [error]wrong_account +msgid "Movim failed to authenticate. You entered wrong data" +msgstr "" + +#: [error]mechanism +msgid "Authentication mechanism not supported by Movim" +msgstr "" + +#: [error]fail_auth +msgid "The XMPP authentification failed" +msgstr "" + +#: [account]title [accounts]accounts_title +msgid "Accounts" +msgstr "" + +#: [form]username +msgid "My address" +msgstr "" + +#: [form]create_one +msgid "Create one !" +msgstr "" + +#: [form]another_account +msgid "Another account" +msgstr "" + +#: [form]no_account +msgid "No account yet ?" +msgstr "" + +#: [form]whitelist.info +msgid "You can login with accounts from theses servers" +msgstr "" + +#: [form]connected +msgid "Connected" +msgstr "" + +#: [form]population +msgid "Population" +msgstr "" + +#: [menu]empty_title +msgid "No news yet..." +msgstr "" + +#: [menu]empty +msgid "Welcome on your news feed, here you will see all the posts published by your contacts and in the groups you have subscribed." +msgstr "" + +#: [menu]refresh +msgid "Refreshing all the streams" +msgstr "" + +#: [menu]public +msgid "This post is public" +msgstr "" + +#: [affiliations]title +msgid "Manage your members" +msgstr "" + +#: [affiliations]get +msgid "Get the members" +msgstr "" + +#: [affiliations]saved +msgid "Affiliations saved" +msgstr "" + +#: [subscriptions]title +msgid "Manage your subscriptions" +msgstr "" + +#: [subscriptions]info +msgid "Manage the subscriptions" +msgstr "" + +#: [subscriptions]get +msgid "Get the subscriptions" +msgstr "" + +#: [subscriptions]saved +msgid "Subscriptions saved" +msgstr "" + +#: [notifs]title +msgid "Pending Invitations" +msgstr "" + +#: [notifs]wants_to_talk +msgid "%s wants to talk with you" +msgstr "" + +#: [notifs]manage +msgid "Manage" +msgstr "" + +#: [post]news_feed +msgid "News Feed" +msgstr "" + +#: [post]placeholder +msgid "Discover and register to the groups you are interested in" +msgstr "" + +#: [post]preview [page]preview +msgid "Preview" +msgstr "" + +#: [post]help [page]help +msgid "Help" +msgstr "" + +#: [post]help_more +msgid "More help" +msgstr "" + +#: [post]help_manual +msgid "Markdown syntax manual" +msgstr "" + +#: [post]title +msgid "Title" +msgstr "" + +#: [post]content +msgid "Content" +msgstr "" + +#: [post]link +msgid "Link" +msgstr "" + +#: [post]tags +msgid "Tags" +msgstr "" + +#: [post]valid_url [publish]valid_url +msgid "Please enter a valid url" +msgstr "" + +#: [post]no_content_preview [publish]no_content_preview +msgid "No content to preview" +msgstr "" + +#: [post]no_content [publish]no_content [post]empty +msgid "No content" +msgstr "" + +#: [post]published +msgid "Post published" +msgstr "" + +#: [post]deleted +msgid "Post deleted" +msgstr "" + +#: [post]gallery +msgid "This picture will be added to your gallery" +msgstr "" + +#: [post]hot +msgid "What's Hot" +msgstr "" + +#: [post]hot_text +msgid "Posts recently published in Groups that you are not subscribed (yet)" +msgstr "" + +#: [post]new [publish]new +msgid "New post" +msgstr "" + +#: [post]embed_tip +msgid "You can also use services like Imgur or Flickr to host your picture and paste the link here." +msgstr "" + +#: [post]repost +msgid "This is a re-post from %s" +msgstr "" + +#: [post]repost_profile +msgid "See %s profile" +msgstr "" + +#: [post]public +msgid "Publish this post publicly?" +msgstr "" + +#: [post]blog_add +msgid "Post published on your blog" +msgstr "" + +#: [post]blog_remove +msgid "Post removed from your blog" +msgstr "" + +#: [post]delete_title [post]delete +msgid "Delete this post" +msgstr "" + +#: [post]delete_text +msgid "You are going to delete this post, please confirm your action" +msgstr "" + +#: [post]comments_disabled +msgid "Comments disabled" +msgstr "" + +#: [post]comment_published +msgid "Comment published" +msgstr "" + +#: [status]disconnect +msgid "Disconnect" +msgstr "" + +#: [status]here +msgid "Your status here !" +msgstr "" + +#: [status]updated +msgid "Status updated" +msgstr "" + +#: [status]status +msgid "Status" +msgstr "" + +#: [status]presence +msgid "Presence" +msgstr "" + +#: [status]online +msgid "Online with Movim" +msgstr "" + +#: [publish]title +msgid "Publish" +msgstr "" + +#: [publish]attach +msgid "Add a file or a picture to your post" +msgstr "" + +#: [publish]no_publication +msgid "You cannot publish a post on this Group" +msgstr "" + +#: [publish]form_filled +msgid "Some fields have been filled in. Do you still want to go back and loose their content?" +msgstr "" + +#: [public_groups]shared +msgid "Shared" +msgstr "" + +#: [public_groups]added +msgid "%s has been added to your public groups" +msgstr "" + +#: [rooms]add +msgid "Add a chatroom" +msgstr "" + +#: [rooms]empty_text1 +msgid "You don't have any chatroom yet." +msgstr "" + +#: [rooms]empty_text2 +msgid "Add one by clicking on the add button in the header." +msgstr "" + +#: [chatrooms]title +msgid "Chatrooms" +msgstr "" + +#: [chatrooms]name_placeholder +msgid "My Favorite Room" +msgstr "" + +#: [chatrooms]users +msgid "Users in the room" +msgstr "" + +#: [chatrooms]bad_nickname +msgid "Please enter a correct nickname (2 to 40 characters)" +msgstr "" + +#: [room]anonymous_title +msgid "Public chatroom" +msgstr "" + +#: [room]no_room +msgid "Please provide a room address" +msgstr "" + +#: [room]anonymous_text1 +msgid "You are currently logued as an anonymous user." +msgstr "" + +#: [room]anonymous_text2 +msgid "You can join using your own account or create one on the login page by loging out using the cross in the top-right corner." +msgstr "" + +#: [room]anonymous_login +msgid "Login on %s" +msgstr "" + +#: [room]nick +msgid "Your nickname" +msgstr "" + +#: [roster]ungrouped +msgid "Ungrouped" +msgstr "" + +#: [roster]show_disconnected +msgid "Show disconnected contacts" +msgstr "" + +#: [roster]hide_disconnected +msgid "Hide disconnected contacts" +msgstr "" + +#: [roster]show_group +msgid "Show group %s" +msgstr "" + +#: [roster]hide_group +msgid "Hide group %s" +msgstr "" + +#: [roster]jid_error +msgid "Please enter a valid Jabber ID" +msgstr "" + +#: [roster]no_contacts_title +msgid "No contacts ?" +msgstr "" + +#: [roster]no_contacts_text +msgid "You can add one using the + button bellow" +msgstr "" + +#: [roster]show_hide +msgid "Show/Hide" +msgstr "" + +#: [roster]add_contact_info1 +msgid "Enter the Jabber ID of your contact." +msgstr "" + +#: [roster]add_contact_info2 +msgid "Press enter to validate." +msgstr "" + +#: [roster]jid +msgid "JID" +msgstr "" + +#: [roster]results +msgid "Results" +msgstr "" + +#: [roster]added +msgid "Contact added" +msgstr "" + +#: [roster]deleted +msgid "Contact deleted" +msgstr "" + +#: [roster]search +msgid "Search" +msgstr "" + +#: [share]error +msgid "This is not a valid url" +msgstr "" + +#: [share]success +msgid "Sharing the URL" +msgstr "" + +#: [statistics]title +msgid "Statistics" +msgstr "" + +#: [statistics]since +msgid "Since" +msgstr "" + +#: [statistics]sessions +msgid "Sessions" +msgstr "" + +#: [statistics]monthly_sub +msgid "Monthly Subscriptions" +msgstr "" + +#: [statistics]monthly_sub_cum +msgid "Monthly Subscriptions Cumulated" +msgstr "" + +#: [subscribe]info +msgid "Movim is a decentralized social network, before creating a new account you need to choose a server to register." +msgstr "" + +#: [subscribe]server_question +msgid "Your server here ?" +msgstr "" + +#: [subscribe]server_contact +msgid "Contact us to add yours to the officially supported servers list" +msgstr "" + +#: [feed]nope +msgid "No public feed for this contact" +msgstr "" + +#: [feed]nope_contact +msgid "No contact specified" +msgstr "" + +#: [upload]title +msgid "Upload a file" +msgstr "" + +#: [upload]choose +msgid "Choose a file to upload" +msgstr "" + +#: [vcard]title [page]profile +msgid "Profile" +msgstr "" + +#: [vcard]updated +msgid "Profile Updated" +msgstr "" + +#: [vcard]not_updated +msgid "Profile Not Updated" +msgstr "" + +#: [vcard]public +msgid "Your profile is now public" +msgstr "" + +#: [vcard]restricted +msgid "Your profile is now restricted" +msgstr "" + +#: [general]nickname +msgctxt "[general]nickname" +msgid "Nickname" +msgstr "" + +#: [accounts]twitter +msgid "Twitter" +msgstr "" + +#: [accounts]skype +msgid "Skype" +msgstr "" + +#: [accounts]yahoo +msgid "Yahoo" +msgstr "" + +#: [accounts]accounts_nickname +msgctxt "[accounts]accounts_nickname" +msgid "Nickname" +msgstr "" + +#: [accounts]accounts_yahoo +msgid "Yahoo Account" +msgstr "" + +#: [privacy]privacy_title +msgid "Privacy Level" +msgstr "" + +#: [privacy]privacy_question +msgid "Is this profile public ?" +msgstr "" + +#: [privacy]privacy_info +msgid "Please pay attention ! By making your profile public, all the information listed above will be available for all the Movim users and on the whole Internet." +msgstr "" + +#: [save]submit [button]submit msgid "Submit" msgstr "" -#: ../cache/locales.php:522 -msgid "Submitting" -msgstr "" - -#: ../cache/locales.php:523 +#: [save]reset [button]reset msgid "Reset" msgstr "" -#: ../cache/locales.php:524 +#: [visio]hung_up +msgid "Hung up" +msgstr "" + +#: [visio]busy +msgid "Your contact is busy" +msgstr "" + +#: [visio]declined +msgid "Declined" +msgstr "" + +#: [visio]calling +msgid "Is calling you" +msgstr "" + +#: [visio]call +msgid "Call" +msgstr "" + +#: [visio]hang_up +msgid "Hang up" +msgstr "" + +#: [visio]connection +msgid "Connection" +msgstr "" + +#: [global]no_js +msgid "You don't have javascript enabled. Good luck with that." +msgstr "" + +#: [global]description +msgid "Movim is a kickass distributed social networking platform that protect your privacy an comes with a set of awesome features." +msgstr "" + +#: [page]administration +msgid "Administration" +msgstr "" + +#: [page]home +msgid "Home" +msgstr "" + +#: [page]discover +msgid "Discover" +msgstr "" + +#: [page]explore +msgid "Explore" +msgstr "" + +#: [page]account_creation +msgid "Account Creation" +msgstr "" + +#: [page]avatar +msgid "Avatar" +msgstr "" + +#: [page]chats +msgid "Chats" +msgstr "" + +#: [page]server +msgid "Server" +msgstr "" + +#: [page]public_groups +msgid "Public Groups" +msgstr "" + +#: [page]viewer +msgid "Viewer" +msgstr "" + +#: [page]media +msgid "Media" +msgstr "" + +#: [page]blog +msgid "Blog" +msgstr "" + +#: [page]about +msgid "About" +msgstr "" + +#: [page]login +msgid "Login" +msgstr "" + +#: [page]feed +msgid "Feed" +msgstr "" + +#: [page]gallery +msgid "Gallery" +msgstr "" + +#: [page]visio +msgid "Visio-conference" +msgstr "" + +#: [page]pods +msgid "Pods" +msgstr "" + +#: [page]share +msgid "Share" +msgstr "" + +#: [page]room +msgid "Room" +msgstr "" + +#: [error]error +msgid "Error: %s" +msgstr "" + +#: [error]cannot_load_file +msgid "Cannot load file '%s'" +msgstr "নথি '%s' লোড করা যাচ্ছে না" + +#: [error]route +msgid "Route error, please set all the parameters for the page %s" +msgstr "" + +#: [error]widget_load_error +msgid "Requested widget '%s' doesn't exist." +msgstr "" + +#: [error]widget_call_error +msgid "Requested event '%s' not registered." +msgstr "" + +#: [error]whoops +msgid "Whoops!" +msgstr "" + +#: [error]media_not_found +msgid "It seem that you don't have any pictures here?" +msgstr "" + +#: [error]media_ask_upload +msgid "You can try to upload a couple by going to the Media page" +msgstr "" + +#: [title]about +msgid "%s - About" +msgstr "" + +#: [title]account +msgid "%s - Account" +msgstr "" + +#: [title]administration +msgid "%s - Administration Panel" +msgstr "" + +#: [title]blog +msgid "%s - Blog" +msgstr "" + +#: [title]configuration +msgid "%s - Configuration" +msgstr "" + +#: [title]discover +msgid "%s - Discover" +msgstr "" + +#: [title]explore +msgid "%s - Explore" +msgstr "" + +#: [title]help +msgid "%s - Help Page" +msgstr "" + +#: [title]login +msgid "%s - Login to Movim" +msgstr "" + +#: [title]main +msgid "%s - Welcome to Movim" +msgstr "" + +#: [title]media +msgid "%s - Media" +msgstr "" + +#: [title]news +msgid "%s - News" +msgstr "" + +#: [title]node_configuration +msgid "%s - Group Configuration" +msgstr "" + +#: [title]node +msgid "%s - Group" +msgstr "" + +#: [title]not_found +msgid "%s - 404" +msgstr "" + +#: [title]profile +msgid "%s - Profile" +msgstr "" + +#: [title]server +msgid "%s - Server" +msgstr "" + +#: [button]validate +msgid "Validate" +msgstr "" + +#: [button]refresh +msgid "Refresh" +msgstr "" + +#: [button]add +msgid "Add" +msgstr "" + +#: [button]delete +msgid "Delete" +msgstr "" + +#: [button]cancel +msgid "Cancel" +msgstr "" + +#: [button]close +msgid "Close" +msgstr "" + +#: [button]update +msgid "Update" +msgstr "" + +#: [button]updating +msgid "Updating" +msgstr "" + +#: [button]submitting +msgid "Submitting" +msgstr "" + +#: [button]register msgid "Register" msgstr "" -#: ../cache/locales.php:525 +#: [button]unregister msgid "Unregister" msgstr "" -#: ../cache/locales.php:526 +#: [button]save msgid "Save" msgstr "" -#: ../cache/locales.php:527 +#: [button]clear msgid "Clear" msgstr "" -#: ../cache/locales.php:528 +#: [button]upload msgid "Upload" msgstr "" -#: ../cache/locales.php:529 +#: [button]come_in msgid "Come in!" msgstr "" -#: ../cache/locales.php:530 +#: [button]connecting msgid "Connecting" msgstr "" -#: ../cache/locales.php:531 +#: [button]bool_yes msgid "Yes" msgstr "" -#: ../cache/locales.php:532 +#: [button]bool_no msgid "No" msgstr "" -#: ../cache/locales.php:534 +#: [button]return msgid "Return" msgstr "" -#: ../cache/locales.php:535 +#: [button]accept msgid "Accept" msgstr "" -#: ../cache/locales.php:536 +#: [button]refuse msgid "Refuse" msgstr "" -#: ../cache/locales.php:537 +#: [button]next msgid "Next" msgstr "" -#: ../cache/locales.php:538 +#: [button]previous msgid "Previous" msgstr "" -#: ../cache/locales.php:539 -#, php-format +#: [step]step msgid "Step %s" msgstr "" -#: ../cache/locales.php:542 +#: [day]title msgid "Day" msgstr "" -#: ../cache/locales.php:543 +#: [day]monday msgid "Monday" msgstr "সোমবার" -#: ../cache/locales.php:544 +#: [day]tuesday msgid "Tuesday" msgstr "মঙ্গলবার" -#: ../cache/locales.php:545 +#: [day]wednesday msgid "Wednesday" msgstr "বুধবার" -#: ../cache/locales.php:546 +#: [day]thursday msgid "Thursday" msgstr "বৃহস্পতিবার" -#: ../cache/locales.php:547 +#: [day]friday msgid "Friday" msgstr "শুক্রবার" -#: ../cache/locales.php:548 +#: [day]saturday msgid "Saturday" msgstr "শনিবার" -#: ../cache/locales.php:549 +#: [day]sunday msgid "Sunday" msgstr "" -#: ../cache/locales.php:550 ../cache/locales.php:559 +#: [gender]nil +#, fuzzy +msgctxt "[gender]nil" msgid "None" msgstr "কোনোটিই নয়" -#: ../cache/locales.php:551 +#: [gender]male msgid "Male" msgstr "পুরুষ" -#: ../cache/locales.php:552 +#: [gender]female msgid "Female" msgstr "নারী" -#: ../cache/locales.php:553 +#: [gender]other msgid "Other" msgstr "অন্যান্য" -#: ../cache/locales.php:554 +#: [client]bot msgid "Bot" msgstr "" -#: ../cache/locales.php:555 +#: [client]desktop msgid "Desktop" msgstr "" -#: ../cache/locales.php:556 +#: [client]phone msgid "Phone" msgstr "" -#: ../cache/locales.php:557 +#: [client]web msgid "Web" msgstr "" -#: ../cache/locales.php:558 +#: [client]registered msgid "Registered" msgstr "" -#: ../cache/locales.php:560 +#: [marital]nil +#, fuzzy +msgctxt "[marital]nil" +msgid "None" +msgstr "কোনোটিই নয়" + +#: [marital]single msgid "Single" msgstr "সঙ্গীহীন" -#: ../cache/locales.php:561 +#: [marital]relationship msgid "In a relationship" msgstr "সম্পর্কে আবদ্ধ" -#: ../cache/locales.php:562 +#: [marital]married msgid "Married" msgstr "বিবাহিত" -#: ../cache/locales.php:563 +#: [marital]divorced msgid "Divorced" msgstr "সম্পর্কচ্ছিন্ন" -#: ../cache/locales.php:564 +#: [marital]widowed msgid "Widowed" msgstr "বিপত্নীক/বিধবা" -#: ../cache/locales.php:565 +#: [marital]cohabiting msgid "Cohabiting" msgstr "" -#: ../cache/locales.php:566 +#: [marital]union msgid "Civil Union" msgstr "" -#: ../cache/locales.php:567 +#: [flag]white msgid "Not shared" msgstr "" -#: ../cache/locales.php:568 +#: [flag]green msgid "Shared with one contact" msgstr "" -#: ../cache/locales.php:569 +#: [flag]orange msgid "Shared with all contacts" msgstr "" -#: ../cache/locales.php:570 +#: [flag]red msgid "Shared with the XMPP network" msgstr "" -#: ../cache/locales.php:571 +#: [flag]black msgid "Shared with the whole Internet" msgstr "" -#: ../cache/locales.php:572 +#: [presence]online msgid "Online" msgstr "অনলাইন" -#: ../cache/locales.php:573 +#: [presence]away msgid "Away" msgstr "অনুপস্থিত" -#: ../cache/locales.php:574 +#: [presence]dnd msgid "Do Not Disturb" msgstr "জ্বালিয়ো না" -#: ../cache/locales.php:575 +#: [presence]xa msgid "Extended Away" msgstr "অনেকক্ষণ যাবৎ দূরে" -#: ../cache/locales.php:576 +#: [presence]offline msgid "Offline" msgstr "" -#: ../cache/locales.php:577 +#: [presence]error msgid "Error" msgstr "" -#: ../cache/locales.php:578 +#: [mood]afraid msgid "afraid" msgstr "ভীত" -#: ../cache/locales.php:579 +#: [mood]amazed msgid "amazed" msgstr "অভিভূত" -#: ../cache/locales.php:580 +#: [mood]amorous msgid "amorous" msgstr "প্রেমালু" -#: ../cache/locales.php:581 +#: [mood]angry msgid "angry" msgstr "ক্ষীপ্ত" -#: ../cache/locales.php:582 +#: [mood]annoyed msgid "annoyed" msgstr "বিরক্ত" -#: ../cache/locales.php:583 +#: [mood]anxious msgid "anxious" msgstr "উদ্বিগ্ন" -#: ../cache/locales.php:584 +#: [mood]aroused msgid "aroused" msgstr "জাগ্রত" -#: ../cache/locales.php:585 +#: [mood]ashamed msgid "ashamed" msgstr "লজ্জিত" -#: ../cache/locales.php:586 +#: [mood]bored msgid "bored" msgstr "একঘেয়ে" -#: ../cache/locales.php:587 +#: [mood]brave msgid "brave" msgstr "সাহসী" -#: ../cache/locales.php:588 +#: [mood]calm msgid "calm" msgstr "শান্ত" -#: ../cache/locales.php:589 +#: [mood]cautious msgid "cautious" msgstr "সাবধানী" -#: ../cache/locales.php:590 +#: [mood]cold msgid "cold" msgstr "ঠাণ্ডা" -#: ../cache/locales.php:591 +#: [mood]confident msgid "confident" msgstr "আত্মবিশ্বাসী" -#: ../cache/locales.php:592 +#: [mood]confused msgid "confused" msgstr "সন্দিগ্ন" -#: ../cache/locales.php:593 +#: [mood]contemplative msgid "contemplative" msgstr "ধার্মিক" -#: ../cache/locales.php:594 +#: [mood]contented msgid "contented" msgstr "সুখী" -#: ../cache/locales.php:595 +#: [mood]cranky msgid "cranky" msgstr "" -#: ../cache/locales.php:596 +#: [mood]crazy msgid "crazy" msgstr "" -#: ../cache/locales.php:597 +#: [mood]creative msgid "creative" msgstr "" -#: ../cache/locales.php:598 +#: [mood]curious msgid "curious" msgstr "" -#: ../cache/locales.php:599 +#: [mood]dejected msgid "dejected" msgstr "" -#: ../cache/locales.php:600 +#: [mood]depressed msgid "depressed" msgstr "" -#: ../cache/locales.php:601 +#: [mood]disappointed msgid "disappointed" msgstr "" -#: ../cache/locales.php:602 +#: [mood]disgusted msgid "disgusted" msgstr "" -#: ../cache/locales.php:603 +#: [mood]dismayed msgid "dismayed" msgstr "" -#: ../cache/locales.php:604 +#: [mood]distracted msgid "distracted" msgstr "" -#: ../cache/locales.php:605 +#: [mood]embarrassed msgid "embarrassed" msgstr "" -#: ../cache/locales.php:606 +#: [mood]envious msgid "envious" msgstr "" -#: ../cache/locales.php:607 +#: [mood]excited msgid "excited" msgstr "" -#: ../cache/locales.php:608 +#: [mood]flirtatious msgid "flirtatious" msgstr "" -#: ../cache/locales.php:609 +#: [mood]frustated msgid "frustated" msgstr "" -#: ../cache/locales.php:610 +#: [mood]grateful msgid "grateful" msgstr "" -#: ../cache/locales.php:611 +#: [mood]grieving msgid "grieving" msgstr "" -#: ../cache/locales.php:612 +#: [mood]grumpy msgid "grumpy" msgstr "" -#: ../cache/locales.php:613 +#: [mood]guilty msgid "guilty" msgstr "" -#: ../cache/locales.php:614 +#: [mood]happy msgid "happy" msgstr "" -#: ../cache/locales.php:615 +#: [mood]hopeful msgid "hopeful" msgstr "" -#: ../cache/locales.php:616 +#: [mood]hot msgid "hot" msgstr "" -#: ../cache/locales.php:617 +#: [mood]humbled msgid "humbled" msgstr "" -#: ../cache/locales.php:618 +#: [mood]humiliated msgid "humiliated" msgstr "" -#: ../cache/locales.php:619 +#: [mood]hungry msgid "hungry" msgstr "" -#: ../cache/locales.php:620 +#: [mood]hurt msgid "hurt" msgstr "" -#: ../cache/locales.php:621 +#: [mood]impressed msgid "impressed" msgstr "" -#: ../cache/locales.php:622 +#: [mood]in_awe msgid "in awe" msgstr "" -#: ../cache/locales.php:623 +#: [mood]in_love msgid "in love" msgstr "" -#: ../cache/locales.php:624 +#: [mood]indignant msgid "indignant" msgstr "" -#: ../cache/locales.php:625 +#: [mood]interested msgid "interested" msgstr "" -#: ../cache/locales.php:626 +#: [mood]intoxicated msgid "intoxicated" msgstr "" -#: ../cache/locales.php:627 +#: [mood]invincible msgid "invincible" msgstr "" -#: ../cache/locales.php:628 +#: [mood]jealous msgid "jealous" msgstr "" -#: ../cache/locales.php:629 +#: [mood]lonely msgid "lonely" msgstr "" -#: ../cache/locales.php:630 +#: [mood]lost msgid "lost" msgstr "" -#: ../cache/locales.php:631 +#: [mood]lucky msgid "lucky" msgstr "" -#: ../cache/locales.php:632 +#: [mood]mean msgid "mean" msgstr "" -#: ../cache/locales.php:633 +#: [mood]moody msgid "moody" msgstr "" -#: ../cache/locales.php:634 +#: [mood]nervous msgid "nervous" msgstr "" -#: ../cache/locales.php:635 +#: [mood]neutral msgid "neutral" msgstr "" -#: ../cache/locales.php:636 +#: [mood]offended msgid "offended" msgstr "" -#: ../cache/locales.php:637 +#: [mood]outraged msgid "outraged" msgstr "" -#: ../cache/locales.php:638 +#: [mood]playful msgid "playful" msgstr "" -#: ../cache/locales.php:639 +#: [mood]proud msgid "proud" msgstr "" -#: ../cache/locales.php:640 +#: [mood]relaxed msgid "relaxed" msgstr "" -#: ../cache/locales.php:641 +#: [mood]relieved msgid "relieved" msgstr "" -#: ../cache/locales.php:642 -msgid "remorseful" -msgstr "" - -#: ../cache/locales.php:643 +#: [mood]restless msgid "restless" msgstr "" -#: ../cache/locales.php:644 +#: [mood]sad msgid "sad" msgstr "" -#: ../cache/locales.php:645 +#: [mood]sarcastic msgid "sarcastic" msgstr "" -#: ../cache/locales.php:646 +#: [mood]satisfied msgid "satisfied" msgstr "" -#: ../cache/locales.php:647 +#: [mood]serious msgid "serious" msgstr "" -#: ../cache/locales.php:648 +#: [mood]shocked msgid "shocked" msgstr "" -#: ../cache/locales.php:649 +#: [mood]shy msgid "shy" msgstr "" -#: ../cache/locales.php:650 +#: [mood]sick msgid "sick" msgstr "" -#: ../cache/locales.php:651 +#: [mood]sleepy msgid "sleepy" msgstr "" -#: ../cache/locales.php:652 +#: [mood]spontaneous msgid "spontaneous" msgstr "" -#: ../cache/locales.php:653 +#: [mood]stressed msgid "stressed" msgstr "" -#: ../cache/locales.php:654 +#: [mood]strong msgid "strong" msgstr "" -#: ../cache/locales.php:655 +#: [mood]surprised msgid "surprised" msgstr "" -#: ../cache/locales.php:656 +#: [mood]thankful msgid "thankful" msgstr "" -#: ../cache/locales.php:657 +#: [mood]thirsty msgid "thirsty" msgstr "" -#: ../cache/locales.php:658 +#: [mood]tired msgid "tired" msgstr "" -#: ../cache/locales.php:659 +#: [mood]undefined msgid "undefined" msgstr "" -#: ../cache/locales.php:660 +#: [mood]weak msgid "weak" msgstr "" -#: ../cache/locales.php:661 +#: [mood]worried msgid "worried" msgstr "" -#: ../cache/locales.php:662 +#: [month]title msgid "Month" msgstr "" -#: ../cache/locales.php:663 +#: [month]january msgid "January" msgstr "জানুয়ারী" -#: ../cache/locales.php:664 +#: [month]february msgid "February" msgstr "ফেব্রুয়ারী" -#: ../cache/locales.php:665 +#: [month]march msgid "March" msgstr "মার্চ" -#: ../cache/locales.php:666 +#: [month]april msgid "April" msgstr "এপ্রিল" -#: ../cache/locales.php:667 +#: [month]may msgid "May" msgstr "মে" -#: ../cache/locales.php:668 +#: [month]june msgid "June" msgstr "জুন" -#: ../cache/locales.php:669 +#: [month]july msgid "July" msgstr "জুলাই" -#: ../cache/locales.php:670 +#: [month]august msgid "August" msgstr "আগষ্ট" -#: ../cache/locales.php:671 +#: [month]september msgid "September" msgstr "সেপ্টেম্বর" -#: ../cache/locales.php:672 +#: [month]october msgid "October" msgstr "অক্টোবর" -#: ../cache/locales.php:673 +#: [month]november msgid "November" msgstr "নভেম্বর" -#: ../cache/locales.php:674 +#: [month]december msgid "December" msgstr "ডিসেম্বর" -#: ../cache/locales.php:675 +#: [year]title msgid "Year" msgstr "" -#: ../cache/locales.php:676 +#: [date]today msgid "Today" msgstr "আজ" -#: ../cache/locales.php:677 +#: [date]tomorrow msgid "Tomorrow" msgstr "আগামীকাল" -#: ../cache/locales.php:678 +#: [date]yesterday msgid "Yesterday" msgstr "গতোকাল" -#: ../cache/locales.php:679 -#, php-format -msgid " %d days ago" +#: [date]ago +#, fuzzy +msgid "%d days ago" msgstr " %d দিন আগে" -#: ../cache/locales.php:680 +#: [date]day msgid "day" msgstr "দিন" -#: ../cache/locales.php:682 +#: [post]whats_new msgid "What's new ?" msgstr "" -#: ../cache/locales.php:683 +#: [post]place msgid "Place" msgstr "" -#: ../cache/locales.php:684 +#: [post]by msgid "by" msgstr "" -#: ../cache/locales.php:685 +#: [post]geolocalisation msgid "Geolocalisation" msgstr "" -#: ../cache/locales.php:686 +#: [post]email msgid "email" msgstr "" -#: ../cache/locales.php:688 +#: [post]no_comments msgid "No comments yet" msgstr "" -#: ../cache/locales.php:689 +#: [post]no_comments_stream msgid "No comments stream" msgstr "" -#: ../cache/locales.php:690 +#: [post]no_load msgid "Your feed cannot be loaded." msgstr "" -#: ../cache/locales.php:691 +#: [post]older msgid "Get older posts" msgstr "" -#: ../cache/locales.php:692 -#, php-format +#: [post]new_items msgid "%s new items" msgstr "" -#: ../cache/locales.php:693 +#: [post]comment_error msgid "Comment publication error" msgstr "" -#: ../cache/locales.php:694 +#: [post]comments_older msgid "Show the older comments" msgstr "" -#: ../cache/locales.php:695 -msgid "Loading comments ..." +#: [post]comments_loading +msgid "Loading comments..." msgstr "" -#: ../cache/locales.php:696 +#: [post]comments_get msgid "Get the comments" msgstr "" -#: ../cache/locales.php:697 +#: [post]comment_add msgid "Add a comment" msgstr "" -#: ../cache/locales.php:698 +#: [post]share msgid "Share with" msgstr "" -#: ../cache/locales.php:699 +#: [post]share_everyone msgid "Everyone" msgstr "" -#: ../cache/locales.php:700 +#: [post]share_your_contacts msgid "Your contacts" msgstr "" -#: ../cache/locales.php:702 +#: [post]updated msgid "Updated" msgstr "" -#: ../cache/locales.php:703 +#: [post]content_not_found msgid "Content not found" msgstr "" -#: ../cache/locales.php:704 +#: [post]default_title msgid "Contact publication" msgstr "" -#: ../cache/locales.php:705 +#: [post]comments msgid "Comments" msgstr "" -#: ../cache/locales.php:706 +#: [api]error msgid "The API is not reachable, try again later" msgstr "" -#: ../cache/locales.php:707 +#: [field]type_here msgid "Type here" msgstr "" diff --git a/sources/locales/br.po b/sources/locales/br.po index d1b0c87..d74f302 100644 --- a/sources/locales/br.po +++ b/sources/locales/br.po @@ -1,2591 +1,2714 @@ # Breton translations for Movim package. # This file is distributed under the same license as the Movim package. # This file was translated from CodingTeam at . +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/About/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Account/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AccountNext/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AdHoc/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AdminDB/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AdminMain/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AdminTest/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Api/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Avatar/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Blog/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Bookmark/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Chat/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Chats/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/ConfigData/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Config/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Contact/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Group/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Groups/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Header/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Hello/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Help/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Init/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Location/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/LoginAnonymous/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Login/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Menu/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/NodeAffiliations/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/NodeSubscriptions/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Notifs/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Post/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Presence/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Publish/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/PubsubSubscriptionConfig/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Rooms/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Roster/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Share/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Statistics/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Subscribe/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Syndication/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Upload/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Vcard4/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/VisioExt/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Visio/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../locales/locales.ini msgid "" msgstr "" "Project-Id-Version: Movim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-06-08 22:06+0200\n" +"POT-Creation-Date: 2015-08-20 15:17+0200\n" "PO-Revision-Date: 2013-07-27 17:06+0000\n" "Last-Translator: Gwenn M \n" "Language-Team: LANGUAGE \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2015-06-18 21:08+0000\n" "X-Generator: Launchpad (build 17570)\n" -"Language: \n" -#: ../cache/locales.php:2 +#: [about]thanks msgid "Thanks" msgstr "" -#: ../cache/locales.php:3 +#: [about]developers msgid "Developers" msgstr "" -#: ../cache/locales.php:4 +#: [about]translators msgid "Translators" msgstr "" -#: ../cache/locales.php:5 +#: [about]software msgid "Software" msgstr "" -#: ../cache/locales.php:6 +#: [about]resources msgid "Resources" msgstr "" -#: ../cache/locales.php:7 ../cache/locales.php:83 ../cache/locales.php:85 +#: [about]api [schema]api [api]title msgid "API" msgstr "" -#: ../cache/locales.php:8 -msgid "" -"Movim is an XMPP-based communication platform. All the project, except the " -"following software and resources, is under" +#: [about]info +msgid "Movim is an XMPP-based communication platform. All the project, except the following software and resources, is under" msgstr "" -#: ../cache/locales.php:9 +#: [account]title msgid "Account" msgstr "" -#: ../cache/locales.php:10 -msgid "The password has been updated" -msgstr "" +#: [account]password_change_title +#, fuzzy +msgid "Change my password" +msgstr "Ger-tremen direizh" -#: ../cache/locales.php:11 -msgid "Please provide a valid password (6 characters minimum)" -msgstr "" - -#: ../cache/locales.php:12 -msgid "The provided passwords are not the same" -msgstr "" - -#: ../cache/locales.php:13 -msgid "Delete my account" -msgstr "" - -#: ../cache/locales.php:14 -msgid "" -"You will delete your XMPP account and all the relative information linked to " -"it (profile, contacts and publications)." -msgstr "" - -#: ../cache/locales.php:15 -msgid "Are you sure that you want to delete it ?" -msgstr "" - -#: ../cache/locales.php:16 ../cache/locales.php:411 -msgid "Create a new account" -msgstr "Kouiñ ur gont nevez" - -#: ../cache/locales.php:17 -msgid "No account creation form found on the server" -msgstr "" - -#: ../cache/locales.php:18 ../cache/locales.php:172 -msgid "on" -msgstr "" - -#: ../cache/locales.php:19 -msgid "Your acccount has been successfully registered" -msgstr "" - -#: ../cache/locales.php:20 -msgid "Loading" -msgstr "" - -#: ../cache/locales.php:21 -msgid "Not Acceptable" -msgstr "" - -#: ../cache/locales.php:22 -msgid "The registration system of this server is currently unavailable" -msgstr "" - -#: ../cache/locales.php:23 -msgid "" -"This server use an external system for the registration, please click on the " -"following URL." -msgstr "" - -#: ../cache/locales.php:24 -msgid "Actions" -msgstr "Oberennoù" - -#: ../cache/locales.php:25 ../cache/locales.php:82 -msgid "Database" -msgstr "" - -#: ../cache/locales.php:26 -msgid "Modl wasn't able to connect to the database" -msgstr "" - -#: ../cache/locales.php:27 -msgid "Movim is connected to the database" -msgstr "" - -#: ../cache/locales.php:28 -msgid "The database need to be updated" -msgstr "" - -#: ../cache/locales.php:29 -msgid "Movim database is up to date" -msgstr "" - -#: ../cache/locales.php:30 -msgid "Database Type" -msgstr "" - -#: ../cache/locales.php:31 ../cache/locales.php:50 ../cache/locales.php:540 -msgid "Username" -msgstr "" - -#: ../cache/locales.php:32 ../cache/locales.php:51 ../cache/locales.php:282 -#: ../cache/locales.php:541 +#: [account]password [db]password [credentials]password [form]password +#: [input]password msgid "Password" msgstr "Ger-tremen" -#: ../cache/locales.php:33 +#: [account]password_confirmation +#, fuzzy +msgid "Password confirmation" +msgstr "%s - Kefluniadur" + +#: [account]password_changed +msgid "The password has been updated" +msgstr "" + +#: [account]password_not_valid +msgid "Please provide a valid password (6 characters minimum)" +msgstr "" + +#: [account]password_not_same +msgid "The provided passwords are not the same" +msgstr "" + +#: [account]delete_title +msgid "Delete my account" +msgstr "" + +#: [account]delete +#, fuzzy +msgid "Delete your account" +msgstr "Kouiñ ur gont nevez" + +#: [account]delete_text +msgid "You will delete your XMPP account and all the relative information linked to it (profile, contacts and publications)." +msgstr "" + +#: [account]delete_text_confirm +msgid "Are you sure that you want to delete it ?" +msgstr "" + +#: [account]gateway_title +msgid "Gateway" +msgstr "" + +#: [create]title [subscribe]title +msgid "Create a new account" +msgstr "Kouiñ ur gont nevez" + +#: [create]notfound +msgid "No account creation form found on the server" +msgstr "" + +#: [create]server_on +msgid "on" +msgstr "" + +#: [create]successfull +msgid "Your acccount has been successfully registered" +msgstr "" + +#: [create]loading +msgid "Loading" +msgstr "" + +#: [error]not_acceptable +msgid "Not Acceptable" +msgstr "" + +#: [error]service_unavailable +msgid "The registration system of this server is currently unavailable" +msgstr "" + +#: [oob]about +msgid "This server use an external system for the registration, please click on the following URL." +msgstr "" + +#: [adhoc]title +msgid "Actions" +msgstr "Oberennoù" + +#: [db]legend [schema]database +msgid "Database" +msgstr "" + +#: [db]connect_error +msgid "Modl wasn't able to connect to the database" +msgstr "" + +#: [db]connect_success +msgid "Movim is connected to the database" +msgstr "" + +#: [db]update +msgid "The database need to be updated" +msgstr "" + +#: [db]up_to_date +msgid "Movim database is up to date" +msgstr "" + +#: [db]type +msgid "Database Type" +msgstr "" + +#: [db]username [credentials]username [input]username +msgid "Username" +msgstr "" + +#: [db]host msgid "Host" msgstr "" -#: ../cache/locales.php:34 +#: [db]port msgid "Port" msgstr "" -#: ../cache/locales.php:35 -msgid "Database Name" +#: [db]name +msgid "Database sName" msgstr "" -#: ../cache/locales.php:36 +#: [admin]general msgid "General Settings" msgstr "" -#: ../cache/locales.php:37 +#: [general]theme msgid "Theme" msgstr "" -#: ../cache/locales.php:38 +#: [general]language msgid "Default language" msgstr "" -#: ../cache/locales.php:39 -msgid "Environment" -msgstr "" - -#: ../cache/locales.php:40 +#: [general]log_verbosity msgid "Log verbosity" msgstr "" -#: ../cache/locales.php:41 +#: [general]timezone msgid "Server Timezone" msgstr "" -#: ../cache/locales.php:42 +#: [general]limit msgid "User folder size limit (in bytes)" msgstr "" -#: ../cache/locales.php:43 +#: [websocket]title msgid "WebSocket Configuration" msgstr "" -#: ../cache/locales.php:44 +#: [websocket]info msgid "Enter here a valid WebSocket URI in the form" msgstr "" -#: ../cache/locales.php:45 +#: [websocket]label msgid "WebSocket URI" msgstr "" -#: ../cache/locales.php:46 -msgid "" -"If you change the URI, please restart the daemon to reload the configuration" +#: [websocket]save_info +msgid "If you change the URI, please restart the daemon to reload the configuration" msgstr "" -#: ../cache/locales.php:47 +#: [websocket]publics msgid "Public WebSockets" msgstr "" -#: ../cache/locales.php:48 +#: [credentials]title msgid "Administration Credential" msgstr "" -#: ../cache/locales.php:49 +#: [credentials]info msgid "Change the default credentials admin/password" msgstr "" -#: ../cache/locales.php:52 +#: [credentials]re_password msgid "Retype password" msgstr "" -#: ../cache/locales.php:53 +#: [whitelist]title msgid "Whitelist - XMPP Server" msgstr "" -#: ../cache/locales.php:54 -msgid "" -"If you want to specify a list of authorized XMPP servers on your Movim pod " -"and forbid the connection on all the others please put their domain name " -"here, with comma (ex: movim.eu,jabber.fr)" +#: [whitelist]info1 +msgid "If you want to specify a list of authorized XMPP servers on your Movim pod and forbid the connection on all the others please put their domain name here, with comma (ex: movim.eu,jabber.fr)" msgstr "" -#: ../cache/locales.php:55 -msgid "" -"Leave this field blank if you allow the access to all the XMPP accounts." +#: [whitelist]info2 +msgid "Leave this field blank if you allow the access to all the XMPP accounts." msgstr "" -#: ../cache/locales.php:56 +#: [whitelist]label msgid "List of whitelisted XMPP servers" msgstr "" -#: ../cache/locales.php:57 ../cache/locales.php:61 +#: [information]title +#, fuzzy +msgctxt "[information]title" msgid "Information Message" -msgstr "" +msgstr "Titouroù an arval" -#: ../cache/locales.php:58 +#: [information]description msgid "Description" msgstr "" -#: ../cache/locales.php:59 +#: [information]info1 msgid "This message will be displayed on the login page" msgstr "" -#: ../cache/locales.php:60 -msgid "Leave this field blank if you don't want to show any message." +#: [information]info2 +msgid "Leave this field blank if you dont want to show any message." msgstr "" -#: ../cache/locales.php:62 +#: [information]label +#, fuzzy +msgctxt "[information]label" +msgid "Information Message" +msgstr "Titouroù an arval" + +#: [log]empty msgid "Empty" msgstr "" -#: ../cache/locales.php:63 +#: [log]syslog msgid "Syslog" msgstr "" -#: ../cache/locales.php:64 +#: [log]syslog_files msgid "Syslog and files" msgstr "" -#: ../cache/locales.php:65 +#: [rewrite]title msgid "URL Rewriting" msgstr "" -#: ../cache/locales.php:66 +#: [rewrite]info msgid "The URL Rewriting can be enabled" msgstr "" -#: ../cache/locales.php:67 +#: [admin]compatibility msgid "General Overview" msgstr "" -#: ../cache/locales.php:68 -msgid "" -"Movim has found some issues or things that need to be fixed or improved" +#: [compatibility]info +msgid "Movim has found some issues or things that need to be fixed or improved" msgstr "" -#: ../cache/locales.php:69 -#, php-format +#: [compatibility]php1 msgid "Update your PHP-Version: %s" msgstr "" -#: ../cache/locales.php:70 +#: [compatibility]php2 msgid "Required: 5.3.0" msgstr "" -#: ../cache/locales.php:71 +#: [compatibility]curl msgid "Install the php5-curl library" msgstr "" -#: ../cache/locales.php:72 +#: [compatibility]imagick msgid "Install the php5-imagick library" msgstr "" -#: ../cache/locales.php:73 +#: [compatibility]gd msgid "Install the php5-gd library" msgstr "" -#: ../cache/locales.php:74 -msgid "Read and write rights for the webserver in Movim's root directory" +#: [compatibility]rights +msgid "Read and write rights for the webserver in Movims root directory" msgstr "" -#: ../cache/locales.php:75 +#: [compatibility]rewrite msgid "The URL Rewriting support is currently disabled" msgstr "" -#: ../cache/locales.php:76 +#: [compatibility]db msgid "The database need to be updated, go to the database panel to fix this" msgstr "" -#: ../cache/locales.php:77 -msgid "" -"WebSocket connection error, check if the Movim Daemon is running and is " -"reacheable" +#: [compatibility]websocket +msgid "WebSocket connection error, check if the Movim Daemon is running and is reachable" msgstr "" -#: ../cache/locales.php:78 -msgid "" -"XMPP Websocket connection error, please check the validity of the URL given " -"in the General Configuration" +#: [compatibility]xmpp_websocket +msgid "XMPP Websocket connection error, please check the validity of the URL given in the General Configuration" msgstr "" -#: ../cache/locales.php:79 +#: [schema]browser msgid "Browser" msgstr "" -#: ../cache/locales.php:80 +#: [schema]movim msgid "Movim Core" msgstr "" -#: ../cache/locales.php:81 +#: [schema]daemon msgid "Movim Daemon" msgstr "" -#: ../cache/locales.php:84 +#: [schema]xmpp msgid "XMPP" msgstr "" -#: ../cache/locales.php:86 -#, php-format -msgid "" -"Here you can register your pod on the official %sMovim API%s and be listed " -"on %sthe pods page%s." +#: [api]info +msgid "Here you can register your pod on the official %sMovim API%s and be listed on %sthe pods page%s." msgstr "" -#: ../cache/locales.php:87 +#: [api]register msgid "Your pod is not registered on the API" msgstr "" -#: ../cache/locales.php:88 +#: [api]registered msgid "Your pod is registered on the API" msgstr "" -#: ../cache/locales.php:89 +#: [api]wait msgid "Your pod is not yet validated" msgstr "" -#: ../cache/locales.php:90 +#: [api]validated msgid "Your pod is validated" msgstr "" -#: ../cache/locales.php:91 -msgid "" -"You asked to be removed from the API, this request will be processed in a " -"couple of hours" +#: [api]unregister +msgid "You asked to be removed from the API, this request will be processed in a couple of hours" msgstr "" -#: ../cache/locales.php:92 ../cache/locales.php:147 +#: [api]conf_updated [config]updated msgid "Configuration updated" msgstr "" -#: ../cache/locales.php:93 +#: [avatar]file msgid "File" msgstr "" -#: ../cache/locales.php:94 +#: [avatar]use_it msgid "Use it" msgstr "" -#: ../cache/locales.php:95 +#: [avatar]webcam msgid "Webcam" msgstr "" -#: ../cache/locales.php:96 +#: [avatar]cheese msgid "Cheese !" msgstr "" -#: ../cache/locales.php:97 +#: [avatar]snapshot msgid "Take a webcam snapshot" msgstr "" -#: ../cache/locales.php:98 +#: [avatar]updated msgid "Avatar Updated" msgstr "" -#: ../cache/locales.php:99 +#: [avatar]not_updated msgid "Avatar Not Updated" msgstr "" -#: ../cache/locales.php:100 ../cache/locales.php:415 -#, php-format +#: [blog]title [feed]title msgid "%s's feed" msgstr "" -#: ../cache/locales.php:101 +#: [blog]empty msgid "This user has not posted anything right now" msgstr "" -#: ../cache/locales.php:102 +#: [title]conferences msgid "Conferences" msgstr "" -#: ../cache/locales.php:103 ../cache/locales.php:193 ../cache/locales.php:217 -#: ../cache/locales.php:468 +#: [title]groups [group]empty_title [menu]groups [page]groups msgid "Groups" msgstr "" -#: ../cache/locales.php:104 +#: [chatroom]add msgid "Add a new Chat Room" msgstr "" -#: ../cache/locales.php:105 ../cache/locales.php:368 +#: [chatroom]id [chatrooms]id msgid "Chat Room ID" msgstr "" -#: ../cache/locales.php:106 ../cache/locales.php:116 ../cache/locales.php:156 -#: ../cache/locales.php:361 ../cache/locales.php:369 ../cache/locales.php:424 +#: [chatroom]name +#, fuzzy +msgctxt "[chatroom]name" msgid "Name" msgstr "Anv" -#: ../cache/locales.php:107 ../cache/locales.php:157 ../cache/locales.php:371 -#: ../cache/locales.php:425 +#: [chatroom]nickname [general]nickname [chatrooms]nickname msgid "Nickname" msgstr "Lezanv" -#: ../cache/locales.php:108 +#: [chatroom]autojoin_label msgid "Do you want do join automaticaly this Chat Room ?" msgstr "" -#: ../cache/locales.php:109 ../cache/locales.php:372 +#: [chatroom]bad_id [chatrooms]bad_id msgid "Bad Chatroom ID" msgstr "" -#: ../cache/locales.php:110 ../cache/locales.php:373 +#: [chatroom]empty_name [chatrooms]empty_name msgid "Empty name" msgstr "" -#: ../cache/locales.php:111 ../cache/locales.php:380 +#: [bookmarks]updated msgid "Bookmarks updated" msgstr "" -#: ../cache/locales.php:112 -msgid "An error occured : " +#: [bookmarks]error +msgid "An error occured :" msgstr "" -#: ../cache/locales.php:113 +#: [bookmarks]configure msgid "Configure" msgstr "" -#: ../cache/locales.php:114 +#: [url]add msgid "Add a new URL" msgstr "" -#: ../cache/locales.php:115 +#: [url]url msgid "URL" msgstr "" -#: ../cache/locales.php:117 +#: [url]name +#, fuzzy +msgctxt "[url]name" +msgid "Name" +msgstr "Anv" + +#: [message]published msgid "Message Published" msgstr "" -#: ../cache/locales.php:118 ../cache/locales.php:138 +#: [message]encrypted msgid "Encrypted message" msgstr "" -#: ../cache/locales.php:119 +#: [message]composing [chats]composing msgid "Composing..." msgstr "O kompozañ" -#: ../cache/locales.php:120 +#: [message]paused [chats]paused msgid "Paused..." msgstr "" -#: ../cache/locales.php:121 +#: [message]gone msgid "Contact gone" msgstr "" -#: ../cache/locales.php:122 -#, php-format +#: [chat]attention msgid "%s needs your attention" msgstr "" -#: ../cache/locales.php:123 +#: [chat]placeholder msgid "Your message here..." msgstr "" -#: ../cache/locales.php:124 +#: [chat]smileys msgid "Smileys" msgstr "" -#: ../cache/locales.php:125 ../cache/locales.php:139 +#: [chat]empty_title [button]chat msgid "Chat" msgstr "Tchat" -#: ../cache/locales.php:126 +#: [chat]empty_text msgid "Discuss with your contacts" msgstr "" -#: ../cache/locales.php:127 -msgid "Members" -msgstr "" - -#: ../cache/locales.php:128 ../cache/locales.php:376 -msgid "Connected to the chatroom" -msgstr "" - -#: ../cache/locales.php:129 ../cache/locales.php:377 -msgid "Disconnected from the chatroom" -msgstr "" - -#: ../cache/locales.php:130 ../cache/locales.php:200 ../cache/locales.php:469 -msgid "Configuration" -msgstr "Kefluniadur" - -#: ../cache/locales.php:131 -msgid "Configuration saved" -msgstr "" - -#: ../cache/locales.php:132 -msgid "Subject" -msgstr "" - -#: ../cache/locales.php:133 -msgid "Subject changed" -msgstr "" - -#: ../cache/locales.php:134 -msgid "Open a new conversation by clicking on the plus button bellow" -msgstr "" - -#: ../cache/locales.php:135 -msgid "Chat with a contact" -msgstr "" - -#: ../cache/locales.php:136 +#: [chat]frequent [chats]frequent msgid "Frequent contacts" msgstr "" -#: ../cache/locales.php:137 +#: [chatroom]members +msgid "Members" +msgstr "" + +#: [chatroom]connected [chatrooms]connected +msgid "Connected to the chatroom" +msgstr "" + +#: [chatroom]disconnected [chatrooms]disconnected +msgid "Disconnected from the chatroom" +msgstr "" + +#: [chatroom]config [group]configuration [page]configuration +msgid "Configuration" +msgstr "Kefluniadur" + +#: [chatroom]config_saved +msgid "Configuration saved" +msgstr "" + +#: [chatroom]subject +msgid "Subject" +msgstr "" + +#: [chatroom]subject_changed +msgid "Subject changed" +msgstr "" + +#: [chats]empty_title +msgid "No chats yet..." +msgstr "" + +#: [chats]empty +msgid "Open a new conversation by clicking on the plus button bellow or visit the Contacts page." +msgstr "" + +#: [chats]add +msgid "Chat with a contact" +msgstr "" + +#: [chats]more msgid "Load more contacts" msgstr "" -#: ../cache/locales.php:140 -msgid "General" -msgstr "" - -#: ../cache/locales.php:141 -msgid "Language" -msgstr "Yezh" - -#: ../cache/locales.php:142 -msgid "Roster display" -msgstr "" - -#: ../cache/locales.php:143 -msgid "Show the offline contacts" -msgstr "" - -#: ../cache/locales.php:144 -msgid "Hide the offline contacts" -msgstr "" - -#: ../cache/locales.php:145 -msgid "Appearence" -msgstr "" - -#: ../cache/locales.php:146 -msgid "This configuration is shared wherever you are connected !" -msgstr "" - -#: ../cache/locales.php:148 -msgid "Notify on incoming message" -msgstr "" - -#: ../cache/locales.php:149 -msgid "Use desktop notifications" -msgstr "" - -#: ../cache/locales.php:150 +#: [title]data msgid "Data" msgstr "" -#: ../cache/locales.php:151 +#: [title]cache msgid "Cache" msgstr "" -#: ../cache/locales.php:152 ../cache/locales.php:218 ../cache/locales.php:466 +#: [title]contacts [menu]contacts [page]contacts msgid "Contacts" msgstr "" -#: ../cache/locales.php:153 ../cache/locales.php:480 +#: [title]posts [page]posts msgid "Posts" msgstr "" -#: ../cache/locales.php:154 +#: [title]messages msgid "Messages" msgstr "" -#: ../cache/locales.php:155 ../cache/locales.php:423 +#: [config]general +msgid "General" +msgstr "" + +#: [config]language +msgid "Language" +msgstr "Yezh" + +#: [config]roster +msgid "Roster display" +msgstr "" + +#: [config]roster_show +msgid "Show the offline contacts" +msgstr "" + +#: [config]roster_hide +msgid "Hide the offline contacts" +msgstr "" + +#: [config]appearence +msgid "Appearence" +msgstr "" + +#: [config]info +msgid "This configuration is shared wherever you are connected" +msgstr "" + +#: [notifications]message +msgid "Notify on incoming message" +msgstr "" + +#: [notifications]desktop +msgid "Use desktop notifications" +msgstr "" + +#: [general]legend [general]general_title msgid "General Informations" msgstr "Titouroù hollek" -#: ../cache/locales.php:158 ../cache/locales.php:427 +#: [general]name [public_groups]name [chatrooms]name +msgid "Name" +msgstr "Anv" + +#: [general]date_of_birth msgid "Date of Birth" msgstr "Devezh ganedigezh" -#: ../cache/locales.php:159 ../cache/locales.php:428 +#: [general]gender msgid "Gender" msgstr "Rev" -#: ../cache/locales.php:160 ../cache/locales.php:429 +#: [general]marital msgid "Marital Status" msgstr "Statud-dimez" -#: ../cache/locales.php:161 ../cache/locales.php:426 +#: [general]email msgid "Email" msgstr "" -#: ../cache/locales.php:162 ../cache/locales.php:430 +#: [general]website msgid "Website" msgstr "Lec'hienn web" -#: ../cache/locales.php:163 ../cache/locales.php:431 +#: [general]about msgid "About Me" msgstr "Diwar ma fenn" -#: ../cache/locales.php:164 +#: [general]accounts msgid "Other Accounts" msgstr "" -#: ../cache/locales.php:165 +#: [general]tune msgid "Is Listening" msgstr "" -#: ../cache/locales.php:166 ../cache/locales.php:432 +#: [position]legend [position]position_title msgid "Geographic Position" msgstr "" -#: ../cache/locales.php:167 ../cache/locales.php:433 +#: [position]locality msgid "Locality" msgstr "" -#: ../cache/locales.php:168 ../cache/locales.php:434 +#: [position]country msgid "Country" msgstr "" -#: ../cache/locales.php:169 +#: [mood]title msgid "Mood" msgstr "" -#: ../cache/locales.php:170 +#: [mood]im msgid "I'm " msgstr "" -#: ../cache/locales.php:171 +#: [listen]title msgid "Listening" msgstr "" -#: ../cache/locales.php:173 +#: [last]title msgid "Last seen" msgstr "" -#: ../cache/locales.php:174 +#: [client]title msgid "Client Informations" msgstr "Titouroù an arval" -#: ../cache/locales.php:175 +#: [explore]last_registered msgid "Last registered" msgstr "" -#: ../cache/locales.php:176 +#: [explore]explore msgid "Find some new friends" msgstr "" -#: ../cache/locales.php:177 ../cache/locales.php:533 +#: [edit]title [button]edit msgid "Edit" msgstr "" -#: ../cache/locales.php:178 +#: [edit]alias msgid "Alias" msgstr "Alias" -#: ../cache/locales.php:179 +#: [edit]group msgid "Group" msgstr "" -#: ../cache/locales.php:180 ../cache/locales.php:400 +#: [edit]updated [roster]updated msgid "Contact updated" msgstr "" -#: ../cache/locales.php:181 +#: [delete]title msgid "Are you sure?" msgstr "" -#: ../cache/locales.php:182 -msgid "" -"You are going to delete one of your contacts, please confirm your action" +#: [delete]text +msgid "You are going to delete one of your contacts, please confirm your action" msgstr "" -#: ../cache/locales.php:183 -#, php-format +#: [age]years msgid "%s years" msgstr "" -#: ../cache/locales.php:184 +#: [blog]last msgid "Last public post" msgstr "" -#: ../cache/locales.php:185 +#: [subscription]to +#, fuzzy +msgid "You can see this contact status" +msgstr "Tennañ an darempred" + +#: [subscription]to_button +msgid "Share my status" +msgstr "" + +#: [subscription]to_text +msgid "But this contact cannot see yours" +msgstr "" + +#: [subscription]from +msgid "You are not subscribed to this contact" +msgstr "" + +#: [subscription]from_button +msgid "Ask to subscribe" +msgstr "" + +#: [subscription]from_text +msgid "But this contact can still see if you are online" +msgstr "" + +#: [subscription]nil +msgid "No subscriptions" +msgstr "" + +#: [subscription]nil_button +msgid "Invite" +msgstr "" + +#: [subscription]nil_text +msgid "This contact is in your contact list but there is no subscriptions between the two accounts" +msgstr "" + +#: [group]subscribe msgid "Subscribe" msgstr "" -#: ../cache/locales.php:186 +#: [group]subscribed msgid "Subscribed" msgstr "" -#: ../cache/locales.php:187 +#: [group]unsubscribe msgid "Unsubscribe" msgstr "" -#: ../cache/locales.php:188 +#: [group]unsubscribe_text msgid "You are going to unsubscribe from this Group" msgstr "" -#: ../cache/locales.php:189 +#: [group]unsubscribed msgid "Unsubscribed" msgstr "" -#: ../cache/locales.php:190 +#: [group]share_label msgid "Make your membership to this group public to your friends" msgstr "" -#: ../cache/locales.php:191 +#: [group]label_label msgid "Give a label for this group" msgstr "" -#: ../cache/locales.php:192 +#: [group]sure msgid "Are you sure ?" msgstr "" -#: ../cache/locales.php:194 +#: [group]empty_text msgid "Discover, follow and share" msgstr "" -#: ../cache/locales.php:195 +#: [group]empty msgid "Something bad happened to this group" msgstr "" -#: ../cache/locales.php:196 +#: [group]config_saved msgid "Group configuration saved" msgstr "" -#: ../cache/locales.php:197 +#: [group]delete_title msgid "Delete the group" msgstr "" -#: ../cache/locales.php:198 -msgid "" -"You are going to delete the following group. Please confirm your action." +#: [group]delete_text +msgid "You are going to delete the following group. Please confirm your action." msgstr "" -#: ../cache/locales.php:199 -msgid "" -"It seems that this group doesn't exists anymore. Do you want to remove it " -"from your subscriptions?" +#: [group]delete_clean_text +msgid "It seems that this group doesn't exists anymore. Do you want to remove it from your subscriptions?" msgstr "" -#: ../cache/locales.php:201 ../cache/locales.php:408 +#: [group]counter +msgid "%s groups on this server" +msgstr "" + +#: [group]subscriptions [statistics]subscriptions msgid "Subscriptions" msgstr "" -#: ../cache/locales.php:202 ../cache/locales.php:290 +#: [group]servers +msgid "Groups servers" +msgstr "" + +#: [group]search_server +msgid "Search for a new server" +msgstr "" + +#: [group]help_info1 +msgid "Groups are the perfect way to share posts about topics that you like with all the other Movim's users." +msgstr "" + +#: [group]help_info2 +msgid "Choose a server and a Group and subscribe to it using the %s button in the header. You can also create a new one using the %s button." +msgstr "" + +#: [group]help_info3 +msgid "Done? You can now publish a new post in the Group by using the %s button." +msgstr "" + +#: [group]help_info4 +msgid "You will find a list of all your subscribed Groups in My Subscriptions and receive instantly all the new incoming posts in the %sNews%s page." +msgstr "" + +#: [groups]empty_title msgid "Hello" msgstr "" -#: ../cache/locales.php:203 ../cache/locales.php:225 ../cache/locales.php:291 +#: [groups]contact_post [hello]contact_post [menu]contact_post msgid "Contact post" msgstr "" -#: ../cache/locales.php:204 -msgid "" -"You don't have any subscriptions yet, select a group server above to start " -"exploring." +#: [groups]empty_text1 +msgid "You don't have any subscriptions yet, select a group server above to start exploring." msgstr "" -#: ../cache/locales.php:205 +#: [groups]empty_text2 msgid "Subscribe to your favorite feeds by bookmarking them." msgstr "" -#: ../cache/locales.php:206 +#: [groups]subscriptions msgid "My Subscriptions" msgstr "" -#: ../cache/locales.php:207 +#: [groups]add msgid "Create a new Group" msgstr "" -#: ../cache/locales.php:208 +#: [groups]name msgid "Group name" msgstr "" -#: ../cache/locales.php:209 +#: [groups]name_example msgid "My Little Pony - Fan Club" msgstr "" -#: ../cache/locales.php:210 +#: [groups]created msgid "Group created successfully" msgstr "" -#: ../cache/locales.php:211 +#: [groups]deleted msgid "Group deleted successfully" msgstr "" -#: ../cache/locales.php:212 +#: [groups]name_error msgid "Please provide a valid group name (4 characters minimum)" msgstr "" -#: ../cache/locales.php:213 +#: [groups]no_creation msgid "You cannot create a new Group on this server" msgstr "" -#: ../cache/locales.php:214 -#, php-format +#: [groups]sub msgid "%s subscribers" msgstr "" -#: ../cache/locales.php:215 -#, php-format +#: [groups]num msgid "%s posts" msgstr "" -#: ../cache/locales.php:216 +#: [groups]disco_error +msgid "This server doesn't exists" +msgstr "" + +#: [menu]all msgid "All" msgstr "" -#: ../cache/locales.php:219 +#: [menu]refresh msgid "Refresh all the streams" msgstr "" -#: ../cache/locales.php:220 ../cache/locales.php:402 -msgid "Search" +#: [roster]search +msgid "Search in your contacts" msgstr "" -#: ../cache/locales.php:221 +#: [hello]active_contacts +#, fuzzy +msgid "Active contacts" +msgstr "Oberennoù" + +#: [hello]chat msgid "Go on the Chat page" msgstr "" -#: ../cache/locales.php:222 -msgid "Read all theses articles on the News page" -msgstr "" - -#: ../cache/locales.php:223 -msgid "Visit your public blog" -msgstr "" - -#: ../cache/locales.php:224 -msgid "See your public posts and share them with all your contacts" -msgstr "" - -#: ../cache/locales.php:226 -msgid "Universal share button" -msgstr "" - -#: ../cache/locales.php:227 -msgid "" -"Bookmark or drag and drop the following button in your toolbar and use it on " -"all the pages you want to share on Movim" -msgstr "" - -#: ../cache/locales.php:228 -msgid "Share on Movim" -msgstr "" - -#: ../cache/locales.php:229 -msgid "Frequently Asked Questions" -msgstr "" - -#: ../cache/locales.php:230 -msgid "What do the little banners refer to ?" -msgstr "Petra dalv ar bannelioù bhan ?" - -#: ../cache/locales.php:231 -msgid "" -"Thanks to these five little banners, you can quickly identitfy the level of " -"confdentiality applied to the information you provide." -msgstr "" -"A-drugarez d'ar pemp banielig-se ez eus tu deoc'h kavout al live prevezded " -"war an titour roet ganeoc'h" - -#: ../cache/locales.php:232 -msgid "White, only you can see the information" -msgstr "Gwenn, n'eus nemedoc'h a c'hell gwelout an titour" - -#: ../cache/locales.php:233 -msgid "Green, you have chosen some contacts who can see your information" -msgstr "Gwer, choazet ho peus an darempredoù a c'hell gwelet ho titouroù" - -#: ../cache/locales.php:234 -msgid "Orange, all your contact list can see your information" -msgstr "Orañjez, tout ho darempredoù a c'hell gwelet ho titouroù" - -#: ../cache/locales.php:235 -msgid "Red, everybody in the XMPP network can see your information" -msgstr "Ruz, an holl en ho rouedad XMPP a c'hell gwelet ho titouroù" - -#: ../cache/locales.php:236 -msgid "Black, the whole Internet can see your information" -msgstr "Du, an internet a-bezh a c'hell gwelet ho titouroù" - -#: ../cache/locales.php:237 -msgid "Looking for some documentation ?" -msgstr "" - -#: ../cache/locales.php:238 -msgid "Read the Wiki" -msgstr "" - -#: ../cache/locales.php:239 -msgid "Talk with us by email ?" -msgstr "" - -#: ../cache/locales.php:240 -msgid "Join the Mailing List" -msgstr "" - -#: ../cache/locales.php:241 -msgid "Chat with the team ?" -msgstr "" - -#: ../cache/locales.php:242 -msgid "Join the Chatroom" -msgstr "" - -#: ../cache/locales.php:243 -msgid "Location node created" -msgstr "" - -#: ../cache/locales.php:244 -msgid "Bookmark node created" -msgstr "" - -#: ../cache/locales.php:245 -msgid "Profile node created" -msgstr "" - -#: ../cache/locales.php:246 -msgid "Avatar node created" -msgstr "" - -#: ../cache/locales.php:247 -msgid "Subscriptions node created" -msgstr "" - -#: ../cache/locales.php:248 -msgid "Microblog node created" -msgstr "" - -#: ../cache/locales.php:249 -msgid "Location" -msgstr "" - -#: ../cache/locales.php:250 -msgid "Wrong position" -msgstr "" - -#: ../cache/locales.php:251 -msgid "Location updated" -msgstr "" - -#: ../cache/locales.php:252 -msgid "Update my position" -msgstr "" - -#: ../cache/locales.php:253 -msgid "Wrong username" -msgstr "Anv implijer direizh" - -#: ../cache/locales.php:254 -msgid "Invalid JID" -msgstr "JID direizh" - -#: ../cache/locales.php:255 -msgid "Empty Challenge from the server" -msgstr "" - -#: ../cache/locales.php:256 -msgid "XMPP Domain error, your account is not a correct Jabber ID" -msgstr "Kudenn Domani XMPP, ho gont n'eo ket un ID Jabber reizh" - -#: ../cache/locales.php:257 -msgid "Some data are missing !" -msgstr "Roadennoù 'zo a vank !" - -#: ../cache/locales.php:258 -msgid "Wrong password" -msgstr "Ger-tremen direizh" - -#: ../cache/locales.php:259 -msgid "Internal server error" -msgstr "Kudenn servijer diabarzh" - -#: ../cache/locales.php:260 -msgid "Session error" -msgstr "Kudenn dalc'h" - -#: ../cache/locales.php:261 -msgid "Account successfully created" -msgstr "Kont krouet gant berzh." - -#: ../cache/locales.php:262 ../cache/locales.php:271 -msgid "Your XMPP server is unauthorized" -msgstr "" - -#: ../cache/locales.php:263 -msgid "The server takes too much time to respond" -msgstr "" - -#: ../cache/locales.php:264 -msgid "Your web browser is too old to use with Movim." -msgstr "Ho merdeer a zo re gozh evit implij Movim" - -#: ../cache/locales.php:265 -msgid "" -"Movim cannot talk with the server, please try again later (Websocket " -"connection error)" -msgstr "" - -#: ../cache/locales.php:266 -msgid "Impossible login" -msgstr "" - -#: ../cache/locales.php:267 -msgid "Oops!" -msgstr "" - -#: ../cache/locales.php:268 ../cache/locales.php:449 ../cache/locales.php:455 -msgid "Unknown error" -msgstr "Kudenn dianavezet" - -#: ../cache/locales.php:269 -msgid "Invalid username format" -msgstr "" - -#: ../cache/locales.php:270 -msgid "Invalid password format" -msgstr "" - -#: ../cache/locales.php:272 -msgid "A Movim session is already open on an other device" -msgstr "" - -#: ../cache/locales.php:273 -msgid "Movim failed to authenticate. You entered wrong data" -msgstr "" -"N'eo ket deuet a-benn Movim da gennaskañ. Lakaet ho peus roadennoù fall." - -#: ../cache/locales.php:274 -msgid "Authentication mechanism not supported by Movim" -msgstr "" - -#: ../cache/locales.php:275 -msgid "The XMPP authentification failed" -msgstr "Ar c'hennaskañ XMPP a zo c'hwitet" - -#: ../cache/locales.php:276 -#, php-format -msgid "" -"You can login with Facebook (chat only) using %syour.id@chat.facebook.com%s " -"and your password" -msgstr "" - -#: ../cache/locales.php:277 -#, php-format -msgid "%sGmail accounts are also compatible%s but are not fully supported" -msgstr "" - -#: ../cache/locales.php:278 -msgid "You can login using your favorite Jabber account" -msgstr "" - -#: ../cache/locales.php:279 -msgid "or with our demonstration account" -msgstr "" - -#: ../cache/locales.php:280 ../cache/locales.php:435 -msgid "Accounts" -msgstr "" - -#: ../cache/locales.php:281 -msgid "My address" -msgstr "Ho chomlec'h" - -#: ../cache/locales.php:283 -msgid "Create one !" -msgstr "" - -#: ../cache/locales.php:284 -msgid "No account yet ?" -msgstr "" - -#: ../cache/locales.php:285 -msgid "Another account" -msgstr "" - -#: ../cache/locales.php:286 -msgid "You can login with accounts from theses servers" -msgstr "" - -#: ../cache/locales.php:287 -msgid "Connected" -msgstr "" - -#: ../cache/locales.php:288 -msgid "Population" -msgstr "" - -#: ../cache/locales.php:289 -msgid "Bad nickname (between 4 and 40 characters)" -msgstr "" - -#: ../cache/locales.php:292 -msgid "" -"Welcome on your news feed, here you will see all the posts published in the " -"groups you have subscribed." -msgstr "" - -#: ../cache/locales.php:293 -msgid "Refreshing all the streams" -msgstr "" - -#: ../cache/locales.php:294 -msgid "This post is public" -msgstr "" - -#: ../cache/locales.php:295 -msgid "Manage your members" -msgstr "" - -#: ../cache/locales.php:296 -msgid "Get the members" -msgstr "" - -#: ../cache/locales.php:297 -msgid "Affiliations saved" -msgstr "" - -#: ../cache/locales.php:298 -msgid "Manage your subscriptions" -msgstr "" - -#: ../cache/locales.php:299 -msgid "Manage the subscriptions" -msgstr "" - -#: ../cache/locales.php:300 -msgid "Get the subscriptions" -msgstr "" - -#: ../cache/locales.php:301 -msgid "Subscriptions saved" -msgstr "" - -#: ../cache/locales.php:302 -msgid "Pending Invitations" -msgstr "" - -#: ../cache/locales.php:303 -#, php-format -msgid "%s wants to talk with you" -msgstr "" - -#: ../cache/locales.php:304 -msgid "Manage" -msgstr "" - -#: ../cache/locales.php:305 ../cache/locales.php:338 -msgid "News Feed" -msgstr "" - -#: ../cache/locales.php:306 ../cache/locales.php:339 -msgid "Discover and register to the groups you are interested in" -msgstr "" - -#: ../cache/locales.php:307 ../cache/locales.php:340 ../cache/locales.php:482 -msgid "Preview" -msgstr "" - -#: ../cache/locales.php:308 ../cache/locales.php:341 ../cache/locales.php:478 -msgid "Help" -msgstr "Sikour" - -#: ../cache/locales.php:309 ../cache/locales.php:342 -msgid "More help" -msgstr "" - -#: ../cache/locales.php:310 ../cache/locales.php:343 -msgid "Markdown syntax manual" -msgstr "" - -#: ../cache/locales.php:311 ../cache/locales.php:344 ../cache/locales.php:681 -msgid "Title" -msgstr "" - -#: ../cache/locales.php:312 ../cache/locales.php:345 -msgid "Content" -msgstr "" - -#: ../cache/locales.php:313 ../cache/locales.php:346 -msgid "Link" -msgstr "" - -#: ../cache/locales.php:314 ../cache/locales.php:347 -msgid "Tags" -msgstr "" - -#: ../cache/locales.php:315 ../cache/locales.php:348 -msgid "Please enter a valid url" -msgstr "" - -#: ../cache/locales.php:316 ../cache/locales.php:349 -msgid "No content to preview" -msgstr "" - -#: ../cache/locales.php:317 ../cache/locales.php:350 ../cache/locales.php:687 -msgid "No content" -msgstr "" - -#: ../cache/locales.php:318 ../cache/locales.php:351 -msgid "Post published" -msgstr "" - -#: ../cache/locales.php:319 ../cache/locales.php:352 -msgid "Post deleted" -msgstr "" - -#: ../cache/locales.php:320 ../cache/locales.php:353 -msgid "This picture will be added to your gallery" -msgstr "" - -#: ../cache/locales.php:321 ../cache/locales.php:354 -msgid "What's Hot" -msgstr "" - -#: ../cache/locales.php:322 ../cache/locales.php:355 -msgid "New post" -msgstr "" - -#: ../cache/locales.php:323 ../cache/locales.php:357 -msgid "" -"You can also use services like Imgur or Flickr to host your picture and " -"paste the link here." -msgstr "" - -#: ../cache/locales.php:324 -#, php-format -msgid "This is a re-post from %s" -msgstr "" - -#: ../cache/locales.php:325 -#, php-format -msgid "See %s profile" -msgstr "" - -#: ../cache/locales.php:326 -msgid "Publish this post on your public feed?" -msgstr "" - -#: ../cache/locales.php:327 -msgid "Post published on your blog" -msgstr "" - -#: ../cache/locales.php:328 -msgid "Post removed from your blog" -msgstr "" - -#: ../cache/locales.php:329 ../cache/locales.php:701 -msgid "Delete this post" -msgstr "" - -#: ../cache/locales.php:330 -msgid "You are going to delete this post, please confirm your action" -msgstr "" - -#: ../cache/locales.php:331 -msgid "Comments disabled" -msgstr "" - -#: ../cache/locales.php:332 -msgid "Comment published" -msgstr "" - -#: ../cache/locales.php:333 -msgid "Disconnect" -msgstr "" - -#: ../cache/locales.php:334 -msgid "Your status here !" -msgstr "" - -#: ../cache/locales.php:335 -msgid "Status updated" -msgstr "" - -#: ../cache/locales.php:336 -msgid "Status" -msgstr "" - -#: ../cache/locales.php:337 -msgid "Presence" -msgstr "" - -#: ../cache/locales.php:356 -msgid "Publish" -msgstr "" - -#: ../cache/locales.php:358 -msgid "You cannot publish a post on this Group" -msgstr "" - -#: ../cache/locales.php:359 -msgid "" -"Some fields have been filled in. Do you still want to go back and loose " -"their content?" -msgstr "" - -#: ../cache/locales.php:360 -msgid "Shared" -msgstr "" - -#: ../cache/locales.php:362 -#, php-format -msgid "%s has been added to your public groups" -msgstr "" - -#: ../cache/locales.php:363 -#, php-format -msgid "%s has been removed from your public groups" -msgstr "" - -#: ../cache/locales.php:364 -msgid "Add a chatroom" -msgstr "" - -#: ../cache/locales.php:365 -msgid "You don't have any chatroom yet." -msgstr "" - -#: ../cache/locales.php:366 -msgid "Add one by clicking on the add button in the header." -msgstr "" - -#: ../cache/locales.php:367 -msgid "Chatrooms" -msgstr "" - -#: ../cache/locales.php:370 -msgid "My Favorite Room" -msgstr "" - -#: ../cache/locales.php:374 -msgid "Remove a chatroom" -msgstr "" - -#: ../cache/locales.php:375 -msgid "" -"You are going to remove the following chatroom. Please confirm your action." -msgstr "" - -#: ../cache/locales.php:378 -msgid "Users in the room" -msgstr "" - -#: ../cache/locales.php:379 -msgid "Please enter a correct nickname (6 to 40 characters)" -msgstr "" - -#: ../cache/locales.php:381 -msgid "Public chatroom" -msgstr "" - -#: ../cache/locales.php:382 -msgid "Please provide a room address" -msgstr "" - -#: ../cache/locales.php:383 -msgid "You are currently logued as an anonymous user." -msgstr "" - -#: ../cache/locales.php:384 -msgid "" -"You can join using your own account or create one on the login page by " -"loging out using the cross in the top-right corner." -msgstr "" - -#: ../cache/locales.php:385 -#, php-format -msgid "Login on %s" -msgstr "" - -#: ../cache/locales.php:386 -msgid "Your nickname" -msgstr "" - -#: ../cache/locales.php:387 -msgid "Ungrouped" -msgstr "Distrollet" - -#: ../cache/locales.php:388 -msgid "Show disconnected contacts" -msgstr "" - -#: ../cache/locales.php:389 -msgid "Hide disconnected contacts" -msgstr "" - -#: ../cache/locales.php:390 -#, php-format -msgid "Show group %s" -msgstr "" - -#: ../cache/locales.php:391 -#, php-format -msgid "Hide group %s" -msgstr "" - -#: ../cache/locales.php:392 -msgid "Please enter a valid Jabber ID" -msgstr "" - -#: ../cache/locales.php:393 -msgid "" -"No contacts ? You can add one using the + button bellow or going to the " -"Explore page" -msgstr "" - -#: ../cache/locales.php:394 -msgid "Show/Hide" -msgstr "" - -#: ../cache/locales.php:395 -msgid "Enter the Jabber ID of your contact." -msgstr "" - -#: ../cache/locales.php:396 -msgid "Press enter to validate." -msgstr "" - -#: ../cache/locales.php:397 -msgid "JID" -msgstr "" - -#: ../cache/locales.php:398 -msgid "Results" -msgstr "" - -#: ../cache/locales.php:399 -msgid "Contact added" -msgstr "" - -#: ../cache/locales.php:401 -msgid "Contact deleted" -msgstr "" - -#: ../cache/locales.php:403 -msgid "This is not a valid url" -msgstr "" - -#: ../cache/locales.php:404 -msgid "Sharing the URL" -msgstr "" - -#: ../cache/locales.php:405 -msgid "Statistics" -msgstr "" - -#: ../cache/locales.php:406 -msgid "Since" -msgstr "" - -#: ../cache/locales.php:407 -msgid "Sessions" -msgstr "" - -#: ../cache/locales.php:409 -msgid "Monthly Subscriptions" -msgstr "" - -#: ../cache/locales.php:410 -msgid "Monthly Subscriptions Cumulated" -msgstr "" - -#: ../cache/locales.php:412 -msgid "" -"Movim is a decentralized social network, before creating a new account you " -"need to choose a server to register." -msgstr "" - -#: ../cache/locales.php:413 -msgid "Your server here ?" -msgstr "" - -#: ../cache/locales.php:414 -msgid "Contact us to add yours to the officially supported servers list" -msgstr "" - -#: ../cache/locales.php:416 -msgid "No public feed for this contact" -msgstr "" - -#: ../cache/locales.php:417 -msgid "No contact specified" -msgstr "" - -#: ../cache/locales.php:418 ../cache/locales.php:473 -msgid "Profile" -msgstr "Profil" - -#: ../cache/locales.php:419 -msgid "Profile Updated" -msgstr "" - -#: ../cache/locales.php:420 -msgid "Profile Not Updated" -msgstr "" - -#: ../cache/locales.php:421 -msgid "Your profile is now public" -msgstr "" - -#: ../cache/locales.php:422 -msgid "Your profile is now restricted" -msgstr "" - -#: ../cache/locales.php:436 -msgid "Twitter" -msgstr "" - -#: ../cache/locales.php:437 -msgid "Skype" -msgstr "" - -#: ../cache/locales.php:438 -msgid "Yahoo" -msgstr "" - -#: ../cache/locales.php:439 -msgid "Privacy Level" -msgstr "" - -#: ../cache/locales.php:440 -msgid "Is this profile public ?" -msgstr "" - -#: ../cache/locales.php:441 -msgid "" -"Please pay attention ! By making your profile public, all the information " -"listed above will be available for all the Movim users and on the whole " -"Internet." -msgstr "" - -#: ../cache/locales.php:442 -msgid "Call" -msgstr "" - -#: ../cache/locales.php:443 -msgid "Hang up" -msgstr "" - -#: ../cache/locales.php:444 -msgid "Connection" -msgstr "" - -#: ../cache/locales.php:445 ../cache/locales.php:451 -msgid "Hung up" -msgstr "" - -#: ../cache/locales.php:446 ../cache/locales.php:452 -msgid "Your contact is busy" -msgstr "" - -#: ../cache/locales.php:447 ../cache/locales.php:453 -msgid "Declined" -msgstr "" - -#: ../cache/locales.php:448 ../cache/locales.php:454 -msgid "Remote application incompatible" -msgstr "" - -#: ../cache/locales.php:450 ../cache/locales.php:456 -msgid "Is calling you" -msgstr "" - -#: ../cache/locales.php:457 -msgid "You don't have javascript enabled. Good luck with that." -msgstr "" - -#: ../cache/locales.php:458 -msgid "" -"Movim is a kickass distributed social networking platform that protect your " -"privacy an comes with a set of awesome features." -msgstr "" - -#: ../cache/locales.php:459 -msgid "Administration" -msgstr "" - -#: ../cache/locales.php:460 -msgid "Home" -msgstr "Degemer" - -#: ../cache/locales.php:461 -msgid "Discover" -msgstr "" - -#: ../cache/locales.php:462 -msgid "Explore" -msgstr "" - -#: ../cache/locales.php:463 -msgid "Account Creation" -msgstr "Krouadur ar gont" - -#: ../cache/locales.php:464 +#: [hello]news [page]news msgid "News" msgstr "Nevezadennoù" -#: ../cache/locales.php:465 -msgid "Avatar" -msgstr "Avatar" - -#: ../cache/locales.php:467 -msgid "Chats" +#: [hello]news_page +msgid "Read all theses articles on the News page" msgstr "" -#: ../cache/locales.php:470 -msgid "Server" +#: [hello]blog_title +msgid "Visit your public blog" msgstr "" -#: ../cache/locales.php:471 -msgid "Public Groups" +#: [hello]blog_text +msgid "See your public posts and share them with all your contacts" msgstr "" -#: ../cache/locales.php:472 -msgid "Viewer" +#: [hello]share_title +msgid "Universal share button" msgstr "" -#: ../cache/locales.php:474 -msgid "Media" +#: [hello]share_text +msgid "Bookmark or drag and drop the following button in your toolbar and use it on all the pages you want to share on Movim" msgstr "" -#: ../cache/locales.php:475 -msgid "Blog" +#: [hello]share_button +msgid "Share on Movim" msgstr "" -#: ../cache/locales.php:476 -msgid "About" +#: [help]faq +msgid "Frequently Asked Questions" msgstr "" -#: ../cache/locales.php:477 -msgid "Login" +#: [banner]title +msgid "What do the little banners refer to ?" +msgstr "Petra dalv ar bannelioù bhan ?" + +#: [banner]info1 +msgid "Thanks to these five little banners, you can quickly identitfy the level of confdentiality applied to the information you provide." +msgstr "A-drugarez d'ar pemp banielig-se ez eus tu deoc'h kavout al live prevezded war an titour roet ganeoc'h" + +#: [banner]white +msgid "White, only you can see the information" +msgstr "Gwenn, n'eus nemedoc'h a c'hell gwelout an titour" + +#: [banner]green +msgid "Green, you have chosen some contacts who can see your information" +msgstr "Gwer, choazet ho peus an darempredoù a c'hell gwelet ho titouroù" + +#: [banner]orange +msgid "Orange, all your contact list can see your information" +msgstr "Orañjez, tout ho darempredoù a c'hell gwelet ho titouroù" + +#: [banner]red +msgid "Red, everybody in the XMPP network can see your information" +msgstr "Ruz, an holl en ho rouedad XMPP a c'hell gwelet ho titouroù" + +#: [banner]black +msgid "Black, the whole Internet can see your information" +msgstr "Du, an internet a-bezh a c'hell gwelet ho titouroù" + +#: [wiki]question +msgid "Looking for some documentation ?" msgstr "" -#: ../cache/locales.php:479 -msgid "Feed" -msgstr "Gwazh" - -#: ../cache/locales.php:481 -msgid "Gallery" +#: [wiki]button +msgid "Read the Wiki" msgstr "" -#: ../cache/locales.php:483 -msgid "Visio-conference" +#: [ml]question +msgid "Talk with us by email ?" msgstr "" -#: ../cache/locales.php:484 -msgid "Pods" +#: [ml]button +msgid "Join the Mailing List" msgstr "" -#: ../cache/locales.php:485 -msgid "Share" +#: [chatroom]question +msgid "Chat with the team ?" msgstr "" -#: ../cache/locales.php:486 -msgid "Room" +#: [chatroom]button +msgid "Join the Chatroom" msgstr "" -#: ../cache/locales.php:487 -#, php-format -msgid "Error: %s" -msgstr "Kudenn: %s" - -#: ../cache/locales.php:488 -#, php-format -msgid "Cannot load file '%s'" -msgstr "Neus ket tu kargañ ar restr '%s'" - -#: ../cache/locales.php:489 -#, php-format -msgid "Route error, please set all the parameters for the page %s" +#: [init]location +msgid "Location node created" msgstr "" -#: ../cache/locales.php:490 -#, php-format -msgid "Requested widget '%s' doesn't exist." +#: [init]bookmark +msgid "Bookmark node created" msgstr "" -#: ../cache/locales.php:491 -#, php-format -msgid "Requested event '%s' not registered." +#: [init]vcard4 +msgid "Profile node created" msgstr "" -#: ../cache/locales.php:492 -msgid "Whoops!" +#: [init]avatar +msgid "Avatar node created" msgstr "" -#: ../cache/locales.php:493 -msgid "It seem that you don't have any pictures here?" +#: [init]subscriptions +msgid "Subscriptions node created" msgstr "" -#: ../cache/locales.php:494 -msgid "You can try to upload a couple by going to the Media page" +#: [init]microblog +msgid "Microblog node created" msgstr "" -#: ../cache/locales.php:495 -#, php-format -msgid "%s - About" +#: [location]title +msgid "Location" msgstr "" -#: ../cache/locales.php:496 -#, php-format -msgid "%s - Account" +#: [location]wrong_postition +msgid "Wrong position" msgstr "" -#: ../cache/locales.php:497 -#, php-format -msgid "%s - Administration Panel" +#: [location]updated +msgid "Location updated" msgstr "" -#: ../cache/locales.php:498 -#, php-format -msgid "%s - Blog" +#: [location]update +msgid "Update my position" msgstr "" -#: ../cache/locales.php:499 -#, php-format -msgid "%s - Configuration" -msgstr "%s - Kefluniadur" - -#: ../cache/locales.php:500 -#, php-format -msgid "%s - Discover" +#: [login_anonymous]bad_username +msgid "Bad nickname (between 4 and 40 characters)" msgstr "" -#: ../cache/locales.php:501 -#, php-format -msgid "%s - Explore" +#: [error]username +msgid "Wrong username" +msgstr "Anv implijer direizh" + +#: [error]jid +msgid "Invalid JID" +msgstr "JID direizh" + +#: [error]empty_challenge +msgid "Empty Challenge from the server" msgstr "" -#: ../cache/locales.php:502 -#, php-format -msgid "%s - Help Page" -msgstr "%s - Pajenn sikour" +#: [error]dns +msgid "XMPP Domain error, your account is not a correct Jabber ID" +msgstr "Kudenn Domani XMPP, ho gont n'eo ket un ID Jabber reizh" -#: ../cache/locales.php:503 -#, php-format -msgid "%s - Login to Movim" -msgstr "%s - Kennaskañ da Movim" +#: [error]data_missings +msgid "Some data are missing !" +msgstr "Roadennoù 'zo a vank !" -#: ../cache/locales.php:504 -#, php-format -msgid "%s - Welcome to Movim" -msgstr "%s - Degemer mat war Movim" +#: [error]wrong_password +msgid "Wrong password" +msgstr "Ger-tremen direizh" -#: ../cache/locales.php:505 -#, php-format -msgid "%s - Media" +#: [error]internal +msgid "Internal server error" +msgstr "Kudenn servijer diabarzh" + +#: [error]session +msgid "Session error" +msgstr "Kudenn dalc'h" + +#: [error]account_created +msgid "Account successfully created" +msgstr "Kont krouet gant berzh." + +#: [error]xmpp_unauthorized +msgctxt "[error]xmpp_unauthorized" +msgid "Your XMPP server is unauthorized" msgstr "" -#: ../cache/locales.php:506 -#, php-format -msgid "%s - News" +#: [error]mec_error +msgid "The server takes too much time to respond" msgstr "" -#: ../cache/locales.php:507 -#, php-format -msgid "%s - Group Configuration" +#: [error]too_old +msgid "Your web browser is too old to use with Movim." +msgstr "Ho merdeer a zo re gozh evit implij Movim" + +#: [error]websocket +msgid "Movim cannot talk with the server, please try again later (Websocket connection error)" msgstr "" -#: ../cache/locales.php:508 -#, php-format -msgid "%s - Group" +#: [error]impossible +msgid "Impossible login" msgstr "" -#: ../cache/locales.php:509 -#, php-format -msgid "%s - 404" +#: [error]title +msgid "Oops!" msgstr "" -#: ../cache/locales.php:510 -#, php-format -msgid "%s - Profile" -msgstr "%s - Profil" +#: [error]default [visio]unknown_error +msgid "Unknown error" +msgstr "Kudenn dianavezet" -#: ../cache/locales.php:511 -#, php-format -msgid "%s - Server" +#: [error]login_format +msgid "Invalid username format" msgstr "" -#: ../cache/locales.php:512 -msgid "Validate" +#: [error]password_format +msgid "Invalid password format" msgstr "" -#: ../cache/locales.php:513 -msgid "Refresh" +#: [error]unauthorized +msgctxt "[error]unauthorized" +msgid "Your XMPP server is unauthorized" msgstr "" -#: ../cache/locales.php:514 -msgid "Add" -msgstr "Ouzhpennañ" - -#: ../cache/locales.php:515 -msgid "Delete" +#: [error]conflict +msgid "A Movim session is already open on an other device" msgstr "" -#: ../cache/locales.php:516 -msgid "Remove" +#: [error]wrong_account +msgid "Movim failed to authenticate. You entered wrong data" +msgstr "N'eo ket deuet a-benn Movim da gennaskañ. Lakaet ho peus roadennoù fall." + +#: [error]mechanism +msgid "Authentication mechanism not supported by Movim" msgstr "" -#: ../cache/locales.php:517 -msgid "Cancel" +#: [error]fail_auth +msgid "The XMPP authentification failed" +msgstr "Ar c'hennaskañ XMPP a zo c'hwitet" + +#: [account]title [accounts]accounts_title +msgid "Accounts" msgstr "" -#: ../cache/locales.php:518 -msgid "Close" +#: [form]username +msgid "My address" +msgstr "Ho chomlec'h" + +#: [form]create_one +msgid "Create one !" msgstr "" -#: ../cache/locales.php:519 -msgid "Update" +#: [form]another_account +msgid "Another account" msgstr "" -#: ../cache/locales.php:520 -msgid "Updating" +#: [form]no_account +msgid "No account yet ?" msgstr "" -#: ../cache/locales.php:521 +#: [form]whitelist.info +msgid "You can login with accounts from theses servers" +msgstr "" + +#: [form]connected +msgid "Connected" +msgstr "" + +#: [form]population +msgid "Population" +msgstr "" + +#: [menu]empty_title +msgid "No news yet..." +msgstr "" + +#: [menu]empty +msgid "Welcome on your news feed, here you will see all the posts published by your contacts and in the groups you have subscribed." +msgstr "" + +#: [menu]refresh +msgid "Refreshing all the streams" +msgstr "" + +#: [menu]public +msgid "This post is public" +msgstr "" + +#: [affiliations]title +msgid "Manage your members" +msgstr "" + +#: [affiliations]get +msgid "Get the members" +msgstr "" + +#: [affiliations]saved +msgid "Affiliations saved" +msgstr "" + +#: [subscriptions]title +msgid "Manage your subscriptions" +msgstr "" + +#: [subscriptions]info +msgid "Manage the subscriptions" +msgstr "" + +#: [subscriptions]get +msgid "Get the subscriptions" +msgstr "" + +#: [subscriptions]saved +msgid "Subscriptions saved" +msgstr "" + +#: [notifs]title +msgid "Pending Invitations" +msgstr "" + +#: [notifs]wants_to_talk +msgid "%s wants to talk with you" +msgstr "" + +#: [notifs]manage +msgid "Manage" +msgstr "" + +#: [post]news_feed +msgid "News Feed" +msgstr "" + +#: [post]placeholder +msgid "Discover and register to the groups you are interested in" +msgstr "" + +#: [post]preview [page]preview +msgid "Preview" +msgstr "" + +#: [post]help [page]help +msgid "Help" +msgstr "Sikour" + +#: [post]help_more +msgid "More help" +msgstr "" + +#: [post]help_manual +msgid "Markdown syntax manual" +msgstr "" + +#: [post]title +msgid "Title" +msgstr "" + +#: [post]content +msgid "Content" +msgstr "" + +#: [post]link +msgid "Link" +msgstr "" + +#: [post]tags +msgid "Tags" +msgstr "" + +#: [post]valid_url [publish]valid_url +msgid "Please enter a valid url" +msgstr "" + +#: [post]no_content_preview [publish]no_content_preview +msgid "No content to preview" +msgstr "" + +#: [post]no_content [publish]no_content [post]empty +msgid "No content" +msgstr "" + +#: [post]published +msgid "Post published" +msgstr "" + +#: [post]deleted +msgid "Post deleted" +msgstr "" + +#: [post]gallery +msgid "This picture will be added to your gallery" +msgstr "" + +#: [post]hot +msgid "What's Hot" +msgstr "" + +#: [post]hot_text +msgid "Posts recently published in Groups that you are not subscribed (yet)" +msgstr "" + +#: [post]new [publish]new +msgid "New post" +msgstr "" + +#: [post]embed_tip +msgid "You can also use services like Imgur or Flickr to host your picture and paste the link here." +msgstr "" + +#: [post]repost +msgid "This is a re-post from %s" +msgstr "" + +#: [post]repost_profile +msgid "See %s profile" +msgstr "" + +#: [post]public +msgid "Publish this post publicly?" +msgstr "" + +#: [post]blog_add +msgid "Post published on your blog" +msgstr "" + +#: [post]blog_remove +msgid "Post removed from your blog" +msgstr "" + +#: [post]delete_title [post]delete +msgid "Delete this post" +msgstr "" + +#: [post]delete_text +msgid "You are going to delete this post, please confirm your action" +msgstr "" + +#: [post]comments_disabled +msgid "Comments disabled" +msgstr "" + +#: [post]comment_published +msgid "Comment published" +msgstr "" + +#: [status]disconnect +msgid "Disconnect" +msgstr "" + +#: [status]here +msgid "Your status here !" +msgstr "" + +#: [status]updated +msgid "Status updated" +msgstr "" + +#: [status]status +msgid "Status" +msgstr "" + +#: [status]presence +msgid "Presence" +msgstr "" + +#: [status]online +msgid "Online with Movim" +msgstr "" + +#: [publish]title +msgid "Publish" +msgstr "" + +#: [publish]attach +msgid "Add a file or a picture to your post" +msgstr "" + +#: [publish]no_publication +msgid "You cannot publish a post on this Group" +msgstr "" + +#: [publish]form_filled +msgid "Some fields have been filled in. Do you still want to go back and loose their content?" +msgstr "" + +#: [public_groups]shared +msgid "Shared" +msgstr "" + +#: [public_groups]added +msgid "%s has been added to your public groups" +msgstr "" + +#: [rooms]add +msgid "Add a chatroom" +msgstr "" + +#: [rooms]empty_text1 +msgid "You don't have any chatroom yet." +msgstr "" + +#: [rooms]empty_text2 +msgid "Add one by clicking on the add button in the header." +msgstr "" + +#: [chatrooms]title +msgid "Chatrooms" +msgstr "" + +#: [chatrooms]name_placeholder +msgid "My Favorite Room" +msgstr "" + +#: [chatrooms]users +msgid "Users in the room" +msgstr "" + +#: [chatrooms]bad_nickname +msgid "Please enter a correct nickname (2 to 40 characters)" +msgstr "" + +#: [room]anonymous_title +msgid "Public chatroom" +msgstr "" + +#: [room]no_room +msgid "Please provide a room address" +msgstr "" + +#: [room]anonymous_text1 +msgid "You are currently logued as an anonymous user." +msgstr "" + +#: [room]anonymous_text2 +msgid "You can join using your own account or create one on the login page by loging out using the cross in the top-right corner." +msgstr "" + +#: [room]anonymous_login +msgid "Login on %s" +msgstr "" + +#: [room]nick +msgid "Your nickname" +msgstr "" + +#: [roster]ungrouped +msgid "Ungrouped" +msgstr "Distrollet" + +#: [roster]show_disconnected +msgid "Show disconnected contacts" +msgstr "" + +#: [roster]hide_disconnected +msgid "Hide disconnected contacts" +msgstr "" + +#: [roster]show_group +msgid "Show group %s" +msgstr "" + +#: [roster]hide_group +msgid "Hide group %s" +msgstr "" + +#: [roster]jid_error +msgid "Please enter a valid Jabber ID" +msgstr "" + +#: [roster]no_contacts_title +msgid "No contacts ?" +msgstr "" + +#: [roster]no_contacts_text +msgid "You can add one using the + button bellow" +msgstr "" + +#: [roster]show_hide +msgid "Show/Hide" +msgstr "" + +#: [roster]add_contact_info1 +msgid "Enter the Jabber ID of your contact." +msgstr "" + +#: [roster]add_contact_info2 +msgid "Press enter to validate." +msgstr "" + +#: [roster]jid +msgid "JID" +msgstr "" + +#: [roster]results +msgid "Results" +msgstr "" + +#: [roster]added +msgid "Contact added" +msgstr "" + +#: [roster]deleted +msgid "Contact deleted" +msgstr "" + +#: [roster]search +msgid "Search" +msgstr "" + +#: [share]error +msgid "This is not a valid url" +msgstr "" + +#: [share]success +msgid "Sharing the URL" +msgstr "" + +#: [statistics]title +msgid "Statistics" +msgstr "" + +#: [statistics]since +msgid "Since" +msgstr "" + +#: [statistics]sessions +msgid "Sessions" +msgstr "" + +#: [statistics]monthly_sub +msgid "Monthly Subscriptions" +msgstr "" + +#: [statistics]monthly_sub_cum +msgid "Monthly Subscriptions Cumulated" +msgstr "" + +#: [subscribe]info +msgid "Movim is a decentralized social network, before creating a new account you need to choose a server to register." +msgstr "" + +#: [subscribe]server_question +msgid "Your server here ?" +msgstr "" + +#: [subscribe]server_contact +msgid "Contact us to add yours to the officially supported servers list" +msgstr "" + +#: [feed]nope +msgid "No public feed for this contact" +msgstr "" + +#: [feed]nope_contact +msgid "No contact specified" +msgstr "" + +#: [upload]title +msgid "Upload a file" +msgstr "" + +#: [upload]choose +msgid "Choose a file to upload" +msgstr "" + +#: [vcard]title [page]profile +msgid "Profile" +msgstr "Profil" + +#: [vcard]updated +msgid "Profile Updated" +msgstr "" + +#: [vcard]not_updated +msgid "Profile Not Updated" +msgstr "" + +#: [vcard]public +msgid "Your profile is now public" +msgstr "" + +#: [vcard]restricted +msgid "Your profile is now restricted" +msgstr "" + +#: [general]nickname +#, fuzzy +msgctxt "[general]nickname" +msgid "Nickname" +msgstr "Lezanv" + +#: [accounts]twitter +msgid "Twitter" +msgstr "" + +#: [accounts]skype +msgid "Skype" +msgstr "" + +#: [accounts]yahoo +msgid "Yahoo" +msgstr "" + +#: [accounts]accounts_nickname +#, fuzzy +msgctxt "[accounts]accounts_nickname" +msgid "Nickname" +msgstr "Lezanv" + +#: [accounts]accounts_yahoo +msgid "Yahoo Account" +msgstr "" + +#: [privacy]privacy_title +msgid "Privacy Level" +msgstr "" + +#: [privacy]privacy_question +msgid "Is this profile public ?" +msgstr "" + +#: [privacy]privacy_info +msgid "Please pay attention ! By making your profile public, all the information listed above will be available for all the Movim users and on the whole Internet." +msgstr "" + +#: [save]submit [button]submit msgid "Submit" msgstr "Kinnig" -#: ../cache/locales.php:522 -msgid "Submitting" -msgstr "Kinngadenn" - -#: ../cache/locales.php:523 +#: [save]reset [button]reset msgid "Reset" msgstr "Adkregiñ" -#: ../cache/locales.php:524 +#: [visio]hung_up +msgid "Hung up" +msgstr "" + +#: [visio]busy +msgid "Your contact is busy" +msgstr "" + +#: [visio]declined +msgid "Declined" +msgstr "" + +#: [visio]calling +msgid "Is calling you" +msgstr "" + +#: [visio]call +msgid "Call" +msgstr "" + +#: [visio]hang_up +msgid "Hang up" +msgstr "" + +#: [visio]connection +msgid "Connection" +msgstr "" + +#: [global]no_js +msgid "You don't have javascript enabled. Good luck with that." +msgstr "" + +#: [global]description +msgid "Movim is a kickass distributed social networking platform that protect your privacy an comes with a set of awesome features." +msgstr "" + +#: [page]administration +msgid "Administration" +msgstr "" + +#: [page]home +msgid "Home" +msgstr "Degemer" + +#: [page]discover +msgid "Discover" +msgstr "" + +#: [page]explore +msgid "Explore" +msgstr "" + +#: [page]account_creation +msgid "Account Creation" +msgstr "Krouadur ar gont" + +#: [page]avatar +msgid "Avatar" +msgstr "Avatar" + +#: [page]chats +msgid "Chats" +msgstr "" + +#: [page]server +msgid "Server" +msgstr "" + +#: [page]public_groups +msgid "Public Groups" +msgstr "" + +#: [page]viewer +msgid "Viewer" +msgstr "" + +#: [page]media +msgid "Media" +msgstr "" + +#: [page]blog +msgid "Blog" +msgstr "" + +#: [page]about +msgid "About" +msgstr "" + +#: [page]login +msgid "Login" +msgstr "" + +#: [page]feed +msgid "Feed" +msgstr "Gwazh" + +#: [page]gallery +msgid "Gallery" +msgstr "" + +#: [page]visio +msgid "Visio-conference" +msgstr "" + +#: [page]pods +msgid "Pods" +msgstr "" + +#: [page]share +msgid "Share" +msgstr "" + +#: [page]room +msgid "Room" +msgstr "" + +#: [error]error +msgid "Error: %s" +msgstr "Kudenn: %s" + +#: [error]cannot_load_file +msgid "Cannot load file '%s'" +msgstr "Neus ket tu kargañ ar restr '%s'" + +#: [error]route +msgid "Route error, please set all the parameters for the page %s" +msgstr "" + +#: [error]widget_load_error +msgid "Requested widget '%s' doesn't exist." +msgstr "" + +#: [error]widget_call_error +msgid "Requested event '%s' not registered." +msgstr "" + +#: [error]whoops +msgid "Whoops!" +msgstr "" + +#: [error]media_not_found +msgid "It seem that you don't have any pictures here?" +msgstr "" + +#: [error]media_ask_upload +msgid "You can try to upload a couple by going to the Media page" +msgstr "" + +#: [title]about +msgid "%s - About" +msgstr "" + +#: [title]account +msgid "%s - Account" +msgstr "" + +#: [title]administration +msgid "%s - Administration Panel" +msgstr "" + +#: [title]blog +msgid "%s - Blog" +msgstr "" + +#: [title]configuration +msgid "%s - Configuration" +msgstr "%s - Kefluniadur" + +#: [title]discover +msgid "%s - Discover" +msgstr "" + +#: [title]explore +msgid "%s - Explore" +msgstr "" + +#: [title]help +msgid "%s - Help Page" +msgstr "%s - Pajenn sikour" + +#: [title]login +msgid "%s - Login to Movim" +msgstr "%s - Kennaskañ da Movim" + +#: [title]main +msgid "%s - Welcome to Movim" +msgstr "%s - Degemer mat war Movim" + +#: [title]media +msgid "%s - Media" +msgstr "" + +#: [title]news +msgid "%s - News" +msgstr "" + +#: [title]node_configuration +msgid "%s - Group Configuration" +msgstr "" + +#: [title]node +msgid "%s - Group" +msgstr "" + +#: [title]not_found +msgid "%s - 404" +msgstr "" + +#: [title]profile +msgid "%s - Profile" +msgstr "%s - Profil" + +#: [title]server +msgid "%s - Server" +msgstr "" + +#: [button]validate +msgid "Validate" +msgstr "" + +#: [button]refresh +msgid "Refresh" +msgstr "" + +#: [button]add +msgid "Add" +msgstr "Ouzhpennañ" + +#: [button]delete +msgid "Delete" +msgstr "" + +#: [button]cancel +msgid "Cancel" +msgstr "" + +#: [button]close +msgid "Close" +msgstr "" + +#: [button]update +msgid "Update" +msgstr "" + +#: [button]updating +msgid "Updating" +msgstr "" + +#: [button]submitting +msgid "Submitting" +msgstr "Kinngadenn" + +#: [button]register msgid "Register" msgstr "" -#: ../cache/locales.php:525 +#: [button]unregister msgid "Unregister" msgstr "" -#: ../cache/locales.php:526 +#: [button]save msgid "Save" msgstr "" -#: ../cache/locales.php:527 +#: [button]clear msgid "Clear" msgstr "" -#: ../cache/locales.php:528 +#: [button]upload msgid "Upload" msgstr "" -#: ../cache/locales.php:529 +#: [button]come_in msgid "Come in!" msgstr "Deuit e-barzh !" -#: ../cache/locales.php:530 +#: [button]connecting msgid "Connecting" msgstr "" -#: ../cache/locales.php:531 +#: [button]bool_yes msgid "Yes" msgstr "Ya" -#: ../cache/locales.php:532 +#: [button]bool_no msgid "No" msgstr "Nann" -#: ../cache/locales.php:534 +#: [button]return msgid "Return" msgstr "" -#: ../cache/locales.php:535 +#: [button]accept msgid "Accept" msgstr "Asantiñ" -#: ../cache/locales.php:536 +#: [button]refuse msgid "Refuse" msgstr "" -#: ../cache/locales.php:537 +#: [button]next msgid "Next" msgstr "" -#: ../cache/locales.php:538 +#: [button]previous msgid "Previous" msgstr "" -#: ../cache/locales.php:539 -#, php-format +#: [step]step msgid "Step %s" msgstr "" -#: ../cache/locales.php:542 +#: [day]title msgid "Day" msgstr "Devezh" -#: ../cache/locales.php:543 +#: [day]monday msgid "Monday" msgstr "Lun" -#: ../cache/locales.php:544 +#: [day]tuesday msgid "Tuesday" msgstr "Meurzh" -#: ../cache/locales.php:545 +#: [day]wednesday msgid "Wednesday" msgstr "Merc'her" -#: ../cache/locales.php:546 +#: [day]thursday msgid "Thursday" msgstr "Yaou" -#: ../cache/locales.php:547 +#: [day]friday msgid "Friday" msgstr "Gwener" -#: ../cache/locales.php:548 +#: [day]saturday msgid "Saturday" msgstr "Sadorn" -#: ../cache/locales.php:549 +#: [day]sunday msgid "Sunday" msgstr "" -#: ../cache/locales.php:550 ../cache/locales.php:559 +#: [gender]nil +#, fuzzy +msgctxt "[gender]nil" msgid "None" msgstr "Hini ebet" -#: ../cache/locales.php:551 +#: [gender]male msgid "Male" msgstr "Paotr" -#: ../cache/locales.php:552 +#: [gender]female msgid "Female" msgstr "Plac'h" -#: ../cache/locales.php:553 +#: [gender]other msgid "Other" msgstr "All" -#: ../cache/locales.php:554 +#: [client]bot msgid "Bot" msgstr "Robot" -#: ../cache/locales.php:555 +#: [client]desktop msgid "Desktop" msgstr "Burev" -#: ../cache/locales.php:556 +#: [client]phone msgid "Phone" msgstr "Pellgomz" -#: ../cache/locales.php:557 +#: [client]web msgid "Web" msgstr "" -#: ../cache/locales.php:558 +#: [client]registered msgid "Registered" msgstr "" -#: ../cache/locales.php:560 +#: [marital]nil +#, fuzzy +msgctxt "[marital]nil" +msgid "None" +msgstr "Hini ebet" + +#: [marital]single msgid "Single" msgstr "E-unan" -#: ../cache/locales.php:561 +#: [marital]relationship msgid "In a relationship" msgstr "E kouplad" -#: ../cache/locales.php:562 +#: [marital]married msgid "Married" msgstr "Dimezet" -#: ../cache/locales.php:563 +#: [marital]divorced msgid "Divorced" msgstr "Dizimezet" -#: ../cache/locales.php:564 +#: [marital]widowed msgid "Widowed" msgstr "Intañv(ez)" -#: ../cache/locales.php:565 +#: [marital]cohabiting msgid "Cohabiting" msgstr "Kenlojañ" -#: ../cache/locales.php:566 +#: [marital]union msgid "Civil Union" msgstr "Unvaniezh keodedel" -#: ../cache/locales.php:567 +#: [flag]white msgid "Not shared" msgstr "" -#: ../cache/locales.php:568 +#: [flag]green msgid "Shared with one contact" msgstr "" -#: ../cache/locales.php:569 +#: [flag]orange msgid "Shared with all contacts" msgstr "" -#: ../cache/locales.php:570 +#: [flag]red msgid "Shared with the XMPP network" msgstr "" -#: ../cache/locales.php:571 +#: [flag]black msgid "Shared with the whole Internet" msgstr "" -#: ../cache/locales.php:572 +#: [presence]online msgid "Online" msgstr "Enlinenn" -#: ../cache/locales.php:573 +#: [presence]away msgid "Away" msgstr "Ezvezant" -#: ../cache/locales.php:574 +#: [presence]dnd msgid "Do Not Disturb" msgstr "Arabat direnkañ" -#: ../cache/locales.php:575 +#: [presence]xa msgid "Extended Away" msgstr "Ezvezant e-pad pell" -#: ../cache/locales.php:576 +#: [presence]offline msgid "Offline" msgstr "Digennasket" -#: ../cache/locales.php:577 +#: [presence]error msgid "Error" msgstr "" -#: ../cache/locales.php:578 +#: [mood]afraid msgid "afraid" msgstr "" -#: ../cache/locales.php:579 +#: [mood]amazed msgid "amazed" msgstr "" -#: ../cache/locales.php:580 +#: [mood]amorous msgid "amorous" msgstr "" -#: ../cache/locales.php:581 +#: [mood]angry msgid "angry" msgstr "" -#: ../cache/locales.php:582 +#: [mood]annoyed msgid "annoyed" msgstr "" -#: ../cache/locales.php:583 +#: [mood]anxious msgid "anxious" msgstr "" -#: ../cache/locales.php:584 +#: [mood]aroused msgid "aroused" msgstr "" -#: ../cache/locales.php:585 +#: [mood]ashamed msgid "ashamed" msgstr "" -#: ../cache/locales.php:586 +#: [mood]bored msgid "bored" msgstr "" -#: ../cache/locales.php:587 +#: [mood]brave msgid "brave" msgstr "" -#: ../cache/locales.php:588 +#: [mood]calm msgid "calm" msgstr "" -#: ../cache/locales.php:589 +#: [mood]cautious msgid "cautious" msgstr "" -#: ../cache/locales.php:590 +#: [mood]cold msgid "cold" msgstr "" -#: ../cache/locales.php:591 +#: [mood]confident msgid "confident" msgstr "" -#: ../cache/locales.php:592 +#: [mood]confused msgid "confused" msgstr "" -#: ../cache/locales.php:593 +#: [mood]contemplative msgid "contemplative" msgstr "" -#: ../cache/locales.php:594 +#: [mood]contented msgid "contented" msgstr "" -#: ../cache/locales.php:595 +#: [mood]cranky msgid "cranky" msgstr "" -#: ../cache/locales.php:596 +#: [mood]crazy msgid "crazy" msgstr "" -#: ../cache/locales.php:597 +#: [mood]creative msgid "creative" msgstr "" -#: ../cache/locales.php:598 +#: [mood]curious msgid "curious" msgstr "" -#: ../cache/locales.php:599 +#: [mood]dejected msgid "dejected" msgstr "" -#: ../cache/locales.php:600 +#: [mood]depressed msgid "depressed" msgstr "" -#: ../cache/locales.php:601 +#: [mood]disappointed msgid "disappointed" msgstr "" -#: ../cache/locales.php:602 +#: [mood]disgusted msgid "disgusted" msgstr "" -#: ../cache/locales.php:603 +#: [mood]dismayed msgid "dismayed" msgstr "" -#: ../cache/locales.php:604 +#: [mood]distracted msgid "distracted" msgstr "" -#: ../cache/locales.php:605 +#: [mood]embarrassed msgid "embarrassed" msgstr "" -#: ../cache/locales.php:606 +#: [mood]envious msgid "envious" msgstr "" -#: ../cache/locales.php:607 +#: [mood]excited msgid "excited" msgstr "" -#: ../cache/locales.php:608 +#: [mood]flirtatious msgid "flirtatious" msgstr "" -#: ../cache/locales.php:609 +#: [mood]frustated msgid "frustated" msgstr "" -#: ../cache/locales.php:610 +#: [mood]grateful msgid "grateful" msgstr "" -#: ../cache/locales.php:611 +#: [mood]grieving msgid "grieving" msgstr "" -#: ../cache/locales.php:612 +#: [mood]grumpy msgid "grumpy" msgstr "" -#: ../cache/locales.php:613 +#: [mood]guilty msgid "guilty" msgstr "" -#: ../cache/locales.php:614 +#: [mood]happy msgid "happy" msgstr "" -#: ../cache/locales.php:615 +#: [mood]hopeful msgid "hopeful" msgstr "" -#: ../cache/locales.php:616 +#: [mood]hot msgid "hot" msgstr "" -#: ../cache/locales.php:617 +#: [mood]humbled msgid "humbled" msgstr "" -#: ../cache/locales.php:618 +#: [mood]humiliated msgid "humiliated" msgstr "" -#: ../cache/locales.php:619 +#: [mood]hungry msgid "hungry" msgstr "" -#: ../cache/locales.php:620 +#: [mood]hurt msgid "hurt" msgstr "" -#: ../cache/locales.php:621 +#: [mood]impressed msgid "impressed" msgstr "" -#: ../cache/locales.php:622 +#: [mood]in_awe msgid "in awe" msgstr "" -#: ../cache/locales.php:623 +#: [mood]in_love msgid "in love" msgstr "" -#: ../cache/locales.php:624 +#: [mood]indignant msgid "indignant" msgstr "" -#: ../cache/locales.php:625 +#: [mood]interested msgid "interested" msgstr "" -#: ../cache/locales.php:626 +#: [mood]intoxicated msgid "intoxicated" msgstr "" -#: ../cache/locales.php:627 +#: [mood]invincible msgid "invincible" msgstr "" -#: ../cache/locales.php:628 +#: [mood]jealous msgid "jealous" msgstr "" -#: ../cache/locales.php:629 +#: [mood]lonely msgid "lonely" msgstr "" -#: ../cache/locales.php:630 +#: [mood]lost msgid "lost" msgstr "" -#: ../cache/locales.php:631 +#: [mood]lucky msgid "lucky" msgstr "" -#: ../cache/locales.php:632 +#: [mood]mean msgid "mean" msgstr "" -#: ../cache/locales.php:633 +#: [mood]moody msgid "moody" msgstr "" -#: ../cache/locales.php:634 +#: [mood]nervous msgid "nervous" msgstr "" -#: ../cache/locales.php:635 +#: [mood]neutral msgid "neutral" msgstr "" -#: ../cache/locales.php:636 +#: [mood]offended msgid "offended" msgstr "" -#: ../cache/locales.php:637 +#: [mood]outraged msgid "outraged" msgstr "" -#: ../cache/locales.php:638 +#: [mood]playful msgid "playful" msgstr "" -#: ../cache/locales.php:639 +#: [mood]proud msgid "proud" msgstr "" -#: ../cache/locales.php:640 +#: [mood]relaxed msgid "relaxed" msgstr "" -#: ../cache/locales.php:641 +#: [mood]relieved msgid "relieved" msgstr "" -#: ../cache/locales.php:642 -msgid "remorseful" -msgstr "" - -#: ../cache/locales.php:643 +#: [mood]restless msgid "restless" msgstr "" -#: ../cache/locales.php:644 +#: [mood]sad msgid "sad" msgstr "" -#: ../cache/locales.php:645 +#: [mood]sarcastic msgid "sarcastic" msgstr "" -#: ../cache/locales.php:646 +#: [mood]satisfied msgid "satisfied" msgstr "" -#: ../cache/locales.php:647 +#: [mood]serious msgid "serious" msgstr "" -#: ../cache/locales.php:648 +#: [mood]shocked msgid "shocked" msgstr "" -#: ../cache/locales.php:649 +#: [mood]shy msgid "shy" msgstr "" -#: ../cache/locales.php:650 +#: [mood]sick msgid "sick" msgstr "" -#: ../cache/locales.php:651 +#: [mood]sleepy msgid "sleepy" msgstr "" -#: ../cache/locales.php:652 +#: [mood]spontaneous msgid "spontaneous" msgstr "" -#: ../cache/locales.php:653 +#: [mood]stressed msgid "stressed" msgstr "" -#: ../cache/locales.php:654 +#: [mood]strong msgid "strong" msgstr "" -#: ../cache/locales.php:655 +#: [mood]surprised msgid "surprised" msgstr "" -#: ../cache/locales.php:656 +#: [mood]thankful msgid "thankful" msgstr "" -#: ../cache/locales.php:657 +#: [mood]thirsty msgid "thirsty" msgstr "" -#: ../cache/locales.php:658 +#: [mood]tired msgid "tired" msgstr "" -#: ../cache/locales.php:659 +#: [mood]undefined msgid "undefined" msgstr "" -#: ../cache/locales.php:660 +#: [mood]weak msgid "weak" msgstr "" -#: ../cache/locales.php:661 +#: [mood]worried msgid "worried" msgstr "" -#: ../cache/locales.php:662 +#: [month]title msgid "Month" msgstr "Miz" -#: ../cache/locales.php:663 +#: [month]january msgid "January" msgstr "Genver" -#: ../cache/locales.php:664 +#: [month]february msgid "February" msgstr "C'hwevrer" -#: ../cache/locales.php:665 +#: [month]march msgid "March" msgstr "Meurzh" -#: ../cache/locales.php:666 +#: [month]april msgid "April" msgstr "Ebrel" -#: ../cache/locales.php:667 +#: [month]may msgid "May" msgstr "Mae" -#: ../cache/locales.php:668 +#: [month]june msgid "June" msgstr "Even" -#: ../cache/locales.php:669 +#: [month]july msgid "July" msgstr "Gouere" -#: ../cache/locales.php:670 +#: [month]august msgid "August" msgstr "Eost" -#: ../cache/locales.php:671 +#: [month]september msgid "September" msgstr "Gwengolo" -#: ../cache/locales.php:672 +#: [month]october msgid "October" msgstr "Here" -#: ../cache/locales.php:673 +#: [month]november msgid "November" msgstr "Du" -#: ../cache/locales.php:674 +#: [month]december msgid "December" msgstr "Kerzu" -#: ../cache/locales.php:675 +#: [year]title msgid "Year" msgstr "Bloavezh" -#: ../cache/locales.php:676 +#: [date]today msgid "Today" msgstr "Hiziv" -#: ../cache/locales.php:677 +#: [date]tomorrow msgid "Tomorrow" msgstr "Warc'hoazh" -#: ../cache/locales.php:678 +#: [date]yesterday msgid "Yesterday" msgstr "Dec'h" -#: ../cache/locales.php:679 -#, php-format -msgid " %d days ago" +#: [date]ago +#, fuzzy +msgid "%d days ago" msgstr " %d devezh 'zo" -#: ../cache/locales.php:680 +#: [date]day msgid "day" msgstr "devezh" -#: ../cache/locales.php:682 +#: [post]whats_new msgid "What's new ?" msgstr "" -#: ../cache/locales.php:683 +#: [post]place msgid "Place" msgstr "" -#: ../cache/locales.php:684 +#: [post]by msgid "by" msgstr "" -#: ../cache/locales.php:685 +#: [post]geolocalisation msgid "Geolocalisation" msgstr "" -#: ../cache/locales.php:686 +#: [post]email msgid "email" msgstr "" -#: ../cache/locales.php:688 +#: [post]no_comments msgid "No comments yet" msgstr "" -#: ../cache/locales.php:689 +#: [post]no_comments_stream msgid "No comments stream" msgstr "" -#: ../cache/locales.php:690 +#: [post]no_load msgid "Your feed cannot be loaded." msgstr "Ho gwazh n'hall ket bezañ karget" -#: ../cache/locales.php:691 +#: [post]older msgid "Get older posts" msgstr "Kaout an embanadennoù kozhoc'h" -#: ../cache/locales.php:692 -#, php-format +#: [post]new_items msgid "%s new items" msgstr "" -#: ../cache/locales.php:693 +#: [post]comment_error msgid "Comment publication error" msgstr "" -#: ../cache/locales.php:694 +#: [post]comments_older msgid "Show the older comments" msgstr "" -#: ../cache/locales.php:695 -msgid "Loading comments ..." +#: [post]comments_loading +msgid "Loading comments..." msgstr "" -#: ../cache/locales.php:696 +#: [post]comments_get msgid "Get the comments" msgstr "" -#: ../cache/locales.php:697 +#: [post]comment_add msgid "Add a comment" msgstr "" -#: ../cache/locales.php:698 +#: [post]share msgid "Share with" msgstr "" -#: ../cache/locales.php:699 +#: [post]share_everyone msgid "Everyone" msgstr "" -#: ../cache/locales.php:700 +#: [post]share_your_contacts msgid "Your contacts" msgstr "" -#: ../cache/locales.php:702 +#: [post]updated msgid "Updated" msgstr "" -#: ../cache/locales.php:703 +#: [post]content_not_found msgid "Content not found" msgstr "" -#: ../cache/locales.php:704 +#: [post]default_title msgid "Contact publication" msgstr "" -#: ../cache/locales.php:705 +#: [post]comments msgid "Comments" msgstr "" -#: ../cache/locales.php:706 +#: [api]error msgid "The API is not reachable, try again later" msgstr "" -#: ../cache/locales.php:707 +#: [field]type_here msgid "Type here" msgstr "" -#, php-format #~ msgid "Cannot load element value '%s'" #~ msgstr "N'eus ket tu kargañ talvoud an elfenn '%s'" @@ -2601,15 +2724,8 @@ msgstr "" #~ msgid "Edit my Profile" #~ msgstr "Cheñch va brofil" -#~ msgid "" -#~ "Your server doesn't support post publication, you can only read contact's " -#~ "feeds" -#~ msgstr "" -#~ "N'eo ket meret an embannadennoù gant ho servijer, tu zo deoc'h lenn gwazhioù " -#~ "darempred hepken" - -#~ msgid "Remove this contact" -#~ msgstr "Tennañ an darempred" +#~ msgid "Your server doesn't support post publication, you can only read contact's feeds" +#~ msgstr "N'eo ket meret an embannadennoù gant ho servijer, tu zo deoc'h lenn gwazhioù darempred hepken" #~ msgid "Invite this user" #~ msgstr "Pediñ an implijer-mañ" @@ -2617,50 +2733,23 @@ msgstr "" #~ msgid "What is Movim?" #~ msgstr "Petra eo Movim?" -#, php-format -#~ msgid "" -#~ "Visit the page %s What is Movim ? %s to know more about the project, its " -#~ "aims and understand how it works." -#~ msgstr "" -#~ "Gwelladenniñ ar bajenn %s Petra eo Movim ? %s evit gouzout hiroc'h diwar-" -#~ "benn ar raktres, e pal ha kompren penaos ez a en-dro." +#~ msgid "Visit the page %s What is Movim ? %s to know more about the project, its aims and understand how it works." +#~ msgstr "Gwelladenniñ ar bajenn %s Petra eo Movim ? %s evit gouzout hiroc'h diwar-benn ar raktres, e pal ha kompren penaos ez a en-dro." -#~ msgid "" -#~ "Some features are missing/I can't do everything I used to do on other social " -#~ "networks" -#~ msgstr "" -#~ "Arc'hweladurioù a vank/N'eus ket tu din ober tout ar pezh a ran war ar " -#~ "rouedadoù sokial all" +#~ msgid "Some features are missing/I can't do everything I used to do on other social networks" +#~ msgstr "Arc'hweladurioù a vank/N'eus ket tu din ober tout ar pezh a ran war ar rouedadoù sokial all" -#, php-format -#~ msgid "" -#~ "Although Movim is evolving fast, many (many) features are missing. Be " -#~ "patient ;). You can have a look %s at next versions's roadmaps %s to know if " -#~ "the one you want is on its way." -#~ msgstr "" -#~ "Daoust m'eo prim emdroadur Movim, ur bern (bern) ac'hwelladurioù a vank. " -#~ "Bezit pasiant :). Tu o deoc'h sellet ouzh %s an handelv o tont %s evit " -#~ "gouzout m'eo war an hent an hini ho 'peus c'hoant." +#~ msgid "Although Movim is evolving fast, many (many) features are missing. Be patient ;). You can have a look %s at next versions's roadmaps %s to know if the one you want is on its way." +#~ msgstr "Daoust m'eo prim emdroadur Movim, ur bern (bern) ac'hwelladurioù a vank. Bezit pasiant :). Tu o deoc'h sellet ouzh %s an handelv o tont %s evit gouzout m'eo war an hent an hini ho 'peus c'hoant." -#, php-format -#~ msgid "" -#~ "Don't forget that Movim is an open source project, a helping hand is always " -#~ "welcome (see %s Can I participate %s)" -#~ msgstr "" -#~ "Na zisoñjit ket eo Movim ur raktres frank, un taol sikour a zo degemeret mat " -#~ "atav (gwelet %s Tu zo din kemer perzh %s)" +#~ msgid "Don't forget that Movim is an open source project, a helping hand is always welcome (see %s Can I participate %s)" +#~ msgstr "Na zisoñjit ket eo Movim ur raktres frank, un taol sikour a zo degemeret mat atav (gwelet %s Tu zo din kemer perzh %s)" #~ msgid "I can't find the answer to my question here" #~ msgstr "N'eus ket bet tu din kavout ar respont d'am goulenn" -#, php-format -#~ msgid "" -#~ "Go to the %s to the Frequently Asked Questions %s or come ask your question " -#~ "on the official chatroom %s or via our mailing-list (%s see the dedicated " -#~ "page %s)." -#~ msgstr "" -#~ "Kit d'ar %s Goulennoù Savet an Aliesañ %s pe goulennit war an tchat ofisiel " -#~ "%s pe dre hor mailing-list (%s sellit ar bajenn a-zere %s)" +#~ msgid "Go to the %s to the Frequently Asked Questions %s or come ask your question on the official chatroom %s or via our mailing-list (%s see the dedicated page %s)." +#~ msgstr "Kit d'ar %s Goulennoù Savet an Aliesañ %s pe goulennit war an tchat ofisiel %s pe dre hor mailing-list (%s sellit ar bajenn a-zere %s)" #~ msgid "Debug console" #~ msgstr "Koñsolenn debug" @@ -2686,7 +2775,6 @@ msgstr "" #~ msgid "No profile yet ?" #~ msgstr "Profil ebet c'hoazh ?" -#, php-format #~ msgid "Couldn't create directory '%s'." #~ msgstr "Dibosupl krouiñ an teuliad '%s'." diff --git a/sources/locales/da.po b/sources/locales/da.po index dcb2bbd..654feb2 100644 --- a/sources/locales/da.po +++ b/sources/locales/da.po @@ -1,2635 +1,2772 @@ # Danish translations for Movim package. # This file is distributed under the same license as the Movim package. # This file was translated from CodingTeam at . +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/About/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Account/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AccountNext/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AdHoc/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AdminDB/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AdminMain/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AdminTest/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Api/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Avatar/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Blog/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Bookmark/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Chat/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Chats/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/ConfigData/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Config/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Contact/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Group/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Groups/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Header/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Hello/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Help/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Init/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Location/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/LoginAnonymous/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Login/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Menu/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/NodeAffiliations/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/NodeSubscriptions/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Notifs/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Post/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Presence/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Publish/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/PubsubSubscriptionConfig/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Rooms/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Roster/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Share/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Statistics/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Subscribe/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Syndication/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Upload/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Vcard4/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/VisioExt/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Visio/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../locales/locales.ini msgid "" msgstr "" "Project-Id-Version: Movim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-06-08 22:06+0200\n" +"POT-Creation-Date: 2015-08-20 15:17+0200\n" "PO-Revision-Date: 2015-05-18 08:45+0000\n" "Last-Translator: Filip Kemuel Dam Bartholdy \n" "Language-Team: LANGUAGE \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2015-06-18 21:08+0000\n" "X-Generator: Launchpad (build 17570)\n" -"Language: \n" -#: ../cache/locales.php:2 +#: [about]thanks msgid "Thanks" msgstr "Tak" -#: ../cache/locales.php:3 +#: [about]developers msgid "Developers" msgstr "Udviklere" -#: ../cache/locales.php:4 +#: [about]translators msgid "Translators" msgstr "Oversættere" -#: ../cache/locales.php:5 +#: [about]software msgid "Software" msgstr "Software" -#: ../cache/locales.php:6 +#: [about]resources msgid "Resources" msgstr "Ressourcer" -#: ../cache/locales.php:7 ../cache/locales.php:83 ../cache/locales.php:85 +#: [about]api [schema]api [api]title msgid "API" msgstr "API" -#: ../cache/locales.php:8 -msgid "" -"Movim is an XMPP-based communication platform. All the project, except the " -"following software and resources, is under" -msgstr "" -"Movim er en XMPP-baseret kommunikationsplatform. Hele projektet, med " -"undtagelse af den følgende software og ressourcer er udgivet under" +#: [about]info +msgid "Movim is an XMPP-based communication platform. All the project, except the following software and resources, is under" +msgstr "Movim er en XMPP-baseret kommunikationsplatform. Hele projektet, med undtagelse af den følgende software og ressourcer er udgivet under" -#: ../cache/locales.php:9 +#: [account]title msgid "Account" msgstr "Konto" -#: ../cache/locales.php:10 -msgid "The password has been updated" -msgstr "Kodeordet er opdateret" +#: [account]password_change_title +#, fuzzy +msgid "Change my password" +msgstr "Forkert adgangskode" -#: ../cache/locales.php:11 -msgid "Please provide a valid password (6 characters minimum)" -msgstr "Skriv venligst et gyldigt kodeord (minimun 6 tegn)" - -#: ../cache/locales.php:12 -msgid "The provided passwords are not the same" -msgstr "De givnde kodeord er ikke ens" - -#: ../cache/locales.php:13 -msgid "Delete my account" -msgstr "Slet min konto" - -#: ../cache/locales.php:14 -msgid "" -"You will delete your XMPP account and all the relative information linked to " -"it (profile, contacts and publications)." -msgstr "" -"Du sletter hermed din XMPP konto og alle de relative informationer knyttet " -"til den (profil, kontakter og udgivelser)." - -#: ../cache/locales.php:15 -msgid "Are you sure that you want to delete it ?" -msgstr "Er du sikker på at du vil slette den ?" - -#: ../cache/locales.php:16 ../cache/locales.php:411 -msgid "Create a new account" -msgstr "Opret en ny konto" - -#: ../cache/locales.php:17 -msgid "No account creation form found on the server" -msgstr "Ingen konto-oprettelses-formular fundet på serveren" - -#: ../cache/locales.php:18 ../cache/locales.php:172 -msgid "on" -msgstr "på" - -#: ../cache/locales.php:19 -msgid "Your acccount has been successfully registered" -msgstr "Success! Din konto er registreret" - -#: ../cache/locales.php:20 -msgid "Loading" -msgstr "Indlæser" - -#: ../cache/locales.php:21 -msgid "Not Acceptable" -msgstr "Ikke accepteret" - -#: ../cache/locales.php:22 -msgid "The registration system of this server is currently unavailable" -msgstr "Registreringssystemet på denne server er i øjeblikket utilgængeligt" - -#: ../cache/locales.php:23 -msgid "" -"This server use an external system for the registration, please click on the " -"following URL." -msgstr "" -"Denne server bruger et eksternt system til registrering, klik venligst på " -"følgende link." - -#: ../cache/locales.php:24 -msgid "Actions" -msgstr "Handlinger" - -#: ../cache/locales.php:25 ../cache/locales.php:82 -msgid "Database" -msgstr "Database" - -#: ../cache/locales.php:26 -msgid "Modl wasn't able to connect to the database" -msgstr "Modl kunne ikke forbinde til databasen" - -#: ../cache/locales.php:27 -msgid "Movim is connected to the database" -msgstr "Moovim er forbundet til databasen" - -#: ../cache/locales.php:28 -msgid "The database need to be updated" -msgstr "Databasen bør opdateres" - -#: ../cache/locales.php:29 -msgid "Movim database is up to date" -msgstr "Movim database er i nyeste version" - -#: ../cache/locales.php:30 -msgid "Database Type" -msgstr "Databasetype" - -#: ../cache/locales.php:31 ../cache/locales.php:50 ../cache/locales.php:540 -msgid "Username" -msgstr "Brugernavn" - -#: ../cache/locales.php:32 ../cache/locales.php:51 ../cache/locales.php:282 -#: ../cache/locales.php:541 +#: [account]password [db]password [credentials]password [form]password +#: [input]password msgid "Password" msgstr "Kodeord" -#: ../cache/locales.php:33 +#: [account]password_confirmation +#, fuzzy +msgid "Password confirmation" +msgstr "%s - Konfiguration" + +#: [account]password_changed +msgid "The password has been updated" +msgstr "Kodeordet er opdateret" + +#: [account]password_not_valid +msgid "Please provide a valid password (6 characters minimum)" +msgstr "Skriv venligst et gyldigt kodeord (minimun 6 tegn)" + +#: [account]password_not_same +msgid "The provided passwords are not the same" +msgstr "De givnde kodeord er ikke ens" + +#: [account]delete_title +msgid "Delete my account" +msgstr "Slet min konto" + +#: [account]delete +#, fuzzy +msgid "Delete your account" +msgstr "Slet min konto" + +#: [account]delete_text +msgid "You will delete your XMPP account and all the relative information linked to it (profile, contacts and publications)." +msgstr "Du sletter hermed din XMPP konto og alle de relative informationer knyttet til den (profil, kontakter og udgivelser)." + +#: [account]delete_text_confirm +msgid "Are you sure that you want to delete it ?" +msgstr "Er du sikker på at du vil slette den ?" + +#: [account]gateway_title +msgid "Gateway" +msgstr "" + +#: [create]title [subscribe]title +msgid "Create a new account" +msgstr "Opret en ny konto" + +#: [create]notfound +msgid "No account creation form found on the server" +msgstr "Ingen konto-oprettelses-formular fundet på serveren" + +#: [create]server_on +msgid "on" +msgstr "på" + +#: [create]successfull +msgid "Your acccount has been successfully registered" +msgstr "Success! Din konto er registreret" + +#: [create]loading +msgid "Loading" +msgstr "Indlæser" + +#: [error]not_acceptable +msgid "Not Acceptable" +msgstr "Ikke accepteret" + +#: [error]service_unavailable +msgid "The registration system of this server is currently unavailable" +msgstr "Registreringssystemet på denne server er i øjeblikket utilgængeligt" + +#: [oob]about +msgid "This server use an external system for the registration, please click on the following URL." +msgstr "Denne server bruger et eksternt system til registrering, klik venligst på følgende link." + +#: [adhoc]title +msgid "Actions" +msgstr "Handlinger" + +#: [db]legend [schema]database +msgid "Database" +msgstr "Database" + +#: [db]connect_error +msgid "Modl wasn't able to connect to the database" +msgstr "Modl kunne ikke forbinde til databasen" + +#: [db]connect_success +msgid "Movim is connected to the database" +msgstr "Moovim er forbundet til databasen" + +#: [db]update +msgid "The database need to be updated" +msgstr "Databasen bør opdateres" + +#: [db]up_to_date +msgid "Movim database is up to date" +msgstr "Movim database er i nyeste version" + +#: [db]type +msgid "Database Type" +msgstr "Databasetype" + +#: [db]username [credentials]username [input]username +msgid "Username" +msgstr "Brugernavn" + +#: [db]host msgid "Host" msgstr "Vært" -#: ../cache/locales.php:34 +#: [db]port msgid "Port" msgstr "Port" -#: ../cache/locales.php:35 -msgid "Database Name" +#: [db]name +#, fuzzy +msgid "Database sName" msgstr "Databasenavn" -#: ../cache/locales.php:36 +#: [admin]general msgid "General Settings" msgstr "Generelle indstillinger" -#: ../cache/locales.php:37 +#: [general]theme msgid "Theme" msgstr "Tema" -#: ../cache/locales.php:38 +#: [general]language msgid "Default language" msgstr "Standardsprog" -#: ../cache/locales.php:39 -msgid "Environment" -msgstr "Miljø" - -#: ../cache/locales.php:40 +#: [general]log_verbosity msgid "Log verbosity" msgstr "Log detaljerethed" -#: ../cache/locales.php:41 +#: [general]timezone msgid "Server Timezone" msgstr "Server tidszone" -#: ../cache/locales.php:42 +#: [general]limit msgid "User folder size limit (in bytes)" msgstr "Brugermappes maks-størrelse (i bytes)" -#: ../cache/locales.php:43 +#: [websocket]title msgid "WebSocket Configuration" msgstr "WebSocket opsætning" -#: ../cache/locales.php:44 +#: [websocket]info msgid "Enter here a valid WebSocket URI in the form" msgstr "Skriv her en gyldig WebSocket URI i formularen" -#: ../cache/locales.php:45 +#: [websocket]label msgid "WebSocket URI" msgstr "WebSocket URI" -#: ../cache/locales.php:46 -msgid "" -"If you change the URI, please restart the daemon to reload the configuration" -msgstr "" -"Genstart venligst daemon'en for at genindlæse opsætningen, hvis du ændrer " -"URI'en" +#: [websocket]save_info +msgid "If you change the URI, please restart the daemon to reload the configuration" +msgstr "Genstart venligst daemon'en for at genindlæse opsætningen, hvis du ændrer URI'en" -#: ../cache/locales.php:47 +#: [websocket]publics msgid "Public WebSockets" msgstr "Offentlige WebSockets" -#: ../cache/locales.php:48 +#: [credentials]title msgid "Administration Credential" msgstr "Administrations legitimationsstyring" -#: ../cache/locales.php:49 +#: [credentials]info msgid "Change the default credentials admin/password" msgstr "Ændre standard legitimationen admin/kodeord" -#: ../cache/locales.php:52 +#: [credentials]re_password msgid "Retype password" msgstr "Gentag adgangskode" -#: ../cache/locales.php:53 +#: [whitelist]title msgid "Whitelist - XMPP Server" msgstr "Hvidliste - XMPP server" -#: ../cache/locales.php:54 -msgid "" -"If you want to specify a list of authorized XMPP servers on your Movim pod " -"and forbid the connection on all the others please put their domain name " -"here, with comma (ex: movim.eu,jabber.fr)" -msgstr "" -"Hvis du vil specificere en liste af autoriserede XMPP servere på din Movim " -"pod og forbyde forbindelser på alle andre, skriv da venligst deres " -"domænenavne her, separeret med komma (f.eks: movim.eu,jabber.dk)" +#: [whitelist]info1 +msgid "If you want to specify a list of authorized XMPP servers on your Movim pod and forbid the connection on all the others please put their domain name here, with comma (ex: movim.eu,jabber.fr)" +msgstr "Hvis du vil specificere en liste af autoriserede XMPP servere på din Movim pod og forbyde forbindelser på alle andre, skriv da venligst deres domænenavne her, separeret med komma (f.eks: movim.eu,jabber.dk)" -#: ../cache/locales.php:55 -msgid "" -"Leave this field blank if you allow the access to all the XMPP accounts." -msgstr "" -"Efterlad dette felt tomt hvis du vil tillade adgang til alle XMPP konti." +#: [whitelist]info2 +msgid "Leave this field blank if you allow the access to all the XMPP accounts." +msgstr "Efterlad dette felt tomt hvis du vil tillade adgang til alle XMPP konti." -#: ../cache/locales.php:56 +#: [whitelist]label msgid "List of whitelisted XMPP servers" msgstr "Liste over hvidlistede XMPP servere" -#: ../cache/locales.php:57 ../cache/locales.php:61 +#: [information]title +#, fuzzy +msgctxt "[information]title" msgid "Information Message" msgstr "Informationsbesked" -#: ../cache/locales.php:58 +#: [information]description msgid "Description" msgstr "Beskrivelse" -#: ../cache/locales.php:59 +#: [information]info1 msgid "This message will be displayed on the login page" msgstr "Denne meddelselse vil blive vist på logind siden" -#: ../cache/locales.php:60 -msgid "Leave this field blank if you don't want to show any message." +#: [information]info2 +#, fuzzy +msgid "Leave this field blank if you dont want to show any message." msgstr "Efterlad feltet tomt hvis du ikke vil vise nogen beskedl" -#: ../cache/locales.php:62 +#: [information]label +#, fuzzy +msgctxt "[information]label" +msgid "Information Message" +msgstr "Informationsbesked" + +#: [log]empty msgid "Empty" msgstr "Tomt" -#: ../cache/locales.php:63 +#: [log]syslog msgid "Syslog" msgstr "Syslog" -#: ../cache/locales.php:64 +#: [log]syslog_files msgid "Syslog and files" msgstr "Syslog og filer" -#: ../cache/locales.php:65 +#: [rewrite]title msgid "URL Rewriting" msgstr "URL omskrivning" -#: ../cache/locales.php:66 +#: [rewrite]info msgid "The URL Rewriting can be enabled" msgstr "URL omskrivning kan slås til" -#: ../cache/locales.php:67 +#: [admin]compatibility msgid "General Overview" msgstr "Generel oversigt" -#: ../cache/locales.php:68 -msgid "" -"Movim has found some issues or things that need to be fixed or improved" -msgstr "" -"Movim har fundet nogle problemer, eller ting der har brug for at blive " -"ordnet eller forbedret" +#: [compatibility]info +msgid "Movim has found some issues or things that need to be fixed or improved" +msgstr "Movim har fundet nogle problemer, eller ting der har brug for at blive ordnet eller forbedret" -#: ../cache/locales.php:69 -#, php-format +#: [compatibility]php1 msgid "Update your PHP-Version: %s" msgstr "Opdater din PHP-version: %s" -#: ../cache/locales.php:70 +#: [compatibility]php2 msgid "Required: 5.3.0" msgstr "Kræver: 5.3.0" -#: ../cache/locales.php:71 +#: [compatibility]curl msgid "Install the php5-curl library" msgstr "Installer php5-curl biblioteket" -#: ../cache/locales.php:72 +#: [compatibility]imagick msgid "Install the php5-imagick library" msgstr "Installer php5-imagick biblioteket" -#: ../cache/locales.php:73 +#: [compatibility]gd msgid "Install the php5-gd library" msgstr "" -#: ../cache/locales.php:74 -msgid "Read and write rights for the webserver in Movim's root directory" +#: [compatibility]rights +#, fuzzy +msgid "Read and write rights for the webserver in Movims root directory" msgstr "Læse og skrive rettigheder på webserveren i Movim's rodmappe" -#: ../cache/locales.php:75 +#: [compatibility]rewrite msgid "The URL Rewriting support is currently disabled" msgstr "URL omskrivnings understøttelse er i øjeblikket slået fra" -#: ../cache/locales.php:76 +#: [compatibility]db msgid "The database need to be updated, go to the database panel to fix this" msgstr "" -#: ../cache/locales.php:77 -msgid "" -"WebSocket connection error, check if the Movim Daemon is running and is " -"reacheable" +#: [compatibility]websocket +msgid "WebSocket connection error, check if the Movim Daemon is running and is reachable" msgstr "" -#: ../cache/locales.php:78 -msgid "" -"XMPP Websocket connection error, please check the validity of the URL given " -"in the General Configuration" +#: [compatibility]xmpp_websocket +msgid "XMPP Websocket connection error, please check the validity of the URL given in the General Configuration" msgstr "" -#: ../cache/locales.php:79 +#: [schema]browser msgid "Browser" msgstr "" -#: ../cache/locales.php:80 +#: [schema]movim msgid "Movim Core" msgstr "" -#: ../cache/locales.php:81 +#: [schema]daemon msgid "Movim Daemon" msgstr "" -#: ../cache/locales.php:84 +#: [schema]xmpp msgid "XMPP" msgstr "" -#: ../cache/locales.php:86 -#, php-format -msgid "" -"Here you can register your pod on the official %sMovim API%s and be listed " -"on %sthe pods page%s." -msgstr "" -"Her kan du registrere din pod på den officielle %sMovim API%s og blive " -"listet på %spod siden%s." +#: [api]info +msgid "Here you can register your pod on the official %sMovim API%s and be listed on %sthe pods page%s." +msgstr "Her kan du registrere din pod på den officielle %sMovim API%s og blive listet på %spod siden%s." -#: ../cache/locales.php:87 +#: [api]register msgid "Your pod is not registered on the API" msgstr "Din pod er ikke registreret på API'en" -#: ../cache/locales.php:88 +#: [api]registered msgid "Your pod is registered on the API" msgstr "Din pod er registreret på API'en" -#: ../cache/locales.php:89 +#: [api]wait msgid "Your pod is not yet validated" msgstr "Din pod er ikke valideret endnu" -#: ../cache/locales.php:90 +#: [api]validated msgid "Your pod is validated" msgstr "Din pod er valideret" -#: ../cache/locales.php:91 -msgid "" -"You asked to be removed from the API, this request will be processed in a " -"couple of hours" -msgstr "" -"Du har spurgt om at blive fjernet fra API'en, denne forespørgsel vil blive " -"behandlet i løbet af et par timer" +#: [api]unregister +msgid "You asked to be removed from the API, this request will be processed in a couple of hours" +msgstr "Du har spurgt om at blive fjernet fra API'en, denne forespørgsel vil blive behandlet i løbet af et par timer" -#: ../cache/locales.php:92 ../cache/locales.php:147 +#: [api]conf_updated [config]updated msgid "Configuration updated" msgstr "Opsætning opdateret" -#: ../cache/locales.php:93 +#: [avatar]file msgid "File" msgstr "Fil" -#: ../cache/locales.php:94 +#: [avatar]use_it msgid "Use it" msgstr "Brug den" -#: ../cache/locales.php:95 +#: [avatar]webcam msgid "Webcam" msgstr "Webkamera" -#: ../cache/locales.php:96 +#: [avatar]cheese msgid "Cheese !" msgstr "Smiil !" -#: ../cache/locales.php:97 +#: [avatar]snapshot msgid "Take a webcam snapshot" msgstr "Tag et webcam billede" -#: ../cache/locales.php:98 +#: [avatar]updated msgid "Avatar Updated" msgstr "Avatar opdateret" -#: ../cache/locales.php:99 +#: [avatar]not_updated msgid "Avatar Not Updated" msgstr "Avatar ikke opdateret" -#: ../cache/locales.php:100 ../cache/locales.php:415 -#, php-format +#: [blog]title [feed]title msgid "%s's feed" msgstr "%s's feed" -#: ../cache/locales.php:101 +#: [blog]empty msgid "This user has not posted anything right now" msgstr "Denne bruger har ikke postet noget endnu" -#: ../cache/locales.php:102 +#: [title]conferences msgid "Conferences" msgstr "Konferencer" -#: ../cache/locales.php:103 ../cache/locales.php:193 ../cache/locales.php:217 -#: ../cache/locales.php:468 +#: [title]groups [group]empty_title [menu]groups [page]groups msgid "Groups" msgstr "Grupper" -#: ../cache/locales.php:104 +#: [chatroom]add msgid "Add a new Chat Room" msgstr "Tilføj et nyt chatroom" -#: ../cache/locales.php:105 ../cache/locales.php:368 +#: [chatroom]id [chatrooms]id msgid "Chat Room ID" msgstr "Chat Room ID" -#: ../cache/locales.php:106 ../cache/locales.php:116 ../cache/locales.php:156 -#: ../cache/locales.php:361 ../cache/locales.php:369 ../cache/locales.php:424 +#: [chatroom]name +#, fuzzy +msgctxt "[chatroom]name" msgid "Name" msgstr "Navn" -#: ../cache/locales.php:107 ../cache/locales.php:157 ../cache/locales.php:371 -#: ../cache/locales.php:425 +#: [chatroom]nickname [general]nickname [chatrooms]nickname msgid "Nickname" msgstr "Kaldenavn" -#: ../cache/locales.php:108 +#: [chatroom]autojoin_label msgid "Do you want do join automaticaly this Chat Room ?" msgstr "Vil du automatisk joine dette Chatroom" -#: ../cache/locales.php:109 ../cache/locales.php:372 +#: [chatroom]bad_id [chatrooms]bad_id msgid "Bad Chatroom ID" msgstr "Dårligt Chatroom ID" -#: ../cache/locales.php:110 ../cache/locales.php:373 +#: [chatroom]empty_name [chatrooms]empty_name msgid "Empty name" msgstr "Tomt navn" -#: ../cache/locales.php:111 ../cache/locales.php:380 +#: [bookmarks]updated msgid "Bookmarks updated" msgstr "Bogmærker opdateret" -#: ../cache/locales.php:112 -msgid "An error occured : " +#: [bookmarks]error +#, fuzzy +msgid "An error occured :" msgstr "En fejl er sket: " -#: ../cache/locales.php:113 +#: [bookmarks]configure msgid "Configure" msgstr "Indstil" -#: ../cache/locales.php:114 +#: [url]add msgid "Add a new URL" msgstr "Tilføj en ny URL" -#: ../cache/locales.php:115 +#: [url]url msgid "URL" msgstr "URL" -#: ../cache/locales.php:117 +#: [url]name +#, fuzzy +msgctxt "[url]name" +msgid "Name" +msgstr "Navn" + +#: [message]published msgid "Message Published" msgstr "Besked publiceret" -#: ../cache/locales.php:118 ../cache/locales.php:138 +#: [message]encrypted msgid "Encrypted message" msgstr "Krypteret meddelelse" -#: ../cache/locales.php:119 +#: [message]composing [chats]composing msgid "Composing..." msgstr "Sammensætter..." -#: ../cache/locales.php:120 +#: [message]paused [chats]paused msgid "Paused..." msgstr "Sat i pause..." -#: ../cache/locales.php:121 +#: [message]gone msgid "Contact gone" msgstr "Kontakt er væk" -#: ../cache/locales.php:122 -#, php-format +#: [chat]attention msgid "%s needs your attention" msgstr "%s har brug for din opmærksomhed" -#: ../cache/locales.php:123 +#: [chat]placeholder msgid "Your message here..." msgstr "Din besked her..." -#: ../cache/locales.php:124 +#: [chat]smileys msgid "Smileys" msgstr "Smileyer" -#: ../cache/locales.php:125 ../cache/locales.php:139 +#: [chat]empty_title [button]chat msgid "Chat" msgstr "Chat" -#: ../cache/locales.php:126 +#: [chat]empty_text msgid "Discuss with your contacts" msgstr "Snak med dine kontakter" -#: ../cache/locales.php:127 -msgid "Members" -msgstr "Medlemmer" - -#: ../cache/locales.php:128 ../cache/locales.php:376 -msgid "Connected to the chatroom" -msgstr "Forbundet til chatroom'et" - -#: ../cache/locales.php:129 ../cache/locales.php:377 -msgid "Disconnected from the chatroom" -msgstr "Afkoblet fra chatroom'et" - -#: ../cache/locales.php:130 ../cache/locales.php:200 ../cache/locales.php:469 -msgid "Configuration" -msgstr "Opsætning" - -#: ../cache/locales.php:131 -msgid "Configuration saved" -msgstr "Opsætning gemt" - -#: ../cache/locales.php:132 -msgid "Subject" -msgstr "Emne" - -#: ../cache/locales.php:133 -msgid "Subject changed" -msgstr "Emnet er ændret" - -#: ../cache/locales.php:134 -msgid "Open a new conversation by clicking on the plus button bellow" -msgstr "Åbn en ny samtale ved at klikke på plus knappen herunder" - -#: ../cache/locales.php:135 -msgid "Chat with a contact" -msgstr "Snak med en kontakt" - -#: ../cache/locales.php:136 +#: [chat]frequent [chats]frequent msgid "Frequent contacts" msgstr "Ofte brugte kontakter" -#: ../cache/locales.php:137 +#: [chatroom]members +msgid "Members" +msgstr "Medlemmer" + +#: [chatroom]connected [chatrooms]connected +msgid "Connected to the chatroom" +msgstr "Forbundet til chatroom'et" + +#: [chatroom]disconnected [chatrooms]disconnected +msgid "Disconnected from the chatroom" +msgstr "Afkoblet fra chatroom'et" + +#: [chatroom]config [group]configuration [page]configuration +msgid "Configuration" +msgstr "Opsætning" + +#: [chatroom]config_saved +msgid "Configuration saved" +msgstr "Opsætning gemt" + +#: [chatroom]subject +msgid "Subject" +msgstr "Emne" + +#: [chatroom]subject_changed +msgid "Subject changed" +msgstr "Emnet er ændret" + +#: [chats]empty_title +#, fuzzy +msgid "No chats yet..." +msgstr "Ingen kommentarer endnu" + +#: [chats]empty +#, fuzzy +msgid "Open a new conversation by clicking on the plus button bellow or visit the Contacts page." +msgstr "Åbn en ny samtale ved at klikke på plus knappen herunder" + +#: [chats]add +msgid "Chat with a contact" +msgstr "Snak med en kontakt" + +#: [chats]more msgid "Load more contacts" msgstr "Indlæs flere kontakter" -#: ../cache/locales.php:140 -msgid "General" -msgstr "Generelt" - -#: ../cache/locales.php:141 -msgid "Language" -msgstr "Sprog" - -#: ../cache/locales.php:142 -msgid "Roster display" -msgstr "" - -#: ../cache/locales.php:143 -msgid "Show the offline contacts" -msgstr "Vis offline kontakter" - -#: ../cache/locales.php:144 -msgid "Hide the offline contacts" -msgstr "Skjul offline kontakter" - -#: ../cache/locales.php:145 -msgid "Appearence" -msgstr "Udseende" - -#: ../cache/locales.php:146 -msgid "This configuration is shared wherever you are connected !" -msgstr "Denne opsætning er delt hver gang du er forbundet !" - -#: ../cache/locales.php:148 -msgid "Notify on incoming message" -msgstr "Giv besked om indkomne beskeder" - -#: ../cache/locales.php:149 -msgid "Use desktop notifications" -msgstr "Brug skrivebordsmeddelelser" - -#: ../cache/locales.php:150 +#: [title]data msgid "Data" msgstr "Data" -#: ../cache/locales.php:151 +#: [title]cache msgid "Cache" msgstr "" -#: ../cache/locales.php:152 ../cache/locales.php:218 ../cache/locales.php:466 +#: [title]contacts [menu]contacts [page]contacts msgid "Contacts" msgstr "" -#: ../cache/locales.php:153 ../cache/locales.php:480 +#: [title]posts [page]posts msgid "Posts" msgstr "" -#: ../cache/locales.php:154 +#: [title]messages msgid "Messages" msgstr "" -#: ../cache/locales.php:155 ../cache/locales.php:423 +#: [config]general +msgid "General" +msgstr "Generelt" + +#: [config]language +msgid "Language" +msgstr "Sprog" + +#: [config]roster +msgid "Roster display" +msgstr "" + +#: [config]roster_show +msgid "Show the offline contacts" +msgstr "Vis offline kontakter" + +#: [config]roster_hide +msgid "Hide the offline contacts" +msgstr "Skjul offline kontakter" + +#: [config]appearence +msgid "Appearence" +msgstr "Udseende" + +#: [config]info +#, fuzzy +msgid "This configuration is shared wherever you are connected" +msgstr "Denne opsætning er delt hver gang du er forbundet !" + +#: [notifications]message +msgid "Notify on incoming message" +msgstr "Giv besked om indkomne beskeder" + +#: [notifications]desktop +msgid "Use desktop notifications" +msgstr "Brug skrivebordsmeddelelser" + +#: [general]legend [general]general_title msgid "General Informations" msgstr "Generelle informationer" -#: ../cache/locales.php:158 ../cache/locales.php:427 +#: [general]name [public_groups]name [chatrooms]name +msgid "Name" +msgstr "Navn" + +#: [general]date_of_birth msgid "Date of Birth" msgstr "Fødselsdag" -#: ../cache/locales.php:159 ../cache/locales.php:428 +#: [general]gender msgid "Gender" msgstr "" -#: ../cache/locales.php:160 ../cache/locales.php:429 +#: [general]marital msgid "Marital Status" msgstr "" -#: ../cache/locales.php:161 ../cache/locales.php:426 +#: [general]email msgid "Email" msgstr "E-mail" -#: ../cache/locales.php:162 ../cache/locales.php:430 +#: [general]website msgid "Website" msgstr "Internetside" -#: ../cache/locales.php:163 ../cache/locales.php:431 +#: [general]about msgid "About Me" msgstr "Om mig" -#: ../cache/locales.php:164 +#: [general]accounts msgid "Other Accounts" msgstr "Andre konti" -#: ../cache/locales.php:165 +#: [general]tune msgid "Is Listening" msgstr "Lytter" -#: ../cache/locales.php:166 ../cache/locales.php:432 +#: [position]legend [position]position_title msgid "Geographic Position" msgstr "Geografisk placering" -#: ../cache/locales.php:167 ../cache/locales.php:433 +#: [position]locality msgid "Locality" msgstr "Lokalitet" -#: ../cache/locales.php:168 ../cache/locales.php:434 +#: [position]country msgid "Country" msgstr "Land" -#: ../cache/locales.php:169 +#: [mood]title msgid "Mood" msgstr "Humør" -#: ../cache/locales.php:170 +#: [mood]im msgid "I'm " msgstr "Jeg " -#: ../cache/locales.php:171 +#: [listen]title msgid "Listening" msgstr "Lytter" -#: ../cache/locales.php:173 +#: [last]title msgid "Last seen" msgstr "Sidst set" -#: ../cache/locales.php:174 +#: [client]title msgid "Client Informations" msgstr "Klient infomatiner" -#: ../cache/locales.php:175 +#: [explore]last_registered msgid "Last registered" msgstr "Sidst registreret" -#: ../cache/locales.php:176 +#: [explore]explore msgid "Find some new friends" msgstr "Find nogle nye venner" -#: ../cache/locales.php:177 ../cache/locales.php:533 +#: [edit]title [button]edit msgid "Edit" msgstr "Redigér" -#: ../cache/locales.php:178 +#: [edit]alias msgid "Alias" msgstr "Alias" -#: ../cache/locales.php:179 +#: [edit]group msgid "Group" msgstr "Gruppe" -#: ../cache/locales.php:180 ../cache/locales.php:400 +#: [edit]updated [roster]updated msgid "Contact updated" msgstr "Kontakt opdateret" -#: ../cache/locales.php:181 +#: [delete]title msgid "Are you sure?" msgstr "Er du sikker?" -#: ../cache/locales.php:182 -msgid "" -"You are going to delete one of your contacts, please confirm your action" -msgstr "" -"Du er ved at slette en af dine kontakter, bekræft venligts din handling" +#: [delete]text +msgid "You are going to delete one of your contacts, please confirm your action" +msgstr "Du er ved at slette en af dine kontakter, bekræft venligts din handling" -#: ../cache/locales.php:183 -#, php-format +#: [age]years msgid "%s years" msgstr "%s år" -#: ../cache/locales.php:184 +#: [blog]last msgid "Last public post" msgstr "Sidste offentige indlæg" -#: ../cache/locales.php:185 +#: [subscription]to +#, fuzzy +msgid "You can see this contact status" +msgstr "Intet offentligt feed for kontakt" + +#: [subscription]to_button +msgid "Share my status" +msgstr "" + +#: [subscription]to_text +msgid "But this contact cannot see yours" +msgstr "" + +#: [subscription]from +#, fuzzy +msgid "You are not subscribed to this contact" +msgstr "Du er ved at afmelde dig fra denne gruppe" + +#: [subscription]from_button +#, fuzzy +msgid "Ask to subscribe" +msgstr "%s tilmeldte" + +#: [subscription]from_text +msgid "But this contact can still see if you are online" +msgstr "" + +#: [subscription]nil +#, fuzzy +msgid "No subscriptions" +msgstr "Tilmeldinger" + +#: [subscription]nil_button +msgid "Invite" +msgstr "" + +#: [subscription]nil_text +msgid "This contact is in your contact list but there is no subscriptions between the two accounts" +msgstr "" + +#: [group]subscribe msgid "Subscribe" msgstr "Abonnér" -#: ../cache/locales.php:186 +#: [group]subscribed msgid "Subscribed" msgstr "Tilmeldt" -#: ../cache/locales.php:187 +#: [group]unsubscribe msgid "Unsubscribe" msgstr "Afmeld" -#: ../cache/locales.php:188 +#: [group]unsubscribe_text msgid "You are going to unsubscribe from this Group" msgstr "Du er ved at afmelde dig fra denne gruppe" -#: ../cache/locales.php:189 +#: [group]unsubscribed msgid "Unsubscribed" msgstr "Afmeldt" -#: ../cache/locales.php:190 +#: [group]share_label msgid "Make your membership to this group public to your friends" msgstr "Gør dit mnedlemskab af denne fruppe offentligt for dine venner" -#: ../cache/locales.php:191 +#: [group]label_label msgid "Give a label for this group" msgstr "Giv denne gruppe en label" -#: ../cache/locales.php:192 +#: [group]sure msgid "Are you sure ?" msgstr "Er du sikker ?" -#: ../cache/locales.php:194 +#: [group]empty_text msgid "Discover, follow and share" msgstr "Opdag, følg og del" -#: ../cache/locales.php:195 +#: [group]empty msgid "Something bad happened to this group" msgstr "Noget skidt er sket med denne gruppe" -#: ../cache/locales.php:196 +#: [group]config_saved msgid "Group configuration saved" msgstr "Gruppe opsætning gemt" -#: ../cache/locales.php:197 +#: [group]delete_title msgid "Delete the group" msgstr "Slet denne gruppe" -#: ../cache/locales.php:198 -msgid "" -"You are going to delete the following group. Please confirm your action." +#: [group]delete_text +msgid "You are going to delete the following group. Please confirm your action." msgstr "Du er ved at slette følgende gruppe. Bekræft venligst din handling." -#: ../cache/locales.php:199 -msgid "" -"It seems that this group doesn't exists anymore. Do you want to remove it " -"from your subscriptions?" -msgstr "" -"Det ser ud til at denne gruppe ikke eksisterer mere. Vil du fjerne den fra " -"dine tilmeldinger?" +#: [group]delete_clean_text +msgid "It seems that this group doesn't exists anymore. Do you want to remove it from your subscriptions?" +msgstr "Det ser ud til at denne gruppe ikke eksisterer mere. Vil du fjerne den fra dine tilmeldinger?" -#: ../cache/locales.php:201 ../cache/locales.php:408 +#: [group]counter +msgid "%s groups on this server" +msgstr "" + +#: [group]subscriptions [statistics]subscriptions msgid "Subscriptions" msgstr "Tilmeldinger" -#: ../cache/locales.php:202 ../cache/locales.php:290 +#: [group]servers +#, fuzzy +msgid "Groups servers" +msgstr "Grupper" + +#: [group]search_server +msgid "Search for a new server" +msgstr "" + +#: [group]help_info1 +msgid "Groups are the perfect way to share posts about topics that you like with all the other Movim's users." +msgstr "" + +#: [group]help_info2 +msgid "Choose a server and a Group and subscribe to it using the %s button in the header. You can also create a new one using the %s button." +msgstr "" + +#: [group]help_info3 +msgid "Done? You can now publish a new post in the Group by using the %s button." +msgstr "" + +#: [group]help_info4 +msgid "You will find a list of all your subscribed Groups in My Subscriptions and receive instantly all the new incoming posts in the %sNews%s page." +msgstr "" + +#: [groups]empty_title msgid "Hello" msgstr "Hej" -#: ../cache/locales.php:203 ../cache/locales.php:225 ../cache/locales.php:291 +#: [groups]contact_post [hello]contact_post [menu]contact_post msgid "Contact post" msgstr "Kontakt indlæg" -#: ../cache/locales.php:204 -msgid "" -"You don't have any subscriptions yet, select a group server above to start " -"exploring." -msgstr "" -"Du har ingen abonnementer endnu, vælg en gruppe server herover for at " -"begynde at gå på opdagelse." +#: [groups]empty_text1 +msgid "You don't have any subscriptions yet, select a group server above to start exploring." +msgstr "Du har ingen abonnementer endnu, vælg en gruppe server herover for at begynde at gå på opdagelse." -#: ../cache/locales.php:205 +#: [groups]empty_text2 msgid "Subscribe to your favorite feeds by bookmarking them." msgstr "Tilmled dig til dine favorit feeds ved at bogmærke dem." -#: ../cache/locales.php:206 +#: [groups]subscriptions msgid "My Subscriptions" msgstr "Mine tilmeldinger" -#: ../cache/locales.php:207 +#: [groups]add msgid "Create a new Group" msgstr "Opret en ny gruppe" -#: ../cache/locales.php:208 +#: [groups]name msgid "Group name" msgstr "Gruppenavn" -#: ../cache/locales.php:209 +#: [groups]name_example msgid "My Little Pony - Fan Club" msgstr "My Little Pony - Fan Klub" -#: ../cache/locales.php:210 +#: [groups]created msgid "Group created successfully" msgstr "Gruppe er oprettet" -#: ../cache/locales.php:211 +#: [groups]deleted msgid "Group deleted successfully" msgstr "Gruppe er slettet" -#: ../cache/locales.php:212 +#: [groups]name_error msgid "Please provide a valid group name (4 characters minimum)" msgstr "" -#: ../cache/locales.php:213 +#: [groups]no_creation msgid "You cannot create a new Group on this server" msgstr "" -#: ../cache/locales.php:214 -#, php-format +#: [groups]sub msgid "%s subscribers" msgstr "%s tilmeldte" -#: ../cache/locales.php:215 -#, php-format +#: [groups]num msgid "%s posts" msgstr "%s indlæg" -#: ../cache/locales.php:216 +#: [groups]disco_error +msgid "This server doesn't exists" +msgstr "" + +#: [menu]all msgid "All" msgstr "Alle" -#: ../cache/locales.php:219 +#: [menu]refresh msgid "Refresh all the streams" msgstr "Genopfrisk alle strømmene" -#: ../cache/locales.php:220 ../cache/locales.php:402 -msgid "Search" -msgstr "Søg" +#: [roster]search +#, fuzzy +msgid "Search in your contacts" +msgstr "Snak med dine kontakter" -#: ../cache/locales.php:221 +#: [hello]active_contacts +#, fuzzy +msgid "Active contacts" +msgstr "Dine kontakter" + +#: [hello]chat msgid "Go on the Chat page" msgstr "Gå til Chat siden" -#: ../cache/locales.php:222 -msgid "Read all theses articles on the News page" -msgstr "Læs alle disse artikler på nyhedssiden" - -#: ../cache/locales.php:223 -msgid "Visit your public blog" -msgstr "Besøg din offentlig blog" - -#: ../cache/locales.php:224 -msgid "See your public posts and share them with all your contacts" -msgstr "Se dine offentlig indlæg og del dem med alle dine kontakter" - -#: ../cache/locales.php:226 -msgid "Universal share button" -msgstr "Universel dele-knap" - -#: ../cache/locales.php:227 -msgid "" -"Bookmark or drag and drop the following button in your toolbar and use it on " -"all the pages you want to share on Movim" -msgstr "" -"Bogmærk eller træk og slip følgende knap ind på din værktøjslinje og brug " -"den på alle de sider du gerne vil dele på Movim" - -#: ../cache/locales.php:228 -msgid "Share on Movim" -msgstr "Del på Movim" - -#: ../cache/locales.php:229 -msgid "Frequently Asked Questions" -msgstr "Ofte stillede spørgsmål" - -#: ../cache/locales.php:230 -msgid "What do the little banners refer to ?" -msgstr "Hvad refererer de små bannere til ?" - -#: ../cache/locales.php:231 -msgid "" -"Thanks to these five little banners, you can quickly identitfy the level of " -"confdentiality applied to the information you provide." -msgstr "" -"Takket være disse fem små bannere, kan du hurtigt identificere niveauet af " -"fortrolighed der tillæges den information du giver." - -#: ../cache/locales.php:232 -msgid "White, only you can see the information" -msgstr "Hvid, kun du kan se denne information" - -#: ../cache/locales.php:233 -msgid "Green, you have chosen some contacts who can see your information" -msgstr "Grøn, du har valgt nogle kontakter der kan se din information" - -#: ../cache/locales.php:234 -msgid "Orange, all your contact list can see your information" -msgstr "Orange, alle dine kontakter kan se din information" - -#: ../cache/locales.php:235 -msgid "Red, everybody in the XMPP network can see your information" -msgstr "Rød, alle på XMPP-netværket kan se din information" - -#: ../cache/locales.php:236 -msgid "Black, the whole Internet can see your information" -msgstr "Sort, hele internettet kan se din information" - -#: ../cache/locales.php:237 -msgid "Looking for some documentation ?" -msgstr "Leder du efter dokumentation ?" - -#: ../cache/locales.php:238 -msgid "Read the Wiki" -msgstr "Læs Wiki'en" - -#: ../cache/locales.php:239 -msgid "Talk with us by email ?" -msgstr "Skriv til os på email ?" - -#: ../cache/locales.php:240 -msgid "Join the Mailing List" -msgstr "Tilmeld dig maillisten" - -#: ../cache/locales.php:241 -msgid "Chat with the team ?" -msgstr "Chat med teamet ?" - -#: ../cache/locales.php:242 -msgid "Join the Chatroom" -msgstr "Gå ind i chatrummet" - -#: ../cache/locales.php:243 -msgid "Location node created" -msgstr "Placerings node oprettet" - -#: ../cache/locales.php:244 -msgid "Bookmark node created" -msgstr "Bogmærke node oprettet" - -#: ../cache/locales.php:245 -msgid "Profile node created" -msgstr "Profil node oprettet" - -#: ../cache/locales.php:246 -msgid "Avatar node created" -msgstr "Avatar node oprettet" - -#: ../cache/locales.php:247 -msgid "Subscriptions node created" -msgstr "Tilmeldings node oprettet" - -#: ../cache/locales.php:248 -msgid "Microblog node created" -msgstr "Mikroblog node oprettet" - -#: ../cache/locales.php:249 -msgid "Location" -msgstr "Placering" - -#: ../cache/locales.php:250 -msgid "Wrong position" -msgstr "Forkert placering" - -#: ../cache/locales.php:251 -msgid "Location updated" -msgstr "Placering opdateret" - -#: ../cache/locales.php:252 -msgid "Update my position" -msgstr "Opdater min placering" - -#: ../cache/locales.php:253 -msgid "Wrong username" -msgstr "Forkert brugernavn" - -#: ../cache/locales.php:254 -msgid "Invalid JID" -msgstr "Ugyldig JID" - -#: ../cache/locales.php:255 -msgid "Empty Challenge from the server" -msgstr "Tom Challenge fra serveren" - -#: ../cache/locales.php:256 -msgid "XMPP Domain error, your account is not a correct Jabber ID" -msgstr "XMPP domænefejl, din konto er ikke et rigtigt Jabber ID" - -#: ../cache/locales.php:257 -msgid "Some data are missing !" -msgstr "Nogle data manger !" - -#: ../cache/locales.php:258 -msgid "Wrong password" -msgstr "Forkert adgangskode" - -#: ../cache/locales.php:259 -msgid "Internal server error" -msgstr "Intern serverfejl" - -#: ../cache/locales.php:260 -msgid "Session error" -msgstr "Sessionsfejl" - -#: ../cache/locales.php:261 -msgid "Account successfully created" -msgstr "Konto er oprettet" - -#: ../cache/locales.php:262 ../cache/locales.php:271 -msgid "Your XMPP server is unauthorized" -msgstr "Din XMPP server er ikke tilladt" - -#: ../cache/locales.php:263 -msgid "The server takes too much time to respond" -msgstr "Serveren er for lang tid om at svare" - -#: ../cache/locales.php:264 -msgid "Your web browser is too old to use with Movim." -msgstr "Din internet browser er for gammel til at bruge Movim." - -#: ../cache/locales.php:265 -msgid "" -"Movim cannot talk with the server, please try again later (Websocket " -"connection error)" -msgstr "" -"Movim kan ikke kommunikere med serveren, prøv venligst igen senere " -"(Websocket forbindelsesfejl)" - -#: ../cache/locales.php:266 -msgid "Impossible login" -msgstr "Login ikke muligt" - -#: ../cache/locales.php:267 -msgid "Oops!" -msgstr "Uups!" - -#: ../cache/locales.php:268 ../cache/locales.php:449 ../cache/locales.php:455 -msgid "Unknown error" -msgstr "Ukendt fejl" - -#: ../cache/locales.php:269 -msgid "Invalid username format" -msgstr "Ugyldigt brugernavn" - -#: ../cache/locales.php:270 -msgid "Invalid password format" -msgstr "Ugyldigt kodeord" - -#: ../cache/locales.php:272 -msgid "A Movim session is already open on an other device" -msgstr "En Movim session er allerede åben på en anden enhed" - -#: ../cache/locales.php:273 -msgid "Movim failed to authenticate. You entered wrong data" -msgstr "Movim kunne ikke autentificere sig. Du indtastede forkert data" - -#: ../cache/locales.php:274 -msgid "Authentication mechanism not supported by Movim" -msgstr "Autentificerings mekanismen er ikke understøttet af Movim" - -#: ../cache/locales.php:275 -msgid "The XMPP authentification failed" -msgstr "XMMP autetifikationen fejlede" - -#: ../cache/locales.php:276 -#, php-format -msgid "" -"You can login with Facebook (chat only) using %syour.id@chat.facebook.com%s " -"and your password" -msgstr "" -"Du kan logge ind med Facebook (kun chat) med %sdin.id@chat.facebook.com%s og " -"dit kodeord" - -#: ../cache/locales.php:277 -#, php-format -msgid "%sGmail accounts are also compatible%s but are not fully supported" -msgstr "%sGmail konti er også kompatible%s men ikke fuldt understøttede" - -#: ../cache/locales.php:278 -msgid "You can login using your favorite Jabber account" -msgstr "Du kan logge ind med din favorit Jabber konto" - -#: ../cache/locales.php:279 -msgid "or with our demonstration account" -msgstr "eller med vores demonstrations konto" - -#: ../cache/locales.php:280 ../cache/locales.php:435 -msgid "Accounts" -msgstr "Konti" - -#: ../cache/locales.php:281 -msgid "My address" -msgstr "Min adresse" - -#: ../cache/locales.php:283 -msgid "Create one !" -msgstr "Opret en !" - -#: ../cache/locales.php:284 -msgid "No account yet ?" -msgstr "Ingen konto endnu ?" - -#: ../cache/locales.php:285 -msgid "Another account" -msgstr "En anden konto" - -#: ../cache/locales.php:286 -msgid "You can login with accounts from theses servers" -msgstr "Du kan logge ind med konti fra disse servere" - -#: ../cache/locales.php:287 -msgid "Connected" -msgstr "Forbundet" - -#: ../cache/locales.php:288 -msgid "Population" -msgstr "Befolkning" - -#: ../cache/locales.php:289 -msgid "Bad nickname (between 4 and 40 characters)" -msgstr "" - -#: ../cache/locales.php:292 -msgid "" -"Welcome on your news feed, here you will see all the posts published in the " -"groups you have subscribed." -msgstr "" -"Velkommen til din egen nyhedsfeed, her kan du se alle de indlæg der er " -"publiceret i de grupper du er tilmeldt." - -#: ../cache/locales.php:293 -msgid "Refreshing all the streams" -msgstr "Genopfriksker alle strømmende" - -#: ../cache/locales.php:294 -msgid "This post is public" -msgstr "Dette indlæg er offentligt" - -#: ../cache/locales.php:295 -msgid "Manage your members" -msgstr "Administrér dine medlemmer" - -#: ../cache/locales.php:296 -msgid "Get the members" -msgstr "Hent medlemmerne" - -#: ../cache/locales.php:297 -msgid "Affiliations saved" -msgstr "Tilknytninger gemt" - -#: ../cache/locales.php:298 -msgid "Manage your subscriptions" -msgstr "Administrér dine tilmeldinger" - -#: ../cache/locales.php:299 -msgid "Manage the subscriptions" -msgstr "Administrér tilmeldingerne" - -#: ../cache/locales.php:300 -msgid "Get the subscriptions" -msgstr "Hent tilmeldingerne" - -#: ../cache/locales.php:301 -msgid "Subscriptions saved" -msgstr "Tilmeding gemt" - -#: ../cache/locales.php:302 -msgid "Pending Invitations" -msgstr "Ventende invitationer" - -#: ../cache/locales.php:303 -#, php-format -msgid "%s wants to talk with you" -msgstr "%s vil gerne snakke med dig" - -#: ../cache/locales.php:304 -msgid "Manage" -msgstr "Administrér" - -#: ../cache/locales.php:305 ../cache/locales.php:338 -msgid "News Feed" -msgstr "Nyhedsfeed" - -#: ../cache/locales.php:306 ../cache/locales.php:339 -msgid "Discover and register to the groups you are interested in" -msgstr "Opdag og tilmeld gig til de grupper du er interreseret i" - -#: ../cache/locales.php:307 ../cache/locales.php:340 ../cache/locales.php:482 -msgid "Preview" -msgstr "Forhåndsvisning" - -#: ../cache/locales.php:308 ../cache/locales.php:341 ../cache/locales.php:478 -msgid "Help" -msgstr "Hjælp" - -#: ../cache/locales.php:309 ../cache/locales.php:342 -msgid "More help" -msgstr "Mere hjælp" - -#: ../cache/locales.php:310 ../cache/locales.php:343 -msgid "Markdown syntax manual" -msgstr "Markdown syntaks manual" - -#: ../cache/locales.php:311 ../cache/locales.php:344 ../cache/locales.php:681 -msgid "Title" -msgstr "Titel" - -#: ../cache/locales.php:312 ../cache/locales.php:345 -msgid "Content" -msgstr "Indhold" - -#: ../cache/locales.php:313 ../cache/locales.php:346 -msgid "Link" -msgstr "Link" - -#: ../cache/locales.php:314 ../cache/locales.php:347 -msgid "Tags" -msgstr "Tags" - -#: ../cache/locales.php:315 ../cache/locales.php:348 -msgid "Please enter a valid url" -msgstr "Skriv venligst en gyldig url" - -#: ../cache/locales.php:316 ../cache/locales.php:349 -msgid "No content to preview" -msgstr "Intet indhold at forhåndsvise" - -#: ../cache/locales.php:317 ../cache/locales.php:350 ../cache/locales.php:687 -msgid "No content" -msgstr "Intet indhold" - -#: ../cache/locales.php:318 ../cache/locales.php:351 -msgid "Post published" -msgstr "Indlæg udgivet" - -#: ../cache/locales.php:319 ../cache/locales.php:352 -msgid "Post deleted" -msgstr "Indlæg slettet" - -#: ../cache/locales.php:320 ../cache/locales.php:353 -msgid "This picture will be added to your gallery" -msgstr "Dette billede vil blive tilføjet til dit galleri" - -#: ../cache/locales.php:321 ../cache/locales.php:354 -msgid "What's Hot" -msgstr "Hvad er hot" - -#: ../cache/locales.php:322 ../cache/locales.php:355 -msgid "New post" -msgstr "Nyt indlæg" - -#: ../cache/locales.php:323 ../cache/locales.php:357 -msgid "" -"You can also use services like Imgur or Flickr to host your picture and " -"paste the link here." -msgstr "" -"Du kan også bruge tjenester som Imgur eller Flickr til at hoste dit billede " -"og så indsætte et link her." - -#: ../cache/locales.php:324 -#, php-format -msgid "This is a re-post from %s" -msgstr "" - -#: ../cache/locales.php:325 -#, php-format -msgid "See %s profile" -msgstr "" - -#: ../cache/locales.php:326 -msgid "Publish this post on your public feed?" -msgstr "Udgiv dette indlæg i dit offentlige feed?" - -#: ../cache/locales.php:327 -msgid "Post published on your blog" -msgstr "Indlæg udgivet på din blog" - -#: ../cache/locales.php:328 -msgid "Post removed from your blog" -msgstr "Indlæg fjernet fra din blog" - -#: ../cache/locales.php:329 ../cache/locales.php:701 -msgid "Delete this post" -msgstr "Slet dette indlæg" - -#: ../cache/locales.php:330 -msgid "You are going to delete this post, please confirm your action" -msgstr "Du er ved at slette dette indlæg, bekræft venligst din handling" - -#: ../cache/locales.php:331 -msgid "Comments disabled" -msgstr "Kommentarer slået fra" - -#: ../cache/locales.php:332 -msgid "Comment published" -msgstr "Kommentar udgivet" - -#: ../cache/locales.php:333 -msgid "Disconnect" -msgstr "Afbryd" - -#: ../cache/locales.php:334 -msgid "Your status here !" -msgstr "Din status her !" - -#: ../cache/locales.php:335 -msgid "Status updated" -msgstr "Status opdateret" - -#: ../cache/locales.php:336 -msgid "Status" -msgstr "Status" - -#: ../cache/locales.php:337 -msgid "Presence" -msgstr "Tilstedeværelse" - -#: ../cache/locales.php:356 -msgid "Publish" -msgstr "" - -#: ../cache/locales.php:358 -msgid "You cannot publish a post on this Group" -msgstr "" - -#: ../cache/locales.php:359 -msgid "" -"Some fields have been filled in. Do you still want to go back and loose " -"their content?" -msgstr "" - -#: ../cache/locales.php:360 -msgid "Shared" -msgstr "Delt" - -#: ../cache/locales.php:362 -#, php-format -msgid "%s has been added to your public groups" -msgstr "%s er blevet tilføjet til dine offentlige grupper" - -#: ../cache/locales.php:363 -#, php-format -msgid "%s has been removed from your public groups" -msgstr "%s er blevet fjernet fra dine offentlige grupper" - -#: ../cache/locales.php:364 -msgid "Add a chatroom" -msgstr "Tilføj et chatrum" - -#: ../cache/locales.php:365 -msgid "You don't have any chatroom yet." -msgstr "Du har ikke nogen chatrum endnu." - -#: ../cache/locales.php:366 -msgid "Add one by clicking on the add button in the header." -msgstr "Tilføj et ved at klikke på tilføj knappen i headeren." - -#: ../cache/locales.php:367 -msgid "Chatrooms" -msgstr "Chatrum" - -#: ../cache/locales.php:370 -msgid "My Favorite Room" -msgstr "Mit favoritrum" - -#: ../cache/locales.php:374 -msgid "Remove a chatroom" -msgstr "Fjern et chatrum" - -#: ../cache/locales.php:375 -msgid "" -"You are going to remove the following chatroom. Please confirm your action." -msgstr "Du er ved at fjerne følgende chatrum. Bekræft venligst din handling." - -#: ../cache/locales.php:378 -msgid "Users in the room" -msgstr "Brugere i rummet" - -#: ../cache/locales.php:379 -msgid "Please enter a correct nickname (6 to 40 characters)" -msgstr "" - -#: ../cache/locales.php:381 -msgid "Public chatroom" -msgstr "" - -#: ../cache/locales.php:382 -msgid "Please provide a room address" -msgstr "" - -#: ../cache/locales.php:383 -msgid "You are currently logued as an anonymous user." -msgstr "" - -#: ../cache/locales.php:384 -msgid "" -"You can join using your own account or create one on the login page by " -"loging out using the cross in the top-right corner." -msgstr "" - -#: ../cache/locales.php:385 -#, php-format -msgid "Login on %s" -msgstr "" - -#: ../cache/locales.php:386 -msgid "Your nickname" -msgstr "" - -#: ../cache/locales.php:387 -msgid "Ungrouped" -msgstr "Ikke grupperet" - -#: ../cache/locales.php:388 -msgid "Show disconnected contacts" -msgstr "Vis offline kontakter" - -#: ../cache/locales.php:389 -msgid "Hide disconnected contacts" -msgstr "Skjul offline kontaker" - -#: ../cache/locales.php:390 -#, php-format -msgid "Show group %s" -msgstr "Vis gruppen %s" - -#: ../cache/locales.php:391 -#, php-format -msgid "Hide group %s" -msgstr "Skjul gruppen %s" - -#: ../cache/locales.php:392 -msgid "Please enter a valid Jabber ID" -msgstr "Skriv venligst et gyldigt Jabber ID" - -#: ../cache/locales.php:393 -msgid "" -"No contacts ? You can add one using the + button bellow or going to the " -"Explore page" -msgstr "" -"Inken kontakter ? Du kan tilføje nogen med + knappen herunder eller via " -"Opdag siden" - -#: ../cache/locales.php:394 -msgid "Show/Hide" -msgstr "Vis/skjul" - -#: ../cache/locales.php:395 -msgid "Enter the Jabber ID of your contact." -msgstr "Skriv Jabber ID'et på din kontakt." - -#: ../cache/locales.php:396 -msgid "Press enter to validate." -msgstr "Tryk enter vor at validere." - -#: ../cache/locales.php:397 -msgid "JID" -msgstr "JID" - -#: ../cache/locales.php:398 -msgid "Results" -msgstr "Resultater" - -#: ../cache/locales.php:399 -msgid "Contact added" -msgstr "Kontakt tilføjet" - -#: ../cache/locales.php:401 -msgid "Contact deleted" -msgstr "Kontakt slettet" - -#: ../cache/locales.php:403 -msgid "This is not a valid url" -msgstr "Dette er ikke en gyldig url" - -#: ../cache/locales.php:404 -msgid "Sharing the URL" -msgstr "Dele URL'en" - -#: ../cache/locales.php:405 -msgid "Statistics" -msgstr "Statistikker" - -#: ../cache/locales.php:406 -msgid "Since" -msgstr "Siden" - -#: ../cache/locales.php:407 -msgid "Sessions" -msgstr "Sessioner" - -#: ../cache/locales.php:409 -msgid "Monthly Subscriptions" -msgstr "Månedlige tilmeldinger" - -#: ../cache/locales.php:410 -msgid "Monthly Subscriptions Cumulated" -msgstr "Måndelige tilmeldinger akkumuleret" - -#: ../cache/locales.php:412 -msgid "" -"Movim is a decentralized social network, before creating a new account you " -"need to choose a server to register." -msgstr "" -"Movim er et decentraliseret socialt netværk, før du opretter en ny konto " -"skal du vælge en server" - -#: ../cache/locales.php:413 -msgid "Your server here ?" -msgstr "Din server her ?" - -#: ../cache/locales.php:414 -msgid "Contact us to add yours to the officially supported servers list" -msgstr "" -"Kontakt os for at tilføje din til den officielt understøttede serverliste" - -#: ../cache/locales.php:416 -msgid "No public feed for this contact" -msgstr "Intet offentligt feed for kontakt" - -#: ../cache/locales.php:417 -msgid "No contact specified" -msgstr "Ingen kontakt specificeret" - -#: ../cache/locales.php:418 ../cache/locales.php:473 -msgid "Profile" -msgstr "Profil" - -#: ../cache/locales.php:419 -msgid "Profile Updated" -msgstr "Profil opdateret" - -#: ../cache/locales.php:420 -msgid "Profile Not Updated" -msgstr "Profil ikke opdateret" - -#: ../cache/locales.php:421 -msgid "Your profile is now public" -msgstr "Din profil er nu offentlig" - -#: ../cache/locales.php:422 -msgid "Your profile is now restricted" -msgstr "Din profil er nu begrænset" - -#: ../cache/locales.php:436 -msgid "Twitter" -msgstr "Twitter" - -#: ../cache/locales.php:437 -msgid "Skype" -msgstr "Skype" - -#: ../cache/locales.php:438 -msgid "Yahoo" -msgstr "Yahoo" - -#: ../cache/locales.php:439 -msgid "Privacy Level" -msgstr "Privatlivs niveau" - -#: ../cache/locales.php:440 -msgid "Is this profile public ?" -msgstr "Er denne profil offentlig ?" - -#: ../cache/locales.php:441 -msgid "" -"Please pay attention ! By making your profile public, all the information " -"listed above will be available for all the Movim users and on the whole " -"Internet." -msgstr "" -"Overvej venligst ! Ved at gøre din profil offentlig, bliver al information " -"herunder tilgængelig for alle Movim brugere og på hele internettet." - -#: ../cache/locales.php:442 -msgid "Call" -msgstr "Ring op" - -#: ../cache/locales.php:443 -msgid "Hang up" -msgstr "Læg på" - -#: ../cache/locales.php:444 -msgid "Connection" -msgstr "Forbindelse" - -#: ../cache/locales.php:445 ../cache/locales.php:451 -msgid "Hung up" -msgstr "Lagde på" - -#: ../cache/locales.php:446 ../cache/locales.php:452 -msgid "Your contact is busy" -msgstr "Din kontakt er optaget" - -#: ../cache/locales.php:447 ../cache/locales.php:453 -msgid "Declined" -msgstr "Afslået" - -#: ../cache/locales.php:448 ../cache/locales.php:454 -msgid "Remote application incompatible" -msgstr "Programmet i den anden ende er ikke kompatibel" - -#: ../cache/locales.php:450 ../cache/locales.php:456 -msgid "Is calling you" -msgstr "ringer til dig" - -#: ../cache/locales.php:457 -msgid "You don't have javascript enabled. Good luck with that." -msgstr "Du har ikke Javascript slået til. Held og lykke med det." - -#: ../cache/locales.php:458 -msgid "" -"Movim is a kickass distributed social networking platform that protect your " -"privacy an comes with a set of awesome features." -msgstr "" -"Movim er en brandgod distribueret socialt netværks-platform, der beskytter " -"dit privatliv og kommer med et sæt af ærefrygtindgydende features." - -#: ../cache/locales.php:459 -msgid "Administration" -msgstr "Administration" - -#: ../cache/locales.php:460 -msgid "Home" -msgstr "Start" - -#: ../cache/locales.php:461 -msgid "Discover" -msgstr "Opdag" - -#: ../cache/locales.php:462 -msgid "Explore" -msgstr "Udforsk" - -#: ../cache/locales.php:463 -msgid "Account Creation" -msgstr "Konto oprettelse" - -#: ../cache/locales.php:464 +#: [hello]news [page]news msgid "News" msgstr "Nyheder" -#: ../cache/locales.php:465 -msgid "Avatar" -msgstr "Profilbillede" +#: [hello]news_page +msgid "Read all theses articles on the News page" +msgstr "Læs alle disse artikler på nyhedssiden" -#: ../cache/locales.php:467 -msgid "Chats" -msgstr "Chats" +#: [hello]blog_title +msgid "Visit your public blog" +msgstr "Besøg din offentlig blog" -#: ../cache/locales.php:470 -msgid "Server" -msgstr "Server" +#: [hello]blog_text +msgid "See your public posts and share them with all your contacts" +msgstr "Se dine offentlig indlæg og del dem med alle dine kontakter" -#: ../cache/locales.php:471 -msgid "Public Groups" -msgstr "Offentlige grupper" +#: [hello]share_title +msgid "Universal share button" +msgstr "Universel dele-knap" -#: ../cache/locales.php:472 -msgid "Viewer" -msgstr "Fremviser" +#: [hello]share_text +msgid "Bookmark or drag and drop the following button in your toolbar and use it on all the pages you want to share on Movim" +msgstr "Bogmærk eller træk og slip følgende knap ind på din værktøjslinje og brug den på alle de sider du gerne vil dele på Movim" -#: ../cache/locales.php:474 -msgid "Media" -msgstr "Medier" +#: [hello]share_button +msgid "Share on Movim" +msgstr "Del på Movim" -#: ../cache/locales.php:475 -msgid "Blog" -msgstr "Blog" +#: [help]faq +msgid "Frequently Asked Questions" +msgstr "Ofte stillede spørgsmål" -#: ../cache/locales.php:476 -msgid "About" -msgstr "Om" +#: [banner]title +msgid "What do the little banners refer to ?" +msgstr "Hvad refererer de små bannere til ?" -#: ../cache/locales.php:477 -msgid "Login" -msgstr "Log ind" +#: [banner]info1 +msgid "Thanks to these five little banners, you can quickly identitfy the level of confdentiality applied to the information you provide." +msgstr "Takket være disse fem små bannere, kan du hurtigt identificere niveauet af fortrolighed der tillæges den information du giver." -#: ../cache/locales.php:479 -msgid "Feed" -msgstr "Kilde" +#: [banner]white +msgid "White, only you can see the information" +msgstr "Hvid, kun du kan se denne information" -#: ../cache/locales.php:481 -msgid "Gallery" -msgstr "Galleri" +#: [banner]green +msgid "Green, you have chosen some contacts who can see your information" +msgstr "Grøn, du har valgt nogle kontakter der kan se din information" -#: ../cache/locales.php:483 -msgid "Visio-conference" -msgstr "Visio-konference" +#: [banner]orange +msgid "Orange, all your contact list can see your information" +msgstr "Orange, alle dine kontakter kan se din information" -#: ../cache/locales.php:484 -msgid "Pods" -msgstr "Pods" +#: [banner]red +msgid "Red, everybody in the XMPP network can see your information" +msgstr "Rød, alle på XMPP-netværket kan se din information" -#: ../cache/locales.php:485 -msgid "Share" -msgstr "Del" +#: [banner]black +msgid "Black, the whole Internet can see your information" +msgstr "Sort, hele internettet kan se din information" -#: ../cache/locales.php:486 -msgid "Room" +#: [wiki]question +msgid "Looking for some documentation ?" +msgstr "Leder du efter dokumentation ?" + +#: [wiki]button +msgid "Read the Wiki" +msgstr "Læs Wiki'en" + +#: [ml]question +msgid "Talk with us by email ?" +msgstr "Skriv til os på email ?" + +#: [ml]button +msgid "Join the Mailing List" +msgstr "Tilmeld dig maillisten" + +#: [chatroom]question +msgid "Chat with the team ?" +msgstr "Chat med teamet ?" + +#: [chatroom]button +msgid "Join the Chatroom" +msgstr "Gå ind i chatrummet" + +#: [init]location +msgid "Location node created" +msgstr "Placerings node oprettet" + +#: [init]bookmark +msgid "Bookmark node created" +msgstr "Bogmærke node oprettet" + +#: [init]vcard4 +msgid "Profile node created" +msgstr "Profil node oprettet" + +#: [init]avatar +msgid "Avatar node created" +msgstr "Avatar node oprettet" + +#: [init]subscriptions +msgid "Subscriptions node created" +msgstr "Tilmeldings node oprettet" + +#: [init]microblog +msgid "Microblog node created" +msgstr "Mikroblog node oprettet" + +#: [location]title +msgid "Location" +msgstr "Placering" + +#: [location]wrong_postition +msgid "Wrong position" +msgstr "Forkert placering" + +#: [location]updated +msgid "Location updated" +msgstr "Placering opdateret" + +#: [location]update +msgid "Update my position" +msgstr "Opdater min placering" + +#: [login_anonymous]bad_username +msgid "Bad nickname (between 4 and 40 characters)" msgstr "" -#: ../cache/locales.php:487 -#, php-format -msgid "Error: %s" -msgstr "Fejl: '%s'" +#: [error]username +msgid "Wrong username" +msgstr "Forkert brugernavn" -#: ../cache/locales.php:488 -#, php-format -msgid "Cannot load file '%s'" -msgstr "Kan ikke indlæse fil '%s'" +#: [error]jid +msgid "Invalid JID" +msgstr "Ugyldig JID" -#: ../cache/locales.php:489 -#, php-format -msgid "Route error, please set all the parameters for the page %s" -msgstr "Rutefejl, sæt venligst alle parametre for siden %s" +#: [error]empty_challenge +msgid "Empty Challenge from the server" +msgstr "Tom Challenge fra serveren" -#: ../cache/locales.php:490 -#, php-format -msgid "Requested widget '%s' doesn't exist." -msgstr "Efterspurgte widget '%s' eksisterer ikke." +#: [error]dns +msgid "XMPP Domain error, your account is not a correct Jabber ID" +msgstr "XMPP domænefejl, din konto er ikke et rigtigt Jabber ID" -#: ../cache/locales.php:491 -#, php-format -msgid "Requested event '%s' not registered." -msgstr "Efterspurgte event '%s' er ikke registreret" +#: [error]data_missings +msgid "Some data are missing !" +msgstr "Nogle data manger !" -#: ../cache/locales.php:492 -msgid "Whoops!" -msgstr "Hovsa!" +#: [error]wrong_password +msgid "Wrong password" +msgstr "Forkert adgangskode" -#: ../cache/locales.php:493 -msgid "It seem that you don't have any pictures here?" -msgstr "Det ser ud til at du ikke har noget billede her?" +#: [error]internal +msgid "Internal server error" +msgstr "Intern serverfejl" -#: ../cache/locales.php:494 -msgid "You can try to upload a couple by going to the Media page" -msgstr "Du kan prøve at uploade et par stykker på Medie siden" +#: [error]session +msgid "Session error" +msgstr "Sessionsfejl" -#: ../cache/locales.php:495 -#, php-format -msgid "%s - About" -msgstr "%s - Om" +#: [error]account_created +msgid "Account successfully created" +msgstr "Konto er oprettet" -#: ../cache/locales.php:496 -#, php-format -msgid "%s - Account" -msgstr "%s - Konto" +#: [error]xmpp_unauthorized +#, fuzzy +msgctxt "[error]xmpp_unauthorized" +msgid "Your XMPP server is unauthorized" +msgstr "Din XMPP server er ikke tilladt" -#: ../cache/locales.php:497 -#, php-format -msgid "%s - Administration Panel" -msgstr "%s - Adminstrationspanel" +#: [error]mec_error +msgid "The server takes too much time to respond" +msgstr "Serveren er for lang tid om at svare" -#: ../cache/locales.php:498 -#, php-format -msgid "%s - Blog" -msgstr "%s - Blog" +#: [error]too_old +msgid "Your web browser is too old to use with Movim." +msgstr "Din internet browser er for gammel til at bruge Movim." -#: ../cache/locales.php:499 -#, php-format -msgid "%s - Configuration" -msgstr "%s - Konfiguration" +#: [error]websocket +msgid "Movim cannot talk with the server, please try again later (Websocket connection error)" +msgstr "Movim kan ikke kommunikere med serveren, prøv venligst igen senere (Websocket forbindelsesfejl)" -#: ../cache/locales.php:500 -#, php-format -msgid "%s - Discover" -msgstr "%s - Opdag" +#: [error]impossible +msgid "Impossible login" +msgstr "Login ikke muligt" -#: ../cache/locales.php:501 -#, php-format -msgid "%s - Explore" -msgstr "%s - Udforsk" +#: [error]title +msgid "Oops!" +msgstr "Uups!" -#: ../cache/locales.php:502 -#, php-format -msgid "%s - Help Page" -msgstr "%s - Hjælp side" +#: [error]default [visio]unknown_error +msgid "Unknown error" +msgstr "Ukendt fejl" -#: ../cache/locales.php:503 -#, php-format -msgid "%s - Login to Movim" -msgstr "%s - Log Ind til Movim" +#: [error]login_format +msgid "Invalid username format" +msgstr "Ugyldigt brugernavn" -#: ../cache/locales.php:504 -#, php-format -msgid "%s - Welcome to Movim" -msgstr "%s - Velkommen til Movim" +#: [error]password_format +msgid "Invalid password format" +msgstr "Ugyldigt kodeord" -#: ../cache/locales.php:505 -#, php-format -msgid "%s - Media" -msgstr "%s - Medier" +#: [error]unauthorized +#, fuzzy +msgctxt "[error]unauthorized" +msgid "Your XMPP server is unauthorized" +msgstr "Din XMPP server er ikke tilladt" -#: ../cache/locales.php:506 -#, php-format -msgid "%s - News" -msgstr "%s - Nyheder" +#: [error]conflict +msgid "A Movim session is already open on an other device" +msgstr "En Movim session er allerede åben på en anden enhed" -#: ../cache/locales.php:507 -#, php-format -msgid "%s - Group Configuration" -msgstr "%s - Guppe opsætning" +#: [error]wrong_account +msgid "Movim failed to authenticate. You entered wrong data" +msgstr "Movim kunne ikke autentificere sig. Du indtastede forkert data" -#: ../cache/locales.php:508 -#, php-format -msgid "%s - Group" -msgstr "%s - Gruppe" +#: [error]mechanism +msgid "Authentication mechanism not supported by Movim" +msgstr "Autentificerings mekanismen er ikke understøttet af Movim" -#: ../cache/locales.php:509 -#, php-format -msgid "%s - 404" -msgstr "%s - 404" +#: [error]fail_auth +msgid "The XMPP authentification failed" +msgstr "XMMP autetifikationen fejlede" -#: ../cache/locales.php:510 -#, php-format -msgid "%s - Profile" -msgstr "%s - Profil" +#: [account]title [accounts]accounts_title +msgid "Accounts" +msgstr "Konti" -#: ../cache/locales.php:511 -#, php-format -msgid "%s - Server" -msgstr "%s - Server" +#: [form]username +msgid "My address" +msgstr "Min adresse" -#: ../cache/locales.php:512 -msgid "Validate" -msgstr "Validér" +#: [form]create_one +msgid "Create one !" +msgstr "Opret en !" -#: ../cache/locales.php:513 -msgid "Refresh" -msgstr "Genopfrisk" +#: [form]another_account +msgid "Another account" +msgstr "En anden konto" -#: ../cache/locales.php:514 -msgid "Add" -msgstr "Tilføj" +#: [form]no_account +msgid "No account yet ?" +msgstr "Ingen konto endnu ?" -#: ../cache/locales.php:515 -msgid "Delete" -msgstr "Slet" +#: [form]whitelist.info +msgid "You can login with accounts from theses servers" +msgstr "Du kan logge ind med konti fra disse servere" -#: ../cache/locales.php:516 -msgid "Remove" -msgstr "Fjern" +#: [form]connected +msgid "Connected" +msgstr "Forbundet" -#: ../cache/locales.php:517 -msgid "Cancel" -msgstr "Annullér" +#: [form]population +msgid "Population" +msgstr "Befolkning" -#: ../cache/locales.php:518 -msgid "Close" -msgstr "Luk" +#: [menu]empty_title +#, fuzzy +msgid "No news yet..." +msgstr "Ingen kommentarer endnu" -#: ../cache/locales.php:519 -msgid "Update" -msgstr "Opdatér" +#: [menu]empty +#, fuzzy +msgid "Welcome on your news feed, here you will see all the posts published by your contacts and in the groups you have subscribed." +msgstr "Velkommen til din egen nyhedsfeed, her kan du se alle de indlæg der er publiceret i de grupper du er tilmeldt." -#: ../cache/locales.php:520 -msgid "Updating" -msgstr "Opdatérer" +#: [menu]refresh +msgid "Refreshing all the streams" +msgstr "Genopfriksker alle strømmende" -#: ../cache/locales.php:521 +#: [menu]public +msgid "This post is public" +msgstr "Dette indlæg er offentligt" + +#: [affiliations]title +msgid "Manage your members" +msgstr "Administrér dine medlemmer" + +#: [affiliations]get +msgid "Get the members" +msgstr "Hent medlemmerne" + +#: [affiliations]saved +msgid "Affiliations saved" +msgstr "Tilknytninger gemt" + +#: [subscriptions]title +msgid "Manage your subscriptions" +msgstr "Administrér dine tilmeldinger" + +#: [subscriptions]info +msgid "Manage the subscriptions" +msgstr "Administrér tilmeldingerne" + +#: [subscriptions]get +msgid "Get the subscriptions" +msgstr "Hent tilmeldingerne" + +#: [subscriptions]saved +msgid "Subscriptions saved" +msgstr "Tilmeding gemt" + +#: [notifs]title +msgid "Pending Invitations" +msgstr "Ventende invitationer" + +#: [notifs]wants_to_talk +msgid "%s wants to talk with you" +msgstr "%s vil gerne snakke med dig" + +#: [notifs]manage +msgid "Manage" +msgstr "Administrér" + +#: [post]news_feed +msgid "News Feed" +msgstr "Nyhedsfeed" + +#: [post]placeholder +msgid "Discover and register to the groups you are interested in" +msgstr "Opdag og tilmeld gig til de grupper du er interreseret i" + +#: [post]preview [page]preview +msgid "Preview" +msgstr "Forhåndsvisning" + +#: [post]help [page]help +msgid "Help" +msgstr "Hjælp" + +#: [post]help_more +msgid "More help" +msgstr "Mere hjælp" + +#: [post]help_manual +msgid "Markdown syntax manual" +msgstr "Markdown syntaks manual" + +#: [post]title +msgid "Title" +msgstr "Titel" + +#: [post]content +msgid "Content" +msgstr "Indhold" + +#: [post]link +msgid "Link" +msgstr "Link" + +#: [post]tags +msgid "Tags" +msgstr "Tags" + +#: [post]valid_url [publish]valid_url +msgid "Please enter a valid url" +msgstr "Skriv venligst en gyldig url" + +#: [post]no_content_preview [publish]no_content_preview +msgid "No content to preview" +msgstr "Intet indhold at forhåndsvise" + +#: [post]no_content [publish]no_content [post]empty +msgid "No content" +msgstr "Intet indhold" + +#: [post]published +msgid "Post published" +msgstr "Indlæg udgivet" + +#: [post]deleted +msgid "Post deleted" +msgstr "Indlæg slettet" + +#: [post]gallery +msgid "This picture will be added to your gallery" +msgstr "Dette billede vil blive tilføjet til dit galleri" + +#: [post]hot +msgid "What's Hot" +msgstr "Hvad er hot" + +#: [post]hot_text +msgid "Posts recently published in Groups that you are not subscribed (yet)" +msgstr "" + +#: [post]new [publish]new +msgid "New post" +msgstr "Nyt indlæg" + +#: [post]embed_tip +msgid "You can also use services like Imgur or Flickr to host your picture and paste the link here." +msgstr "Du kan også bruge tjenester som Imgur eller Flickr til at hoste dit billede og så indsætte et link her." + +#: [post]repost +msgid "This is a re-post from %s" +msgstr "" + +#: [post]repost_profile +msgid "See %s profile" +msgstr "" + +#: [post]public +#, fuzzy +msgid "Publish this post publicly?" +msgstr "Udgiv dette indlæg i dit offentlige feed?" + +#: [post]blog_add +msgid "Post published on your blog" +msgstr "Indlæg udgivet på din blog" + +#: [post]blog_remove +msgid "Post removed from your blog" +msgstr "Indlæg fjernet fra din blog" + +#: [post]delete_title [post]delete +msgid "Delete this post" +msgstr "Slet dette indlæg" + +#: [post]delete_text +msgid "You are going to delete this post, please confirm your action" +msgstr "Du er ved at slette dette indlæg, bekræft venligst din handling" + +#: [post]comments_disabled +msgid "Comments disabled" +msgstr "Kommentarer slået fra" + +#: [post]comment_published +msgid "Comment published" +msgstr "Kommentar udgivet" + +#: [status]disconnect +msgid "Disconnect" +msgstr "Afbryd" + +#: [status]here +msgid "Your status here !" +msgstr "Din status her !" + +#: [status]updated +msgid "Status updated" +msgstr "Status opdateret" + +#: [status]status +msgid "Status" +msgstr "Status" + +#: [status]presence +msgid "Presence" +msgstr "Tilstedeværelse" + +#: [status]online +msgid "Online with Movim" +msgstr "" + +#: [publish]title +msgid "Publish" +msgstr "" + +#: [publish]attach +msgid "Add a file or a picture to your post" +msgstr "" + +#: [publish]no_publication +msgid "You cannot publish a post on this Group" +msgstr "" + +#: [publish]form_filled +msgid "Some fields have been filled in. Do you still want to go back and loose their content?" +msgstr "" + +#: [public_groups]shared +msgid "Shared" +msgstr "Delt" + +#: [public_groups]added +msgid "%s has been added to your public groups" +msgstr "%s er blevet tilføjet til dine offentlige grupper" + +#: [rooms]add +msgid "Add a chatroom" +msgstr "Tilføj et chatrum" + +#: [rooms]empty_text1 +msgid "You don't have any chatroom yet." +msgstr "Du har ikke nogen chatrum endnu." + +#: [rooms]empty_text2 +msgid "Add one by clicking on the add button in the header." +msgstr "Tilføj et ved at klikke på tilføj knappen i headeren." + +#: [chatrooms]title +msgid "Chatrooms" +msgstr "Chatrum" + +#: [chatrooms]name_placeholder +msgid "My Favorite Room" +msgstr "Mit favoritrum" + +#: [chatrooms]users +msgid "Users in the room" +msgstr "Brugere i rummet" + +#: [chatrooms]bad_nickname +msgid "Please enter a correct nickname (2 to 40 characters)" +msgstr "" + +#: [room]anonymous_title +msgid "Public chatroom" +msgstr "" + +#: [room]no_room +msgid "Please provide a room address" +msgstr "" + +#: [room]anonymous_text1 +msgid "You are currently logued as an anonymous user." +msgstr "" + +#: [room]anonymous_text2 +msgid "You can join using your own account or create one on the login page by loging out using the cross in the top-right corner." +msgstr "" + +#: [room]anonymous_login +msgid "Login on %s" +msgstr "" + +#: [room]nick +msgid "Your nickname" +msgstr "" + +#: [roster]ungrouped +msgid "Ungrouped" +msgstr "Ikke grupperet" + +#: [roster]show_disconnected +msgid "Show disconnected contacts" +msgstr "Vis offline kontakter" + +#: [roster]hide_disconnected +msgid "Hide disconnected contacts" +msgstr "Skjul offline kontaker" + +#: [roster]show_group +msgid "Show group %s" +msgstr "Vis gruppen %s" + +#: [roster]hide_group +msgid "Hide group %s" +msgstr "Skjul gruppen %s" + +#: [roster]jid_error +msgid "Please enter a valid Jabber ID" +msgstr "Skriv venligst et gyldigt Jabber ID" + +#: [roster]no_contacts_title +#, fuzzy +msgid "No contacts ?" +msgstr "Dine kontakter" + +#: [roster]no_contacts_text +#, fuzzy +msgid "You can add one using the + button bellow" +msgstr "Inken kontakter ? Du kan tilføje nogen med + knappen herunder eller via Opdag siden" + +#: [roster]show_hide +msgid "Show/Hide" +msgstr "Vis/skjul" + +#: [roster]add_contact_info1 +msgid "Enter the Jabber ID of your contact." +msgstr "Skriv Jabber ID'et på din kontakt." + +#: [roster]add_contact_info2 +msgid "Press enter to validate." +msgstr "Tryk enter vor at validere." + +#: [roster]jid +msgid "JID" +msgstr "JID" + +#: [roster]results +msgid "Results" +msgstr "Resultater" + +#: [roster]added +msgid "Contact added" +msgstr "Kontakt tilføjet" + +#: [roster]deleted +msgid "Contact deleted" +msgstr "Kontakt slettet" + +#: [roster]search +msgid "Search" +msgstr "Søg" + +#: [share]error +msgid "This is not a valid url" +msgstr "Dette er ikke en gyldig url" + +#: [share]success +msgid "Sharing the URL" +msgstr "Dele URL'en" + +#: [statistics]title +msgid "Statistics" +msgstr "Statistikker" + +#: [statistics]since +msgid "Since" +msgstr "Siden" + +#: [statistics]sessions +msgid "Sessions" +msgstr "Sessioner" + +#: [statistics]monthly_sub +msgid "Monthly Subscriptions" +msgstr "Månedlige tilmeldinger" + +#: [statistics]monthly_sub_cum +msgid "Monthly Subscriptions Cumulated" +msgstr "Måndelige tilmeldinger akkumuleret" + +#: [subscribe]info +msgid "Movim is a decentralized social network, before creating a new account you need to choose a server to register." +msgstr "Movim er et decentraliseret socialt netværk, før du opretter en ny konto skal du vælge en server" + +#: [subscribe]server_question +msgid "Your server here ?" +msgstr "Din server her ?" + +#: [subscribe]server_contact +msgid "Contact us to add yours to the officially supported servers list" +msgstr "Kontakt os for at tilføje din til den officielt understøttede serverliste" + +#: [feed]nope +msgid "No public feed for this contact" +msgstr "Intet offentligt feed for kontakt" + +#: [feed]nope_contact +msgid "No contact specified" +msgstr "Ingen kontakt specificeret" + +#: [upload]title +#, fuzzy +msgid "Upload a file" +msgstr "Upload" + +#: [upload]choose +msgid "Choose a file to upload" +msgstr "" + +#: [vcard]title [page]profile +msgid "Profile" +msgstr "Profil" + +#: [vcard]updated +msgid "Profile Updated" +msgstr "Profil opdateret" + +#: [vcard]not_updated +msgid "Profile Not Updated" +msgstr "Profil ikke opdateret" + +#: [vcard]public +msgid "Your profile is now public" +msgstr "Din profil er nu offentlig" + +#: [vcard]restricted +msgid "Your profile is now restricted" +msgstr "Din profil er nu begrænset" + +#: [general]nickname +#, fuzzy +msgctxt "[general]nickname" +msgid "Nickname" +msgstr "Kaldenavn" + +#: [accounts]twitter +msgid "Twitter" +msgstr "Twitter" + +#: [accounts]skype +msgid "Skype" +msgstr "Skype" + +#: [accounts]yahoo +msgid "Yahoo" +msgstr "Yahoo" + +#: [accounts]accounts_nickname +#, fuzzy +msgctxt "[accounts]accounts_nickname" +msgid "Nickname" +msgstr "Kaldenavn" + +#: [accounts]accounts_yahoo +#, fuzzy +msgid "Yahoo Account" +msgstr "Konto" + +#: [privacy]privacy_title +msgid "Privacy Level" +msgstr "Privatlivs niveau" + +#: [privacy]privacy_question +msgid "Is this profile public ?" +msgstr "Er denne profil offentlig ?" + +#: [privacy]privacy_info +msgid "Please pay attention ! By making your profile public, all the information listed above will be available for all the Movim users and on the whole Internet." +msgstr "Overvej venligst ! Ved at gøre din profil offentlig, bliver al information herunder tilgængelig for alle Movim brugere og på hele internettet." + +#: [save]submit [button]submit msgid "Submit" msgstr "Indsend" -#: ../cache/locales.php:522 -msgid "Submitting" -msgstr "Indsender" - -#: ../cache/locales.php:523 +#: [save]reset [button]reset msgid "Reset" msgstr "Nulstil" -#: ../cache/locales.php:524 +#: [visio]hung_up +msgid "Hung up" +msgstr "Lagde på" + +#: [visio]busy +msgid "Your contact is busy" +msgstr "Din kontakt er optaget" + +#: [visio]declined +msgid "Declined" +msgstr "Afslået" + +#: [visio]calling +msgid "Is calling you" +msgstr "ringer til dig" + +#: [visio]call +msgid "Call" +msgstr "Ring op" + +#: [visio]hang_up +msgid "Hang up" +msgstr "Læg på" + +#: [visio]connection +msgid "Connection" +msgstr "Forbindelse" + +#: [global]no_js +msgid "You don't have javascript enabled. Good luck with that." +msgstr "Du har ikke Javascript slået til. Held og lykke med det." + +#: [global]description +msgid "Movim is a kickass distributed social networking platform that protect your privacy an comes with a set of awesome features." +msgstr "Movim er en brandgod distribueret socialt netværks-platform, der beskytter dit privatliv og kommer med et sæt af ærefrygtindgydende features." + +#: [page]administration +msgid "Administration" +msgstr "Administration" + +#: [page]home +msgid "Home" +msgstr "Start" + +#: [page]discover +msgid "Discover" +msgstr "Opdag" + +#: [page]explore +msgid "Explore" +msgstr "Udforsk" + +#: [page]account_creation +msgid "Account Creation" +msgstr "Konto oprettelse" + +#: [page]avatar +msgid "Avatar" +msgstr "Profilbillede" + +#: [page]chats +msgid "Chats" +msgstr "Chats" + +#: [page]server +msgid "Server" +msgstr "Server" + +#: [page]public_groups +msgid "Public Groups" +msgstr "Offentlige grupper" + +#: [page]viewer +msgid "Viewer" +msgstr "Fremviser" + +#: [page]media +msgid "Media" +msgstr "Medier" + +#: [page]blog +msgid "Blog" +msgstr "Blog" + +#: [page]about +msgid "About" +msgstr "Om" + +#: [page]login +msgid "Login" +msgstr "Log ind" + +#: [page]feed +msgid "Feed" +msgstr "Kilde" + +#: [page]gallery +msgid "Gallery" +msgstr "Galleri" + +#: [page]visio +msgid "Visio-conference" +msgstr "Visio-konference" + +#: [page]pods +msgid "Pods" +msgstr "Pods" + +#: [page]share +msgid "Share" +msgstr "Del" + +#: [page]room +msgid "Room" +msgstr "" + +#: [error]error +msgid "Error: %s" +msgstr "Fejl: '%s'" + +#: [error]cannot_load_file +msgid "Cannot load file '%s'" +msgstr "Kan ikke indlæse fil '%s'" + +#: [error]route +msgid "Route error, please set all the parameters for the page %s" +msgstr "Rutefejl, sæt venligst alle parametre for siden %s" + +#: [error]widget_load_error +msgid "Requested widget '%s' doesn't exist." +msgstr "Efterspurgte widget '%s' eksisterer ikke." + +#: [error]widget_call_error +msgid "Requested event '%s' not registered." +msgstr "Efterspurgte event '%s' er ikke registreret" + +#: [error]whoops +msgid "Whoops!" +msgstr "Hovsa!" + +#: [error]media_not_found +msgid "It seem that you don't have any pictures here?" +msgstr "Det ser ud til at du ikke har noget billede her?" + +#: [error]media_ask_upload +msgid "You can try to upload a couple by going to the Media page" +msgstr "Du kan prøve at uploade et par stykker på Medie siden" + +#: [title]about +msgid "%s - About" +msgstr "%s - Om" + +#: [title]account +msgid "%s - Account" +msgstr "%s - Konto" + +#: [title]administration +msgid "%s - Administration Panel" +msgstr "%s - Adminstrationspanel" + +#: [title]blog +msgid "%s - Blog" +msgstr "%s - Blog" + +#: [title]configuration +msgid "%s - Configuration" +msgstr "%s - Konfiguration" + +#: [title]discover +msgid "%s - Discover" +msgstr "%s - Opdag" + +#: [title]explore +msgid "%s - Explore" +msgstr "%s - Udforsk" + +#: [title]help +msgid "%s - Help Page" +msgstr "%s - Hjælp side" + +#: [title]login +msgid "%s - Login to Movim" +msgstr "%s - Log Ind til Movim" + +#: [title]main +msgid "%s - Welcome to Movim" +msgstr "%s - Velkommen til Movim" + +#: [title]media +msgid "%s - Media" +msgstr "%s - Medier" + +#: [title]news +msgid "%s - News" +msgstr "%s - Nyheder" + +#: [title]node_configuration +msgid "%s - Group Configuration" +msgstr "%s - Guppe opsætning" + +#: [title]node +msgid "%s - Group" +msgstr "%s - Gruppe" + +#: [title]not_found +msgid "%s - 404" +msgstr "%s - 404" + +#: [title]profile +msgid "%s - Profile" +msgstr "%s - Profil" + +#: [title]server +msgid "%s - Server" +msgstr "%s - Server" + +#: [button]validate +msgid "Validate" +msgstr "Validér" + +#: [button]refresh +msgid "Refresh" +msgstr "Genopfrisk" + +#: [button]add +msgid "Add" +msgstr "Tilføj" + +#: [button]delete +msgid "Delete" +msgstr "Slet" + +#: [button]cancel +msgid "Cancel" +msgstr "Annullér" + +#: [button]close +msgid "Close" +msgstr "Luk" + +#: [button]update +msgid "Update" +msgstr "Opdatér" + +#: [button]updating +msgid "Updating" +msgstr "Opdatérer" + +#: [button]submitting +msgid "Submitting" +msgstr "Indsender" + +#: [button]register msgid "Register" msgstr "Registrér" -#: ../cache/locales.php:525 +#: [button]unregister msgid "Unregister" msgstr "Afmeld" -#: ../cache/locales.php:526 +#: [button]save msgid "Save" msgstr "Gem" -#: ../cache/locales.php:527 +#: [button]clear msgid "Clear" msgstr "Rens" -#: ../cache/locales.php:528 +#: [button]upload msgid "Upload" msgstr "Upload" -#: ../cache/locales.php:529 +#: [button]come_in msgid "Come in!" msgstr "Kom Ind!" -#: ../cache/locales.php:530 +#: [button]connecting msgid "Connecting" msgstr "Forbinder" -#: ../cache/locales.php:531 +#: [button]bool_yes msgid "Yes" msgstr "Ja" -#: ../cache/locales.php:532 +#: [button]bool_no msgid "No" msgstr "Nej" -#: ../cache/locales.php:534 +#: [button]return msgid "Return" msgstr "Returnér" -#: ../cache/locales.php:535 +#: [button]accept msgid "Accept" msgstr "Godkend" -#: ../cache/locales.php:536 +#: [button]refuse msgid "Refuse" msgstr "Afvis" -#: ../cache/locales.php:537 +#: [button]next msgid "Next" msgstr "Næste" -#: ../cache/locales.php:538 +#: [button]previous msgid "Previous" msgstr "Forrige" -#: ../cache/locales.php:539 -#, php-format +#: [step]step msgid "Step %s" msgstr "Skridt %s" -#: ../cache/locales.php:542 +#: [day]title msgid "Day" msgstr "Dag" -#: ../cache/locales.php:543 +#: [day]monday msgid "Monday" msgstr "Mandag" -#: ../cache/locales.php:544 +#: [day]tuesday msgid "Tuesday" msgstr "Tirsdag" -#: ../cache/locales.php:545 +#: [day]wednesday msgid "Wednesday" msgstr "Onsdag" -#: ../cache/locales.php:546 +#: [day]thursday msgid "Thursday" msgstr "Torsdag" -#: ../cache/locales.php:547 +#: [day]friday msgid "Friday" msgstr "Fredag" -#: ../cache/locales.php:548 +#: [day]saturday msgid "Saturday" msgstr "Lørdag" -#: ../cache/locales.php:549 +#: [day]sunday msgid "Sunday" msgstr "Søndag" -#: ../cache/locales.php:550 ../cache/locales.php:559 +#: [gender]nil +#, fuzzy +msgctxt "[gender]nil" msgid "None" msgstr "Ingen" -#: ../cache/locales.php:551 +#: [gender]male msgid "Male" msgstr "Mand" -#: ../cache/locales.php:552 +#: [gender]female msgid "Female" msgstr "Kvinde" -#: ../cache/locales.php:553 +#: [gender]other msgid "Other" msgstr "Andet" -#: ../cache/locales.php:554 +#: [client]bot msgid "Bot" msgstr "Bot" -#: ../cache/locales.php:555 +#: [client]desktop msgid "Desktop" msgstr "Skrivebord" -#: ../cache/locales.php:556 +#: [client]phone msgid "Phone" msgstr "Telefon" -#: ../cache/locales.php:557 +#: [client]web msgid "Web" msgstr "Web" -#: ../cache/locales.php:558 +#: [client]registered msgid "Registered" msgstr "Registreret" -#: ../cache/locales.php:560 +#: [marital]nil +#, fuzzy +msgctxt "[marital]nil" +msgid "None" +msgstr "Ingen" + +#: [marital]single msgid "Single" msgstr "Single" -#: ../cache/locales.php:561 +#: [marital]relationship msgid "In a relationship" msgstr "I forhold" -#: ../cache/locales.php:562 +#: [marital]married msgid "Married" msgstr "Gift" -#: ../cache/locales.php:563 +#: [marital]divorced msgid "Divorced" msgstr "Fraskilt" -#: ../cache/locales.php:564 +#: [marital]widowed msgid "Widowed" msgstr "Enke eller enkemand" -#: ../cache/locales.php:565 +#: [marital]cohabiting msgid "Cohabiting" msgstr "Samboende" -#: ../cache/locales.php:566 +#: [marital]union msgid "Civil Union" msgstr "Borgerlig Vielse" -#: ../cache/locales.php:567 +#: [flag]white msgid "Not shared" msgstr "Ikke delt" -#: ../cache/locales.php:568 +#: [flag]green msgid "Shared with one contact" msgstr "Delt med en kontakt" -#: ../cache/locales.php:569 +#: [flag]orange msgid "Shared with all contacts" msgstr "Delt med alle kontakter" -#: ../cache/locales.php:570 +#: [flag]red msgid "Shared with the XMPP network" msgstr "Delt med XMPP netværket" -#: ../cache/locales.php:571 +#: [flag]black msgid "Shared with the whole Internet" msgstr "Delt med hele internettet" -#: ../cache/locales.php:572 +#: [presence]online msgid "Online" msgstr "Online" -#: ../cache/locales.php:573 +#: [presence]away msgid "Away" msgstr "Ikke tilstede" -#: ../cache/locales.php:574 +#: [presence]dnd msgid "Do Not Disturb" msgstr "Vil ikke forstyrres" -#: ../cache/locales.php:575 +#: [presence]xa msgid "Extended Away" msgstr "Væk i længere tid" -#: ../cache/locales.php:576 +#: [presence]offline msgid "Offline" msgstr "Offline" -#: ../cache/locales.php:577 +#: [presence]error msgid "Error" msgstr "Fejl" -#: ../cache/locales.php:578 +#: [mood]afraid msgid "afraid" msgstr "bange" -#: ../cache/locales.php:579 +#: [mood]amazed msgid "amazed" msgstr "forbløffet" -#: ../cache/locales.php:580 +#: [mood]amorous msgid "amorous" msgstr "kælen" -#: ../cache/locales.php:581 +#: [mood]angry msgid "angry" msgstr "vred" -#: ../cache/locales.php:582 +#: [mood]annoyed msgid "annoyed" msgstr "irriteret" -#: ../cache/locales.php:583 +#: [mood]anxious msgid "anxious" msgstr "nervøs" -#: ../cache/locales.php:584 +#: [mood]aroused msgid "aroused" msgstr "opstemt" -#: ../cache/locales.php:585 +#: [mood]ashamed msgid "ashamed" msgstr "skamfuld" -#: ../cache/locales.php:586 +#: [mood]bored msgid "bored" msgstr "kedsom" -#: ../cache/locales.php:587 +#: [mood]brave msgid "brave" msgstr "modig" -#: ../cache/locales.php:588 +#: [mood]calm msgid "calm" msgstr "fedfyldt" -#: ../cache/locales.php:589 +#: [mood]cautious msgid "cautious" msgstr "forsigtig" -#: ../cache/locales.php:590 +#: [mood]cold msgid "cold" msgstr "kold" -#: ../cache/locales.php:591 +#: [mood]confident msgid "confident" msgstr "selvsikker" -#: ../cache/locales.php:592 +#: [mood]confused msgid "confused" msgstr "forvirret" -#: ../cache/locales.php:593 +#: [mood]contemplative msgid "contemplative" msgstr "eftertænksom" -#: ../cache/locales.php:594 +#: [mood]contented msgid "contented" msgstr "tilfreds" -#: ../cache/locales.php:595 +#: [mood]cranky msgid "cranky" msgstr "småsur" -#: ../cache/locales.php:596 +#: [mood]crazy msgid "crazy" msgstr "skør" -#: ../cache/locales.php:597 +#: [mood]creative msgid "creative" msgstr "kreativ" -#: ../cache/locales.php:598 +#: [mood]curious msgid "curious" msgstr "nysgerrig" -#: ../cache/locales.php:599 +#: [mood]dejected msgid "dejected" msgstr "modløs" -#: ../cache/locales.php:600 +#: [mood]depressed msgid "depressed" msgstr "deppresiv" -#: ../cache/locales.php:601 +#: [mood]disappointed msgid "disappointed" msgstr "skuffet" -#: ../cache/locales.php:602 +#: [mood]disgusted msgid "disgusted" msgstr "væmmet" -#: ../cache/locales.php:603 +#: [mood]dismayed msgid "dismayed" msgstr "forfærdet" -#: ../cache/locales.php:604 +#: [mood]distracted msgid "distracted" msgstr "distraheret" -#: ../cache/locales.php:605 +#: [mood]embarrassed msgid "embarrassed" msgstr "flov" -#: ../cache/locales.php:606 +#: [mood]envious msgid "envious" msgstr "misundelig" -#: ../cache/locales.php:607 +#: [mood]excited msgid "excited" msgstr "begejstret" -#: ../cache/locales.php:608 +#: [mood]flirtatious msgid "flirtatious" msgstr "flirtende" -#: ../cache/locales.php:609 +#: [mood]frustated msgid "frustated" msgstr "frustreret" -#: ../cache/locales.php:610 +#: [mood]grateful msgid "grateful" msgstr "taknemlig" -#: ../cache/locales.php:611 +#: [mood]grieving msgid "grieving" msgstr "sørgende" -#: ../cache/locales.php:612 +#: [mood]grumpy msgid "grumpy" msgstr "gnaven" -#: ../cache/locales.php:613 +#: [mood]guilty msgid "guilty" msgstr "skyldig" -#: ../cache/locales.php:614 +#: [mood]happy msgid "happy" msgstr "glad" -#: ../cache/locales.php:615 +#: [mood]hopeful msgid "hopeful" msgstr "håbefuld" -#: ../cache/locales.php:616 +#: [mood]hot msgid "hot" msgstr "hot" -#: ../cache/locales.php:617 +#: [mood]humbled msgid "humbled" msgstr "ydmyg" -#: ../cache/locales.php:618 +#: [mood]humiliated msgid "humiliated" msgstr "ydmyget" -#: ../cache/locales.php:619 +#: [mood]hungry msgid "hungry" msgstr "sulten" -#: ../cache/locales.php:620 +#: [mood]hurt msgid "hurt" msgstr "såret" -#: ../cache/locales.php:621 +#: [mood]impressed msgid "impressed" msgstr "imponeret" -#: ../cache/locales.php:622 +#: [mood]in_awe msgid "in awe" msgstr "i ærefrygt" -#: ../cache/locales.php:623 +#: [mood]in_love msgid "in love" msgstr "forelsket" -#: ../cache/locales.php:624 +#: [mood]indignant msgid "indignant" msgstr "indigneret" -#: ../cache/locales.php:625 +#: [mood]interested msgid "interested" msgstr "interreseret" -#: ../cache/locales.php:626 +#: [mood]intoxicated msgid "intoxicated" msgstr "beruset" -#: ../cache/locales.php:627 +#: [mood]invincible msgid "invincible" msgstr "uovervindelig" -#: ../cache/locales.php:628 +#: [mood]jealous msgid "jealous" msgstr "jaloux" -#: ../cache/locales.php:629 +#: [mood]lonely msgid "lonely" msgstr "ensom" -#: ../cache/locales.php:630 +#: [mood]lost msgid "lost" msgstr "fortabt" -#: ../cache/locales.php:631 +#: [mood]lucky msgid "lucky" msgstr "heldig" -#: ../cache/locales.php:632 +#: [mood]mean msgid "mean" msgstr "ondskabfuld" -#: ../cache/locales.php:633 +#: [mood]moody msgid "moody" msgstr "humørsyg" -#: ../cache/locales.php:634 +#: [mood]nervous msgid "nervous" msgstr "nervøs" -#: ../cache/locales.php:635 +#: [mood]neutral msgid "neutral" msgstr "neutral" -#: ../cache/locales.php:636 +#: [mood]offended msgid "offended" msgstr "forarget" -#: ../cache/locales.php:637 +#: [mood]outraged msgid "outraged" msgstr "rasende" -#: ../cache/locales.php:638 +#: [mood]playful msgid "playful" msgstr "legesyg" -#: ../cache/locales.php:639 +#: [mood]proud msgid "proud" msgstr "stolt" -#: ../cache/locales.php:640 +#: [mood]relaxed msgid "relaxed" msgstr "afslappet" -#: ../cache/locales.php:641 +#: [mood]relieved msgid "relieved" msgstr "lettet" -#: ../cache/locales.php:642 -msgid "remorseful" -msgstr "angrende" - -#: ../cache/locales.php:643 +#: [mood]restless msgid "restless" msgstr "rastløs" -#: ../cache/locales.php:644 +#: [mood]sad msgid "sad" msgstr "ked af det" -#: ../cache/locales.php:645 +#: [mood]sarcastic msgid "sarcastic" msgstr "sarkastisk" -#: ../cache/locales.php:646 +#: [mood]satisfied msgid "satisfied" msgstr "tilfredsstillet" -#: ../cache/locales.php:647 +#: [mood]serious msgid "serious" msgstr "seriøs" -#: ../cache/locales.php:648 +#: [mood]shocked msgid "shocked" msgstr "chokeret" -#: ../cache/locales.php:649 +#: [mood]shy msgid "shy" msgstr "genert" -#: ../cache/locales.php:650 +#: [mood]sick msgid "sick" msgstr "syg" -#: ../cache/locales.php:651 +#: [mood]sleepy msgid "sleepy" msgstr "søvnig" -#: ../cache/locales.php:652 +#: [mood]spontaneous msgid "spontaneous" msgstr "spontan" -#: ../cache/locales.php:653 +#: [mood]stressed msgid "stressed" msgstr "stresset" -#: ../cache/locales.php:654 +#: [mood]strong msgid "strong" msgstr "stærk" -#: ../cache/locales.php:655 +#: [mood]surprised msgid "surprised" msgstr "ovverasket" -#: ../cache/locales.php:656 +#: [mood]thankful msgid "thankful" msgstr "taknemlig" -#: ../cache/locales.php:657 +#: [mood]thirsty msgid "thirsty" msgstr "tøstig" -#: ../cache/locales.php:658 +#: [mood]tired msgid "tired" msgstr "træt" -#: ../cache/locales.php:659 +#: [mood]undefined msgid "undefined" msgstr "udefineret" -#: ../cache/locales.php:660 +#: [mood]weak msgid "weak" msgstr "svag" -#: ../cache/locales.php:661 +#: [mood]worried msgid "worried" msgstr "bekymret" -#: ../cache/locales.php:662 +#: [month]title msgid "Month" msgstr "Måned" -#: ../cache/locales.php:663 +#: [month]january msgid "January" msgstr "Januar" -#: ../cache/locales.php:664 +#: [month]february msgid "February" msgstr "Februar" -#: ../cache/locales.php:665 +#: [month]march msgid "March" msgstr "Marts" -#: ../cache/locales.php:666 +#: [month]april msgid "April" msgstr "April" -#: ../cache/locales.php:667 +#: [month]may msgid "May" msgstr "Maj" -#: ../cache/locales.php:668 +#: [month]june msgid "June" msgstr "Juni" -#: ../cache/locales.php:669 +#: [month]july msgid "July" msgstr "Juli" -#: ../cache/locales.php:670 +#: [month]august msgid "August" msgstr "August" -#: ../cache/locales.php:671 +#: [month]september msgid "September" msgstr "September" -#: ../cache/locales.php:672 +#: [month]october msgid "October" msgstr "Oktober" -#: ../cache/locales.php:673 +#: [month]november msgid "November" msgstr "November" -#: ../cache/locales.php:674 +#: [month]december msgid "December" msgstr "December" -#: ../cache/locales.php:675 +#: [year]title msgid "Year" msgstr "År" -#: ../cache/locales.php:676 +#: [date]today msgid "Today" msgstr "Idag" -#: ../cache/locales.php:677 +#: [date]tomorrow msgid "Tomorrow" msgstr "I morgen" -#: ../cache/locales.php:678 +#: [date]yesterday msgid "Yesterday" msgstr "I går" -#: ../cache/locales.php:679 -#, php-format -msgid " %d days ago" +#: [date]ago +#, fuzzy +msgid "%d days ago" msgstr " for %d dage siden" -#: ../cache/locales.php:680 +#: [date]day msgid "day" msgstr "dag" -#: ../cache/locales.php:682 +#: [post]whats_new msgid "What's new ?" msgstr "Hvad er nyt ?" -#: ../cache/locales.php:683 +#: [post]place msgid "Place" msgstr "Sted" -#: ../cache/locales.php:684 +#: [post]by msgid "by" msgstr "af" -#: ../cache/locales.php:685 +#: [post]geolocalisation msgid "Geolocalisation" msgstr "Geolokalisering" -#: ../cache/locales.php:686 +#: [post]email msgid "email" msgstr "e-mail" -#: ../cache/locales.php:688 +#: [post]no_comments msgid "No comments yet" msgstr "Ingen kommentarer endnu" -#: ../cache/locales.php:689 +#: [post]no_comments_stream msgid "No comments stream" msgstr "Innegn kommentarstrøm" -#: ../cache/locales.php:690 +#: [post]no_load msgid "Your feed cannot be loaded." msgstr "Dit feed kan ikken indlæses" -#: ../cache/locales.php:691 +#: [post]older msgid "Get older posts" msgstr "Hent ældre indlæg" -#: ../cache/locales.php:692 -#, php-format +#: [post]new_items msgid "%s new items" msgstr "%s nye indlægeolocalisation" -#: ../cache/locales.php:693 +#: [post]comment_error msgid "Comment publication error" msgstr "Kommentar udgivelsesfejl" -#: ../cache/locales.php:694 +#: [post]comments_older msgid "Show the older comments" msgstr "Vis de ældre kommentarer" -#: ../cache/locales.php:695 -msgid "Loading comments ..." +#: [post]comments_loading +#, fuzzy +msgid "Loading comments..." msgstr "Indlæser kommentarer ..." -#: ../cache/locales.php:696 +#: [post]comments_get msgid "Get the comments" msgstr "Hent kommentarerne" -#: ../cache/locales.php:697 +#: [post]comment_add msgid "Add a comment" msgstr "Tilføj en kommentar" -#: ../cache/locales.php:698 +#: [post]share msgid "Share with" msgstr "Del med" -#: ../cache/locales.php:699 +#: [post]share_everyone msgid "Everyone" msgstr "Alle" -#: ../cache/locales.php:700 +#: [post]share_your_contacts msgid "Your contacts" msgstr "Dine kontakter" -#: ../cache/locales.php:702 +#: [post]updated msgid "Updated" msgstr "Opdateret" -#: ../cache/locales.php:703 +#: [post]content_not_found msgid "Content not found" msgstr "Indhold ikke fundet" -#: ../cache/locales.php:704 +#: [post]default_title msgid "Contact publication" msgstr "Kontakt udgivelse" -#: ../cache/locales.php:705 +#: [post]comments msgid "Comments" msgstr "Kommentarer" -#: ../cache/locales.php:706 +#: [api]error msgid "The API is not reachable, try again later" msgstr "API'en kan ikke nåes, prøv igen senere" -#: ../cache/locales.php:707 +#: [field]type_here msgid "Type here" msgstr "Skriv her" +#~ msgid "Environment" +#~ msgstr "Miljø" + +#~ msgid "You can login with Facebook (chat only) using %syour.id@chat.facebook.com%s and your password" +#~ msgstr "Du kan logge ind med Facebook (kun chat) med %sdin.id@chat.facebook.com%s og dit kodeord" + +#~ msgid "%sGmail accounts are also compatible%s but are not fully supported" +#~ msgstr "%sGmail konti er også kompatible%s men ikke fuldt understøttede" + +#~ msgid "You can login using your favorite Jabber account" +#~ msgstr "Du kan logge ind med din favorit Jabber konto" + +#~ msgid "or with our demonstration account" +#~ msgstr "eller med vores demonstrations konto" + +#~ msgid "%s has been removed from your public groups" +#~ msgstr "%s er blevet fjernet fra dine offentlige grupper" + +#~ msgid "Remove a chatroom" +#~ msgstr "Fjern et chatrum" + +#~ msgid "You are going to remove the following chatroom. Please confirm your action." +#~ msgstr "Du er ved at fjerne følgende chatrum. Bekræft venligst din handling." + +#~ msgid "Remote application incompatible" +#~ msgstr "Programmet i den anden ende er ikke kompatibel" + +#~ msgid "Remove" +#~ msgstr "Fjern" + +#~ msgid "remorseful" +#~ msgstr "angrende" + #~ msgid "PHP version mismatch. Movim requires PHP 5.3 minimum." #~ msgstr "PHP version passer ikke. Movim kræver PHP 5.3 eller højere." -#, php-format #~ msgid "Movim requires the %s extension." #~ msgstr "Movim kræver %s udvidelsen." @@ -2639,23 +2776,17 @@ msgstr "Skriv her" #~ msgid "Movim Installer" #~ msgstr "Movim installeringspakke" -#, php-format #~ msgid "Couldn't create directory '%s'." #~ msgstr "Kunne ikke oprette bibliotek '%s'." -#, php-format #~ msgid "Couldn't create configuration file '%s'." #~ msgstr "Kunne ikke oprette konfigurationfil '%s'." #~ msgid "Compatibility Test" #~ msgstr "Kompabilitetstest" -#~ msgid "" -#~ "The following requirements were not met. Please make sure they are all " -#~ "satisfied in order to install Movim." -#~ msgstr "" -#~ "De følgende krav blev ikke opfyldt. Sikre dig venligst de alle er dækket for " -#~ "at kunne installere Movim." +#~ msgid "The following requirements were not met. Please make sure they are all satisfied in order to install Movim." +#~ msgstr "De følgende krav blev ikke opfyldt. Sikre dig venligst de alle er dækket for at kunne installere Movim." #~ msgid "User not logged in." #~ msgstr "Bruger er ikke logget ind." @@ -2663,15 +2794,12 @@ msgstr "Skriv her" #~ msgid "JID not provided." #~ msgstr "JID ikke givet." -#, php-format #~ msgid "jid '%s' is incorrect" #~ msgstr "jid '%s' er ikke korrekt" -#, php-format #~ msgid "Cannot open log file '%s'" #~ msgstr "Kan ikke åbne log fil '%s'" -#, php-format #~ msgid "%s - Account Creation" #~ msgstr "%s - Konto oprettelse" @@ -2720,7 +2848,6 @@ msgstr "Skriv her" #~ msgid "Success !" #~ msgstr "Fuldført!" -#, php-format #~ msgid "Cannot load element value '%s'" #~ msgstr "Kan ikke indlæse elementværdi '%s'" diff --git a/sources/locales/de.po b/sources/locales/de.po index 38eca96..f89611a 100644 --- a/sources/locales/de.po +++ b/sources/locales/de.po @@ -1,2649 +1,2773 @@ # German translations for Movim Website package. # This file is distributed under the same license as the Movim Website package. # This file was translated from CodingTeam at . +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/About/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Account/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AccountNext/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AdHoc/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AdminDB/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AdminMain/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AdminTest/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Api/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Avatar/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Blog/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Bookmark/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Chat/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Chats/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/ConfigData/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Config/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Contact/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Group/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Groups/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Header/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Hello/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Help/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Init/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Location/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/LoginAnonymous/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Login/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Menu/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/NodeAffiliations/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/NodeSubscriptions/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Notifs/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Post/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Presence/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Publish/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/PubsubSubscriptionConfig/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Rooms/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Roster/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Share/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Statistics/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Subscribe/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Syndication/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Upload/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Vcard4/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/VisioExt/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Visio/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../locales/locales.ini msgid "" msgstr "" "Project-Id-Version: Movim Website\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-06-08 22:06+0200\n" +"POT-Creation-Date: 2015-08-20 15:17+0200\n" "PO-Revision-Date: 2015-06-09 22:18+0000\n" "Last-Translator: Tobias Bannert \n" "Language-Team: \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2015-06-18 21:08+0000\n" "X-Generator: Launchpad (build 17570)\n" -"Language: \n" -#: ../cache/locales.php:2 +#: [about]thanks msgid "Thanks" msgstr "Danke" -#: ../cache/locales.php:3 +#: [about]developers msgid "Developers" msgstr "Entwickler" -#: ../cache/locales.php:4 +#: [about]translators msgid "Translators" msgstr "Übersetzer" -#: ../cache/locales.php:5 +#: [about]software msgid "Software" msgstr "Programm" -#: ../cache/locales.php:6 +#: [about]resources msgid "Resources" msgstr "Ressourcen" -#: ../cache/locales.php:7 ../cache/locales.php:83 ../cache/locales.php:85 +#: [about]api [schema]api [api]title msgid "API" msgstr "API" -#: ../cache/locales.php:8 -msgid "" -"Movim is an XMPP-based communication platform. All the project, except the " -"following software and resources, is under" -msgstr "" -"Movim ist eine XMPP-basierte Kommunikationsplattform. Das gesamte Projekt, " -"ausgenommen der folgenden Anwendung und Ressourcen, sind unter" +#: [about]info +msgid "Movim is an XMPP-based communication platform. All the project, except the following software and resources, is under" +msgstr "Movim ist eine XMPP-basierte Kommunikationsplattform. Das gesamte Projekt, ausgenommen der folgenden Anwendung und Ressourcen, sind unter" -#: ../cache/locales.php:9 +#: [account]title msgid "Account" msgstr "Konto" -#: ../cache/locales.php:10 -msgid "The password has been updated" -msgstr "Das Passwort wurde aktualisiert" +#: [account]password_change_title +#, fuzzy +msgid "Change my password" +msgstr "Falsches Passwort" -#: ../cache/locales.php:11 -msgid "Please provide a valid password (6 characters minimum)" -msgstr "Das Passwort muss mindestens 6 Zeichen beinhalten" - -#: ../cache/locales.php:12 -msgid "The provided passwords are not the same" -msgstr "Die eingegebenen Passwörter stimmen nicht überein" - -#: ../cache/locales.php:13 -msgid "Delete my account" -msgstr "Mein Konto löschen" - -#: ../cache/locales.php:14 -msgid "" -"You will delete your XMPP account and all the relative information linked to " -"it (profile, contacts and publications)." -msgstr "" -"Sie werden Ihr XMPP-Konto und alle Informationen welche damit verbunden sind " -"löschen (Profil, Kontakte und Veröffentlichungen)." - -#: ../cache/locales.php:15 -msgid "Are you sure that you want to delete it ?" -msgstr "Soll es wirklich gelöscht werden?" - -#: ../cache/locales.php:16 ../cache/locales.php:411 -msgid "Create a new account" -msgstr "Neues Konto erstellen" - -#: ../cache/locales.php:17 -msgid "No account creation form found on the server" -msgstr "Keine Kontoerstellungseingabemaske auf dem Server gefunden" - -#: ../cache/locales.php:18 ../cache/locales.php:172 -msgid "on" -msgstr "an" - -#: ../cache/locales.php:19 -msgid "Your acccount has been successfully registered" -msgstr "Ihr Konto wurde erfolgreich eingerichtet" - -#: ../cache/locales.php:20 -msgid "Loading" -msgstr "Wird geladen" - -#: ../cache/locales.php:21 -msgid "Not Acceptable" -msgstr "Nicht zulässig" - -#: ../cache/locales.php:22 -msgid "The registration system of this server is currently unavailable" -msgstr "" -"Das Registrierungssystem dieses Servers ist vorübergend nicht erreichbar." - -#: ../cache/locales.php:23 -msgid "" -"This server use an external system for the registration, please click on the " -"following URL." -msgstr "" -"Dieser Server benutzt ein externes Registrierungssystem. Bitte auf die " -"folgende Adresse klicken." - -#: ../cache/locales.php:24 -msgid "Actions" -msgstr "Aktionen" - -#: ../cache/locales.php:25 ../cache/locales.php:82 -msgid "Database" -msgstr "Datenbank" - -#: ../cache/locales.php:26 -msgid "Modl wasn't able to connect to the database" -msgstr "Modl konnte sich nicht mit der Datenbank verbinden" - -#: ../cache/locales.php:27 -msgid "Movim is connected to the database" -msgstr "Movim ist mit der Datenbank verbunden" - -#: ../cache/locales.php:28 -msgid "The database need to be updated" -msgstr "Die Datenbank muss aktualisiert werden" - -#: ../cache/locales.php:29 -msgid "Movim database is up to date" -msgstr "Movim-Datenbank ist aktuell" - -#: ../cache/locales.php:30 -msgid "Database Type" -msgstr "Datenbanktyp" - -#: ../cache/locales.php:31 ../cache/locales.php:50 ../cache/locales.php:540 -msgid "Username" -msgstr "Benutzername" - -#: ../cache/locales.php:32 ../cache/locales.php:51 ../cache/locales.php:282 -#: ../cache/locales.php:541 +#: [account]password [db]password [credentials]password [form]password +#: [input]password msgid "Password" msgstr "Passwort" -#: ../cache/locales.php:33 +#: [account]password_confirmation +#, fuzzy +msgid "Password confirmation" +msgstr "%s – Einstellungen" + +#: [account]password_changed +msgid "The password has been updated" +msgstr "Das Passwort wurde aktualisiert" + +#: [account]password_not_valid +msgid "Please provide a valid password (6 characters minimum)" +msgstr "Das Passwort muss mindestens 6 Zeichen beinhalten" + +#: [account]password_not_same +msgid "The provided passwords are not the same" +msgstr "Die eingegebenen Passwörter stimmen nicht überein" + +#: [account]delete_title +msgid "Delete my account" +msgstr "Mein Konto löschen" + +#: [account]delete +#, fuzzy +msgid "Delete your account" +msgstr "Mein Konto löschen" + +#: [account]delete_text +msgid "You will delete your XMPP account and all the relative information linked to it (profile, contacts and publications)." +msgstr "Sie werden Ihr XMPP-Konto und alle Informationen welche damit verbunden sind löschen (Profil, Kontakte und Veröffentlichungen)." + +#: [account]delete_text_confirm +msgid "Are you sure that you want to delete it ?" +msgstr "Soll es wirklich gelöscht werden?" + +#: [account]gateway_title +msgid "Gateway" +msgstr "" + +#: [create]title [subscribe]title +msgid "Create a new account" +msgstr "Neues Konto erstellen" + +#: [create]notfound +msgid "No account creation form found on the server" +msgstr "Keine Kontoerstellungseingabemaske auf dem Server gefunden" + +#: [create]server_on +msgid "on" +msgstr "an" + +#: [create]successfull +msgid "Your acccount has been successfully registered" +msgstr "Ihr Konto wurde erfolgreich eingerichtet" + +#: [create]loading +msgid "Loading" +msgstr "Wird geladen" + +#: [error]not_acceptable +msgid "Not Acceptable" +msgstr "Nicht zulässig" + +#: [error]service_unavailable +msgid "The registration system of this server is currently unavailable" +msgstr "Das Registrierungssystem dieses Servers ist vorübergend nicht erreichbar." + +#: [oob]about +msgid "This server use an external system for the registration, please click on the following URL." +msgstr "Dieser Server benutzt ein externes Registrierungssystem. Bitte auf die folgende Adresse klicken." + +#: [adhoc]title +msgid "Actions" +msgstr "Aktionen" + +#: [db]legend [schema]database +msgid "Database" +msgstr "Datenbank" + +#: [db]connect_error +msgid "Modl wasn't able to connect to the database" +msgstr "Modl konnte sich nicht mit der Datenbank verbinden" + +#: [db]connect_success +msgid "Movim is connected to the database" +msgstr "Movim ist mit der Datenbank verbunden" + +#: [db]update +msgid "The database need to be updated" +msgstr "Die Datenbank muss aktualisiert werden" + +#: [db]up_to_date +msgid "Movim database is up to date" +msgstr "Movim-Datenbank ist aktuell" + +#: [db]type +msgid "Database Type" +msgstr "Datenbanktyp" + +#: [db]username [credentials]username [input]username +msgid "Username" +msgstr "Benutzername" + +#: [db]host msgid "Host" msgstr "Rechner (Host)" -#: ../cache/locales.php:34 +#: [db]port msgid "Port" msgstr "Anschluss (Port)" -#: ../cache/locales.php:35 -msgid "Database Name" +#: [db]name +#, fuzzy +msgid "Database sName" msgstr "Datenbankname" -#: ../cache/locales.php:36 +#: [admin]general msgid "General Settings" msgstr "Grundeinstellungen" -#: ../cache/locales.php:37 +#: [general]theme msgid "Theme" msgstr "Thema" -#: ../cache/locales.php:38 +#: [general]language msgid "Default language" msgstr "Vorgabesprache" -#: ../cache/locales.php:39 -msgid "Environment" -msgstr "Umgebung" - -#: ../cache/locales.php:40 +#: [general]log_verbosity msgid "Log verbosity" msgstr "Protokollstufe" -#: ../cache/locales.php:41 +#: [general]timezone msgid "Server Timezone" msgstr "Server-Zeitzone" -#: ../cache/locales.php:42 +#: [general]limit msgid "User folder size limit (in bytes)" msgstr "Speicherlimit des Nutzerverzeichnis (in Bytes)" -#: ../cache/locales.php:43 +#: [websocket]title msgid "WebSocket Configuration" msgstr "WebSocket-Konfiguration" -#: ../cache/locales.php:44 +#: [websocket]info msgid "Enter here a valid WebSocket URI in the form" msgstr "Bitte in das Feld eine gültige WebSocket-Adresse eingeben" -#: ../cache/locales.php:45 +#: [websocket]label msgid "WebSocket URI" msgstr "WebSocket-Adresse" -#: ../cache/locales.php:46 -msgid "" -"If you change the URI, please restart the daemon to reload the configuration" -msgstr "" -"Nach dem Ändern der Adresse bitte den Dienst neu starten, um die " -"Konfiguration neu zu laden." +#: [websocket]save_info +msgid "If you change the URI, please restart the daemon to reload the configuration" +msgstr "Nach dem Ändern der Adresse bitte den Dienst neu starten, um die Konfiguration neu zu laden." -#: ../cache/locales.php:47 +#: [websocket]publics msgid "Public WebSockets" msgstr "Öffentliche WebSockets" -#: ../cache/locales.php:48 +#: [credentials]title msgid "Administration Credential" msgstr "Systemverwaltungsberechtigung" -#: ../cache/locales.php:49 +#: [credentials]info msgid "Change the default credentials admin/password" msgstr "Vorgegebene Systemverwaltungsberechtigung/-passwort ändern" -#: ../cache/locales.php:52 +#: [credentials]re_password msgid "Retype password" msgstr "Passwort erneut eingeben" -#: ../cache/locales.php:53 +#: [whitelist]title msgid "Whitelist - XMPP Server" msgstr "Liste der erlaubten XMPP-Server" -#: ../cache/locales.php:54 -msgid "" -"If you want to specify a list of authorized XMPP servers on your Movim pod " -"and forbid the connection on all the others please put their domain name " -"here, with comma (ex: movim.eu,jabber.fr)" -msgstr "" -"Wenn Sie eine Liste von legitimierten XMPP-Servern für diesen Movim-Pod " -"festzulegen und alle sonstigen Verbindungen verbieten wollen, dann bitte " -"hier die Domänennamen durch Kommata getrennt eintragen. (z.B.: movim.eu, " -"jabber.fr)" +#: [whitelist]info1 +msgid "If you want to specify a list of authorized XMPP servers on your Movim pod and forbid the connection on all the others please put their domain name here, with comma (ex: movim.eu,jabber.fr)" +msgstr "Wenn Sie eine Liste von legitimierten XMPP-Servern für diesen Movim-Pod festzulegen und alle sonstigen Verbindungen verbieten wollen, dann bitte hier die Domänennamen durch Kommata getrennt eintragen. (z.B.: movim.eu, jabber.fr)" -#: ../cache/locales.php:55 -msgid "" -"Leave this field blank if you allow the access to all the XMPP accounts." -msgstr "" -"Dieses Feld leer lassen, um den Zugriff auf alle XMPP-Konten zu erlauben." +#: [whitelist]info2 +msgid "Leave this field blank if you allow the access to all the XMPP accounts." +msgstr "Dieses Feld leer lassen, um den Zugriff auf alle XMPP-Konten zu erlauben." -#: ../cache/locales.php:56 +#: [whitelist]label msgid "List of whitelisted XMPP servers" msgstr "Liste der erlaubten XMPP-Server" -#: ../cache/locales.php:57 ../cache/locales.php:61 +#: [information]title +#, fuzzy +msgctxt "[information]title" msgid "Information Message" msgstr "Informationsmeldung" -#: ../cache/locales.php:58 +#: [information]description msgid "Description" msgstr "Beschreibung" -#: ../cache/locales.php:59 +#: [information]info1 msgid "This message will be displayed on the login page" msgstr "Diese Nachricht wird auf der Anmeldeseite angezeigt" -#: ../cache/locales.php:60 -msgid "Leave this field blank if you don't want to show any message." +#: [information]info2 +#, fuzzy +msgid "Leave this field blank if you dont want to show any message." msgstr "Dieses Feld leer lassen, wenn keine Nachricht angezeigt werden soll." -#: ../cache/locales.php:62 +#: [information]label +#, fuzzy +msgctxt "[information]label" +msgid "Information Message" +msgstr "Informationsmeldung" + +#: [log]empty msgid "Empty" msgstr "Leer" -#: ../cache/locales.php:63 +#: [log]syslog msgid "Syslog" msgstr "Systemprotokoll" -#: ../cache/locales.php:64 +#: [log]syslog_files msgid "Syslog and files" msgstr "Systemprotokoll und Dateien" -#: ../cache/locales.php:65 +#: [rewrite]title msgid "URL Rewriting" msgstr "Adressumschreiben" -#: ../cache/locales.php:66 +#: [rewrite]info msgid "The URL Rewriting can be enabled" msgstr "Adressumschreiben kann aktiviert werden" -#: ../cache/locales.php:67 +#: [admin]compatibility msgid "General Overview" msgstr "Allgemeiner Überblick" -#: ../cache/locales.php:68 -msgid "" -"Movim has found some issues or things that need to be fixed or improved" -msgstr "" -"Movim hat Probleme oder Dinge gefunden, die repariert oder verbessert werden " -"müssen." +#: [compatibility]info +msgid "Movim has found some issues or things that need to be fixed or improved" +msgstr "Movim hat Probleme oder Dinge gefunden, die repariert oder verbessert werden müssen." -#: ../cache/locales.php:69 -#, php-format +#: [compatibility]php1 msgid "Update your PHP-Version: %s" msgstr "Bitte Ihre PHP-Version aktualisieren: %s" -#: ../cache/locales.php:70 +#: [compatibility]php2 msgid "Required: 5.3.0" msgstr "Benötigt: 5.3.0" -#: ../cache/locales.php:71 +#: [compatibility]curl msgid "Install the php5-curl library" msgstr "Die php5-curl-Bibliothek installieren" -#: ../cache/locales.php:72 +#: [compatibility]imagick msgid "Install the php5-imagick library" msgstr "Die php5-imagick-Bibliothek installieren" -#: ../cache/locales.php:73 +#: [compatibility]gd msgid "Install the php5-gd library" msgstr "Die php5-gd-Bibliothek installieren" -#: ../cache/locales.php:74 -msgid "Read and write rights for the webserver in Movim's root directory" -msgstr "" -"Lese- und Schreibrechte für den Webserver im Wurzelverzeichnis von Movim" +#: [compatibility]rights +#, fuzzy +msgid "Read and write rights for the webserver in Movims root directory" +msgstr "Lese- und Schreibrechte für den Webserver im Wurzelverzeichnis von Movim" -#: ../cache/locales.php:75 +#: [compatibility]rewrite msgid "The URL Rewriting support is currently disabled" msgstr "Das Adressumschreiben ist derzeit deaktiviert" -#: ../cache/locales.php:76 +#: [compatibility]db msgid "The database need to be updated, go to the database panel to fix this" -msgstr "" -"Die Datenbank muss aktualisiert werden. Bitte zur Datenbankverwaltung gehen, " -"um das zu reparieren." +msgstr "Die Datenbank muss aktualisiert werden. Bitte zur Datenbankverwaltung gehen, um das zu reparieren." -#: ../cache/locales.php:77 -msgid "" -"WebSocket connection error, check if the Movim Daemon is running and is " -"reacheable" +#: [compatibility]websocket +msgid "WebSocket connection error, check if the Movim Daemon is running and is reachable" msgstr "" -#: ../cache/locales.php:78 -msgid "" -"XMPP Websocket connection error, please check the validity of the URL given " -"in the General Configuration" +#: [compatibility]xmpp_websocket +msgid "XMPP Websocket connection error, please check the validity of the URL given in the General Configuration" msgstr "" -#: ../cache/locales.php:79 +#: [schema]browser msgid "Browser" msgstr "Browser" -#: ../cache/locales.php:80 +#: [schema]movim msgid "Movim Core" msgstr "Movim-Kern" -#: ../cache/locales.php:81 +#: [schema]daemon msgid "Movim Daemon" msgstr "Movim-Dienst" -#: ../cache/locales.php:84 +#: [schema]xmpp msgid "XMPP" msgstr "XMPP" -#: ../cache/locales.php:86 -#, php-format -msgid "" -"Here you can register your pod on the official %sMovim API%s and be listed " -"on %sthe pods page%s." -msgstr "" -"Hier können Sie Ihren eigenen Pod bei der offiziellen %sMovim-API%s " -"registrieren und auf der %sPod-Seite%s gelistet werden." +#: [api]info +msgid "Here you can register your pod on the official %sMovim API%s and be listed on %sthe pods page%s." +msgstr "Hier können Sie Ihren eigenen Pod bei der offiziellen %sMovim-API%s registrieren und auf der %sPod-Seite%s gelistet werden." -#: ../cache/locales.php:87 +#: [api]register msgid "Your pod is not registered on the API" msgstr "Ihr Pod ist nicht bei der offiziellen API registriert" -#: ../cache/locales.php:88 +#: [api]registered msgid "Your pod is registered on the API" msgstr "Ihr Pod ist bei der offiziellen API registriert" -#: ../cache/locales.php:89 +#: [api]wait msgid "Your pod is not yet validated" msgstr "Ihr Pod ist noch nicht bestätigt worden" -#: ../cache/locales.php:90 +#: [api]validated msgid "Your pod is validated" msgstr "Ihr Pod wurde bestätigt" -#: ../cache/locales.php:91 -msgid "" -"You asked to be removed from the API, this request will be processed in a " -"couple of hours" -msgstr "" -"Die Anfrage, Ihren Pod aus der API zu entfernen, wird in den nächsten " -"Stunden ausgeführt" +#: [api]unregister +msgid "You asked to be removed from the API, this request will be processed in a couple of hours" +msgstr "Die Anfrage, Ihren Pod aus der API zu entfernen, wird in den nächsten Stunden ausgeführt" -#: ../cache/locales.php:92 ../cache/locales.php:147 +#: [api]conf_updated [config]updated msgid "Configuration updated" msgstr "Konfiguration aktualisiert" -#: ../cache/locales.php:93 +#: [avatar]file msgid "File" msgstr "Datei" -#: ../cache/locales.php:94 +#: [avatar]use_it msgid "Use it" msgstr "Es benutzen" -#: ../cache/locales.php:95 +#: [avatar]webcam msgid "Webcam" msgstr "Webcam" -#: ../cache/locales.php:96 +#: [avatar]cheese msgid "Cheese !" msgstr "Lächeln!" -#: ../cache/locales.php:97 +#: [avatar]snapshot msgid "Take a webcam snapshot" msgstr "Einen Webcam-Schnappschuss aufnehmen" -#: ../cache/locales.php:98 +#: [avatar]updated msgid "Avatar Updated" msgstr "Benutzerbild aktualisiert" -#: ../cache/locales.php:99 +#: [avatar]not_updated msgid "Avatar Not Updated" msgstr "Benutzerbild nicht aktualisiert" -#: ../cache/locales.php:100 ../cache/locales.php:415 -#, php-format +#: [blog]title [feed]title msgid "%s's feed" msgstr "%ss Datenstrom" -#: ../cache/locales.php:101 +#: [blog]empty msgid "This user has not posted anything right now" msgstr "Dieser Benutzer hat noch nichts veröffentlicht" -#: ../cache/locales.php:102 +#: [title]conferences msgid "Conferences" msgstr "Chaträume" -#: ../cache/locales.php:103 ../cache/locales.php:193 ../cache/locales.php:217 -#: ../cache/locales.php:468 +#: [title]groups [group]empty_title [menu]groups [page]groups msgid "Groups" msgstr "Gruppen" -#: ../cache/locales.php:104 +#: [chatroom]add msgid "Add a new Chat Room" msgstr "Einen neuen Chatraum hinzufügen" -#: ../cache/locales.php:105 ../cache/locales.php:368 +#: [chatroom]id [chatrooms]id msgid "Chat Room ID" msgstr "Chatraum-Kennung" -#: ../cache/locales.php:106 ../cache/locales.php:116 ../cache/locales.php:156 -#: ../cache/locales.php:361 ../cache/locales.php:369 ../cache/locales.php:424 +#: [chatroom]name +#, fuzzy +msgctxt "[chatroom]name" msgid "Name" msgstr "Name" -#: ../cache/locales.php:107 ../cache/locales.php:157 ../cache/locales.php:371 -#: ../cache/locales.php:425 +#: [chatroom]nickname [general]nickname [chatrooms]nickname msgid "Nickname" msgstr "Spitzname" -#: ../cache/locales.php:108 +#: [chatroom]autojoin_label msgid "Do you want do join automaticaly this Chat Room ?" msgstr "Möchten Sie diesem Chatraum automatisch beitreten?" -#: ../cache/locales.php:109 ../cache/locales.php:372 +#: [chatroom]bad_id [chatrooms]bad_id msgid "Bad Chatroom ID" msgstr "Falsche Chatraumkennung" -#: ../cache/locales.php:110 ../cache/locales.php:373 +#: [chatroom]empty_name [chatrooms]empty_name msgid "Empty name" msgstr "Leerer Name" -#: ../cache/locales.php:111 ../cache/locales.php:380 +#: [bookmarks]updated msgid "Bookmarks updated" msgstr "Lesezeichen aktualisiert" -#: ../cache/locales.php:112 -msgid "An error occured : " +#: [bookmarks]error +#, fuzzy +msgid "An error occured :" msgstr "Ein Fehler ist aufgetreten: " -#: ../cache/locales.php:113 +#: [bookmarks]configure msgid "Configure" msgstr "Konfigurieren" -#: ../cache/locales.php:114 +#: [url]add msgid "Add a new URL" msgstr "Neue Adresse hinzufügen" -#: ../cache/locales.php:115 +#: [url]url msgid "URL" msgstr "Adresse" -#: ../cache/locales.php:117 +#: [url]name +#, fuzzy +msgctxt "[url]name" +msgid "Name" +msgstr "Name" + +#: [message]published msgid "Message Published" msgstr "Nachricht veröffentlicht" -#: ../cache/locales.php:118 ../cache/locales.php:138 +#: [message]encrypted msgid "Encrypted message" msgstr "Verschlüsselte Nachricht" -#: ../cache/locales.php:119 +#: [message]composing [chats]composing msgid "Composing..." msgstr "Verfassen …" -#: ../cache/locales.php:120 +#: [message]paused [chats]paused msgid "Paused..." msgstr "Angehalten …" -#: ../cache/locales.php:121 +#: [message]gone msgid "Contact gone" msgstr "Kontakt verschwunden" -#: ../cache/locales.php:122 -#, php-format +#: [chat]attention msgid "%s needs your attention" msgstr "%s braucht Ihre Aufmerksamkeit" -#: ../cache/locales.php:123 +#: [chat]placeholder msgid "Your message here..." msgstr "Hier Ihre Nachricht …" -#: ../cache/locales.php:124 +#: [chat]smileys msgid "Smileys" msgstr "Smileys" -#: ../cache/locales.php:125 ../cache/locales.php:139 +#: [chat]empty_title [button]chat msgid "Chat" msgstr "Sofortnachrichten" -#: ../cache/locales.php:126 +#: [chat]empty_text msgid "Discuss with your contacts" msgstr "Mit Ihren Kontakten diskutieren" -#: ../cache/locales.php:127 -msgid "Members" -msgstr "Mitglieder" - -#: ../cache/locales.php:128 ../cache/locales.php:376 -msgid "Connected to the chatroom" -msgstr "Mit dem Chatraum verbunden" - -#: ../cache/locales.php:129 ../cache/locales.php:377 -msgid "Disconnected from the chatroom" -msgstr "Vom Chatraum getrennt" - -#: ../cache/locales.php:130 ../cache/locales.php:200 ../cache/locales.php:469 -msgid "Configuration" -msgstr "Einstellungen" - -#: ../cache/locales.php:131 -msgid "Configuration saved" -msgstr "Konfiguration gespeichert" - -#: ../cache/locales.php:132 -msgid "Subject" -msgstr "Betreff" - -#: ../cache/locales.php:133 -msgid "Subject changed" -msgstr "Betreff geändert" - -#: ../cache/locales.php:134 -msgid "Open a new conversation by clicking on the plus button bellow" -msgstr "" - -#: ../cache/locales.php:135 -msgid "Chat with a contact" -msgstr "Mit einem Kontakt sprechen" - -#: ../cache/locales.php:136 +#: [chat]frequent [chats]frequent msgid "Frequent contacts" msgstr "Häufige Kontakte" -#: ../cache/locales.php:137 +#: [chatroom]members +msgid "Members" +msgstr "Mitglieder" + +#: [chatroom]connected [chatrooms]connected +msgid "Connected to the chatroom" +msgstr "Mit dem Chatraum verbunden" + +#: [chatroom]disconnected [chatrooms]disconnected +msgid "Disconnected from the chatroom" +msgstr "Vom Chatraum getrennt" + +#: [chatroom]config [group]configuration [page]configuration +msgid "Configuration" +msgstr "Einstellungen" + +#: [chatroom]config_saved +msgid "Configuration saved" +msgstr "Konfiguration gespeichert" + +#: [chatroom]subject +msgid "Subject" +msgstr "Betreff" + +#: [chatroom]subject_changed +msgid "Subject changed" +msgstr "Betreff geändert" + +#: [chats]empty_title +#, fuzzy +msgid "No chats yet..." +msgstr "Noch keine Kommentare" + +#: [chats]empty +msgid "Open a new conversation by clicking on the plus button bellow or visit the Contacts page." +msgstr "" + +#: [chats]add +msgid "Chat with a contact" +msgstr "Mit einem Kontakt sprechen" + +#: [chats]more msgid "Load more contacts" msgstr "Weitere Kontakte laden" -#: ../cache/locales.php:140 -msgid "General" -msgstr "Allgemein" - -#: ../cache/locales.php:141 -msgid "Language" -msgstr "Sprache" - -#: ../cache/locales.php:142 -msgid "Roster display" -msgstr "Kontaktlistenansicht" - -#: ../cache/locales.php:143 -msgid "Show the offline contacts" -msgstr "Abgemeldete Kontakte anzeigen" - -#: ../cache/locales.php:144 -msgid "Hide the offline contacts" -msgstr "Abgemeldete Kontakte ausblenden" - -#: ../cache/locales.php:145 -msgid "Appearence" -msgstr "Erscheinungsbild" - -#: ../cache/locales.php:146 -msgid "This configuration is shared wherever you are connected !" -msgstr "" -"Diese Konfiguration wird geteilt wohin auch immer Sie sich verbinden!" - -#: ../cache/locales.php:148 -msgid "Notify on incoming message" -msgstr "Benachrichtigung über eingehende Nachricht" - -#: ../cache/locales.php:149 -msgid "Use desktop notifications" -msgstr "Schreibtischbenachrichtigung nutzen" - -#: ../cache/locales.php:150 +#: [title]data msgid "Data" msgstr "Daten" -#: ../cache/locales.php:151 +#: [title]cache msgid "Cache" msgstr "Puffer" -#: ../cache/locales.php:152 ../cache/locales.php:218 ../cache/locales.php:466 +#: [title]contacts [menu]contacts [page]contacts msgid "Contacts" msgstr "Kontakte" -#: ../cache/locales.php:153 ../cache/locales.php:480 +#: [title]posts [page]posts msgid "Posts" msgstr "Beiträge" -#: ../cache/locales.php:154 +#: [title]messages msgid "Messages" msgstr "Nachrichten" -#: ../cache/locales.php:155 ../cache/locales.php:423 +#: [config]general +msgid "General" +msgstr "Allgemein" + +#: [config]language +msgid "Language" +msgstr "Sprache" + +#: [config]roster +msgid "Roster display" +msgstr "Kontaktlistenansicht" + +#: [config]roster_show +msgid "Show the offline contacts" +msgstr "Abgemeldete Kontakte anzeigen" + +#: [config]roster_hide +msgid "Hide the offline contacts" +msgstr "Abgemeldete Kontakte ausblenden" + +#: [config]appearence +msgid "Appearence" +msgstr "Erscheinungsbild" + +#: [config]info +#, fuzzy +msgid "This configuration is shared wherever you are connected" +msgstr "Diese Konfiguration wird geteilt wohin auch immer Sie sich verbinden!" + +#: [notifications]message +msgid "Notify on incoming message" +msgstr "Benachrichtigung über eingehende Nachricht" + +#: [notifications]desktop +msgid "Use desktop notifications" +msgstr "Schreibtischbenachrichtigung nutzen" + +#: [general]legend [general]general_title msgid "General Informations" msgstr "Allgemeine Angaben" -#: ../cache/locales.php:158 ../cache/locales.php:427 +#: [general]name [public_groups]name [chatrooms]name +msgid "Name" +msgstr "Name" + +#: [general]date_of_birth msgid "Date of Birth" msgstr "Geburtsdatum" -#: ../cache/locales.php:159 ../cache/locales.php:428 +#: [general]gender msgid "Gender" msgstr "Geschlecht" -#: ../cache/locales.php:160 ../cache/locales.php:429 +#: [general]marital msgid "Marital Status" msgstr "Familienstand" -#: ../cache/locales.php:161 ../cache/locales.php:426 +#: [general]email msgid "Email" msgstr "Epost" -#: ../cache/locales.php:162 ../cache/locales.php:430 +#: [general]website msgid "Website" msgstr "Internetseite" -#: ../cache/locales.php:163 ../cache/locales.php:431 +#: [general]about msgid "About Me" msgstr "Persönliche Angaben" -#: ../cache/locales.php:164 +#: [general]accounts msgid "Other Accounts" msgstr "Weitere Konten" -#: ../cache/locales.php:165 +#: [general]tune msgid "Is Listening" msgstr "hört" -#: ../cache/locales.php:166 ../cache/locales.php:432 +#: [position]legend [position]position_title msgid "Geographic Position" msgstr "Standort" -#: ../cache/locales.php:167 ../cache/locales.php:433 +#: [position]locality msgid "Locality" msgstr "Ort" -#: ../cache/locales.php:168 ../cache/locales.php:434 +#: [position]country msgid "Country" msgstr "Land" -#: ../cache/locales.php:169 +#: [mood]title msgid "Mood" msgstr "Stimmung" -#: ../cache/locales.php:170 +#: [mood]im msgid "I'm " msgstr "Ich bin " -#: ../cache/locales.php:171 +#: [listen]title msgid "Listening" msgstr "Hört zu" -#: ../cache/locales.php:173 +#: [last]title msgid "Last seen" msgstr "Zuletzt gesehen" -#: ../cache/locales.php:174 +#: [client]title msgid "Client Informations" msgstr "Programminformationen" -#: ../cache/locales.php:175 +#: [explore]last_registered msgid "Last registered" msgstr "Zuletzt angemeldet" -#: ../cache/locales.php:176 +#: [explore]explore msgid "Find some new friends" msgstr "Neu Freunde finden" -#: ../cache/locales.php:177 ../cache/locales.php:533 +#: [edit]title [button]edit msgid "Edit" msgstr "Bearbeiten" -#: ../cache/locales.php:178 +#: [edit]alias msgid "Alias" msgstr "Pseudonym" -#: ../cache/locales.php:179 +#: [edit]group msgid "Group" msgstr "Gruppe" -#: ../cache/locales.php:180 ../cache/locales.php:400 +#: [edit]updated [roster]updated msgid "Contact updated" msgstr "Kontakt aktualisiert" -#: ../cache/locales.php:181 +#: [delete]title msgid "Are you sure?" msgstr "Sind Sie sicher?" -#: ../cache/locales.php:182 -msgid "" -"You are going to delete one of your contacts, please confirm your action" -msgstr "" -"Sie sind dabei einen Ihrer Kontakte zu löschen, bitte bestätigen Sie Ihre " -"Handlung" +#: [delete]text +msgid "You are going to delete one of your contacts, please confirm your action" +msgstr "Sie sind dabei einen Ihrer Kontakte zu löschen, bitte bestätigen Sie Ihre Handlung" -#: ../cache/locales.php:183 -#, php-format +#: [age]years msgid "%s years" msgstr "%s Jahre" -#: ../cache/locales.php:184 +#: [blog]last msgid "Last public post" msgstr "Letzer öffentlicher Beitrag" -#: ../cache/locales.php:185 +#: [subscription]to +#, fuzzy +msgid "You can see this contact status" +msgstr "Kein öffentlicher Datenstrom für diesen Kontakt" + +#: [subscription]to_button +msgid "Share my status" +msgstr "" + +#: [subscription]to_text +msgid "But this contact cannot see yours" +msgstr "" + +#: [subscription]from +#, fuzzy +msgid "You are not subscribed to this contact" +msgstr "Sie sind dabei sich von dieser Gruppe abzumelden" + +#: [subscription]from_button +#, fuzzy +msgid "Ask to subscribe" +msgstr "%s Abonnenten" + +#: [subscription]from_text +msgid "But this contact can still see if you are online" +msgstr "" + +#: [subscription]nil +#, fuzzy +msgid "No subscriptions" +msgstr "Anmeldungen" + +#: [subscription]nil_button +msgid "Invite" +msgstr "" + +#: [subscription]nil_text +msgid "This contact is in your contact list but there is no subscriptions between the two accounts" +msgstr "" + +#: [group]subscribe msgid "Subscribe" msgstr "Abonnieren" -#: ../cache/locales.php:186 +#: [group]subscribed msgid "Subscribed" msgstr "Abonniert" -#: ../cache/locales.php:187 +#: [group]unsubscribe msgid "Unsubscribe" msgstr "Abbestellen" -#: ../cache/locales.php:188 +#: [group]unsubscribe_text msgid "You are going to unsubscribe from this Group" msgstr "Sie sind dabei sich von dieser Gruppe abzumelden" -#: ../cache/locales.php:189 +#: [group]unsubscribed msgid "Unsubscribed" msgstr "Abgemeldet" -#: ../cache/locales.php:190 +#: [group]share_label msgid "Make your membership to this group public to your friends" -msgstr "" -"Machen Sie die Mitgliedschaft zu dieser Gruppe für Ihre Freunde öffentlich" +msgstr "Machen Sie die Mitgliedschaft zu dieser Gruppe für Ihre Freunde öffentlich" -#: ../cache/locales.php:191 +#: [group]label_label msgid "Give a label for this group" msgstr "Der Gruppe eine Bezeichnung geben" -#: ../cache/locales.php:192 +#: [group]sure msgid "Are you sure ?" msgstr "Sind Sie sicher?" -#: ../cache/locales.php:194 +#: [group]empty_text msgid "Discover, follow and share" msgstr "Entdecken, folgen und teilen" -#: ../cache/locales.php:195 +#: [group]empty msgid "Something bad happened to this group" msgstr "" -#: ../cache/locales.php:196 +#: [group]config_saved msgid "Group configuration saved" msgstr "Gruppeneinstellung gespeichert" -#: ../cache/locales.php:197 +#: [group]delete_title msgid "Delete the group" msgstr "Die Gruppe löschen" -#: ../cache/locales.php:198 -msgid "" -"You are going to delete the following group. Please confirm your action." -msgstr "" -"Sie sind dabei die folgende Gruppe zu löschen. Bitte bestätigen Sie die " -"Aktion." +#: [group]delete_text +msgid "You are going to delete the following group. Please confirm your action." +msgstr "Sie sind dabei die folgende Gruppe zu löschen. Bitte bestätigen Sie die Aktion." -#: ../cache/locales.php:199 -msgid "" -"It seems that this group doesn't exists anymore. Do you want to remove it " -"from your subscriptions?" +#: [group]delete_clean_text +msgid "It seems that this group doesn't exists anymore. Do you want to remove it from your subscriptions?" msgstr "" -#: ../cache/locales.php:201 ../cache/locales.php:408 +#: [group]counter +msgid "%s groups on this server" +msgstr "" + +#: [group]subscriptions [statistics]subscriptions msgid "Subscriptions" msgstr "Anmeldungen" -#: ../cache/locales.php:202 ../cache/locales.php:290 +#: [group]servers +#, fuzzy +msgid "Groups servers" +msgstr "Gruppen" + +#: [group]search_server +msgid "Search for a new server" +msgstr "" + +#: [group]help_info1 +msgid "Groups are the perfect way to share posts about topics that you like with all the other Movim's users." +msgstr "" + +#: [group]help_info2 +msgid "Choose a server and a Group and subscribe to it using the %s button in the header. You can also create a new one using the %s button." +msgstr "" + +#: [group]help_info3 +msgid "Done? You can now publish a new post in the Group by using the %s button." +msgstr "" + +#: [group]help_info4 +msgid "You will find a list of all your subscribed Groups in My Subscriptions and receive instantly all the new incoming posts in the %sNews%s page." +msgstr "" + +#: [groups]empty_title msgid "Hello" msgstr "Hallo" -#: ../cache/locales.php:203 ../cache/locales.php:225 ../cache/locales.php:291 +#: [groups]contact_post [hello]contact_post [menu]contact_post msgid "Contact post" msgstr "Kontaktnachricht" -#: ../cache/locales.php:204 -msgid "" -"You don't have any subscriptions yet, select a group server above to start " -"exploring." +#: [groups]empty_text1 +msgid "You don't have any subscriptions yet, select a group server above to start exploring." msgstr "" -#: ../cache/locales.php:205 +#: [groups]empty_text2 msgid "Subscribe to your favorite feeds by bookmarking them." -msgstr "" -"Ihren Liblingsdatenstrom abonnieren, durch Hinzufügen als Lesezeichen." +msgstr "Ihren Liblingsdatenstrom abonnieren, durch Hinzufügen als Lesezeichen." -#: ../cache/locales.php:206 +#: [groups]subscriptions msgid "My Subscriptions" msgstr "Meine Abonnements" -#: ../cache/locales.php:207 +#: [groups]add msgid "Create a new Group" msgstr "Eine neue Gruppe erstellen" -#: ../cache/locales.php:208 +#: [groups]name msgid "Group name" msgstr "Gruppenname" -#: ../cache/locales.php:209 +#: [groups]name_example msgid "My Little Pony - Fan Club" msgstr "My Little Pony - Fanclub" -#: ../cache/locales.php:210 +#: [groups]created msgid "Group created successfully" msgstr "Grupper erfolgreich erstellt" -#: ../cache/locales.php:211 +#: [groups]deleted msgid "Group deleted successfully" msgstr "Gruppe erfolgreich gelöscht" -#: ../cache/locales.php:212 +#: [groups]name_error msgid "Please provide a valid group name (4 characters minimum)" msgstr "" -#: ../cache/locales.php:213 +#: [groups]no_creation msgid "You cannot create a new Group on this server" msgstr "Sie können keine neue Gruppe auf diesem Server erstellen" -#: ../cache/locales.php:214 -#, php-format +#: [groups]sub msgid "%s subscribers" msgstr "%s Abonnenten" -#: ../cache/locales.php:215 -#, php-format +#: [groups]num msgid "%s posts" msgstr "%s Beiträge" -#: ../cache/locales.php:216 +#: [groups]disco_error +#, fuzzy +msgid "This server doesn't exists" +msgstr "Dieser Server beherbergt %s Konten" + +#: [menu]all msgid "All" msgstr "Alle" -#: ../cache/locales.php:219 +#: [menu]refresh msgid "Refresh all the streams" msgstr "Alle Daten auffrischen" -#: ../cache/locales.php:220 ../cache/locales.php:402 -msgid "Search" -msgstr "Suchen" +#: [roster]search +#, fuzzy +msgid "Search in your contacts" +msgstr "Mit Ihren Kontakten diskutieren" -#: ../cache/locales.php:221 +#: [hello]active_contacts +#, fuzzy +msgid "Active contacts" +msgstr "Ihre Kontakte" + +#: [hello]chat msgid "Go on the Chat page" msgstr "Den Chat öffnen" -#: ../cache/locales.php:222 -msgid "Read all theses articles on the News page" -msgstr "Alle diese Artikel auf der Nachrichtenseite lesen" - -#: ../cache/locales.php:223 -msgid "Visit your public blog" -msgstr "Ihren öffentlichen Blog besuchen" - -#: ../cache/locales.php:224 -msgid "See your public posts and share them with all your contacts" -msgstr "" -"Ihre öffentlichen Beiträge ansehen und diese allen Ihren Kontakten freigeben" - -#: ../cache/locales.php:226 -msgid "Universal share button" -msgstr "Universeller Freigabeknopf" - -#: ../cache/locales.php:227 -msgid "" -"Bookmark or drag and drop the following button in your toolbar and use it on " -"all the pages you want to share on Movim" -msgstr "" - -#: ../cache/locales.php:228 -msgid "Share on Movim" -msgstr "Auf Movim teilen" - -#: ../cache/locales.php:229 -msgid "Frequently Asked Questions" -msgstr "Häufig gestellte Fragen" - -#: ../cache/locales.php:230 -msgid "What do the little banners refer to ?" -msgstr "Was bedeuten die kleinen Fahnen?" - -#: ../cache/locales.php:231 -msgid "" -"Thanks to these five little banners, you can quickly identitfy the level of " -"confdentiality applied to the information you provide." -msgstr "" -"Danke dieser fünf kleinen Fahnen, können Sie schnell die " -"Vertraulichkeitsstufe Ihrer Information erkennen." - -#: ../cache/locales.php:232 -msgid "White, only you can see the information" -msgstr "Weiß, nur Sie können die Information sehen" - -#: ../cache/locales.php:233 -msgid "Green, you have chosen some contacts who can see your information" -msgstr "" -"Grün, Sie haben einige Kontakte gewählt, die Ihre Information sehen können" - -#: ../cache/locales.php:234 -msgid "Orange, all your contact list can see your information" -msgstr "Orange, Ihre vollständige Kontaktliste kann Ihre Information sehen" - -#: ../cache/locales.php:235 -msgid "Red, everybody in the XMPP network can see your information" -msgstr "Rot, jeder im XMPP-Netzwerk kann Ihre Information sehen" - -#: ../cache/locales.php:236 -msgid "Black, the whole Internet can see your information" -msgstr "Schwarz, das vollständige Internet kann Ihre Information sehen" - -#: ../cache/locales.php:237 -msgid "Looking for some documentation ?" -msgstr "Suchen Sie nach einer Dokumentation?" - -#: ../cache/locales.php:238 -msgid "Read the Wiki" -msgstr "Das Wiki lesen" - -#: ../cache/locales.php:239 -msgid "Talk with us by email ?" -msgstr "Mit uns per E-Mail sprechen?" - -#: ../cache/locales.php:240 -msgid "Join the Mailing List" -msgstr "Der Verteilerliste beitreten" - -#: ../cache/locales.php:241 -msgid "Chat with the team ?" -msgstr "Mit dem Team sprechen?" - -#: ../cache/locales.php:242 -msgid "Join the Chatroom" -msgstr "Den Chatraum betreten" - -#: ../cache/locales.php:243 -msgid "Location node created" -msgstr "Ortsknoten erstellt" - -#: ../cache/locales.php:244 -msgid "Bookmark node created" -msgstr "Lesezeichenknoten erstellt" - -#: ../cache/locales.php:245 -msgid "Profile node created" -msgstr "Profilknoten erstellt" - -#: ../cache/locales.php:246 -msgid "Avatar node created" -msgstr "Avatarknoten erstellt" - -#: ../cache/locales.php:247 -msgid "Subscriptions node created" -msgstr "Abonnementknoten erstellt" - -#: ../cache/locales.php:248 -msgid "Microblog node created" -msgstr "Microblogknoten ersellt" - -#: ../cache/locales.php:249 -msgid "Location" -msgstr "Standort" - -#: ../cache/locales.php:250 -msgid "Wrong position" -msgstr "Falsche Position" - -#: ../cache/locales.php:251 -msgid "Location updated" -msgstr "Standort aktualisiert" - -#: ../cache/locales.php:252 -msgid "Update my position" -msgstr "Meine Position aktualisieren" - -#: ../cache/locales.php:253 -msgid "Wrong username" -msgstr "Falscher Benutzername" - -#: ../cache/locales.php:254 -msgid "Invalid JID" -msgstr "Ungültige Jabber-Kennung" - -#: ../cache/locales.php:255 -msgid "Empty Challenge from the server" -msgstr "Leere Aufforderung vom Server" - -#: ../cache/locales.php:256 -msgid "XMPP Domain error, your account is not a correct Jabber ID" -msgstr "XMPP-Domänenfehler: Ihr Konto ist keine richtige Jabber-Kennung" - -#: ../cache/locales.php:257 -msgid "Some data are missing !" -msgstr "Es fehlen einige Daten!" - -#: ../cache/locales.php:258 -msgid "Wrong password" -msgstr "Falsches Passwort" - -#: ../cache/locales.php:259 -msgid "Internal server error" -msgstr "Interner Server-Fehler" - -#: ../cache/locales.php:260 -msgid "Session error" -msgstr "Sitzungsfehler" - -#: ../cache/locales.php:261 -msgid "Account successfully created" -msgstr "Das Benutzerkonto wurde erfolgreich angelegt." - -#: ../cache/locales.php:262 ../cache/locales.php:271 -msgid "Your XMPP server is unauthorized" -msgstr "Ihr XMPP-Server ist nicht legitimiert" - -#: ../cache/locales.php:263 -msgid "The server takes too much time to respond" -msgstr "Der Server braucht zum Antworten zu lange" - -#: ../cache/locales.php:264 -msgid "Your web browser is too old to use with Movim." -msgstr "Ihr Browser ist zu alt für Movim." - -#: ../cache/locales.php:265 -msgid "" -"Movim cannot talk with the server, please try again later (Websocket " -"connection error)" -msgstr "" -"Movim kann den Server nicht erreichen, bitte versuchen Sie es später nochmal " -"(Websocket-Verbindungsfehler)" - -#: ../cache/locales.php:266 -msgid "Impossible login" -msgstr "Anmeldung nicht möglich" - -#: ../cache/locales.php:267 -msgid "Oops!" -msgstr "Huch!" - -#: ../cache/locales.php:268 ../cache/locales.php:449 ../cache/locales.php:455 -msgid "Unknown error" -msgstr "Unbekannter Fehler" - -#: ../cache/locales.php:269 -msgid "Invalid username format" -msgstr "Ungültiges Benutzernamenformat" - -#: ../cache/locales.php:270 -msgid "Invalid password format" -msgstr "Ungültiges Passwortformat" - -#: ../cache/locales.php:272 -msgid "A Movim session is already open on an other device" -msgstr "" - -#: ../cache/locales.php:273 -msgid "Movim failed to authenticate. You entered wrong data" -msgstr "" -"Movim konnte nicht legitimiert werden. Sie haben falsche Daten eingegeben." - -#: ../cache/locales.php:274 -msgid "Authentication mechanism not supported by Movim" -msgstr "Legitimierungsmechanismus wird von Movim nicht unterstützt" - -#: ../cache/locales.php:275 -msgid "The XMPP authentification failed" -msgstr "XMPP-Legitimierung ist fehlgeschlagen" - -#: ../cache/locales.php:276 -#, php-format -msgid "" -"You can login with Facebook (chat only) using %syour.id@chat.facebook.com%s " -"and your password" -msgstr "" -"Sie können Sich mit Facebook (nur Kurznachrichten) anmelden mit " -"%sihre.identifikation@chat.facebook.com%s und Ihrem Passwort." - -#: ../cache/locales.php:277 -#, php-format -msgid "%sGmail accounts are also compatible%s but are not fully supported" -msgstr "" -"%sGooglemail-Konten werden auch unterstützt%s aber nicht mit vollem " -"Funktionsumfang" - -#: ../cache/locales.php:278 -msgid "You can login using your favorite Jabber account" -msgstr "Sie können sich mit Ihrem liebsten Jabber-Konto anmelden" - -#: ../cache/locales.php:279 -msgid "or with our demonstration account" -msgstr "oder mit unserem Demonstrationskonto" - -#: ../cache/locales.php:280 ../cache/locales.php:435 -msgid "Accounts" -msgstr "Konten" - -#: ../cache/locales.php:281 -msgid "My address" -msgstr "Adresse" - -#: ../cache/locales.php:283 -msgid "Create one !" -msgstr "Eines erstellen!" - -#: ../cache/locales.php:284 -msgid "No account yet ?" -msgstr "Noch keine Konto?" - -#: ../cache/locales.php:285 -msgid "Another account" -msgstr "Ein anderes Konto" - -#: ../cache/locales.php:286 -msgid "You can login with accounts from theses servers" -msgstr "" - -#: ../cache/locales.php:287 -msgid "Connected" -msgstr "Verbunden" - -#: ../cache/locales.php:288 -msgid "Population" -msgstr "Einwohner" - -#: ../cache/locales.php:289 -msgid "Bad nickname (between 4 and 40 characters)" -msgstr "" - -#: ../cache/locales.php:292 -msgid "" -"Welcome on your news feed, here you will see all the posts published in the " -"groups you have subscribed." -msgstr "" -"Willkommen zu Ihrem Datenstrom, hier können Sie alle Beiträge sehen, welche " -"in Ihren abonnierten Gruppen veröffentlicht wurden." - -#: ../cache/locales.php:293 -msgid "Refreshing all the streams" -msgstr "Alle Daten werden aufgefrischt" - -#: ../cache/locales.php:294 -msgid "This post is public" -msgstr "Dieser Beitrag ist öffentlich" - -#: ../cache/locales.php:295 -msgid "Manage your members" -msgstr "Mitglieder verwalten" - -#: ../cache/locales.php:296 -msgid "Get the members" -msgstr "Mitglieder abfragen" - -#: ../cache/locales.php:297 -msgid "Affiliations saved" -msgstr "Zugehörigkeiten gespeichert" - -#: ../cache/locales.php:298 -msgid "Manage your subscriptions" -msgstr "Ihre Abonnements verwalten" - -#: ../cache/locales.php:299 -msgid "Manage the subscriptions" -msgstr "Die Abonnements verwalten" - -#: ../cache/locales.php:300 -msgid "Get the subscriptions" -msgstr "Abonnements" - -#: ../cache/locales.php:301 -msgid "Subscriptions saved" -msgstr "Abonnement gespeichert" - -#: ../cache/locales.php:302 -msgid "Pending Invitations" -msgstr "Neue Einladungen" - -#: ../cache/locales.php:303 -#, php-format -msgid "%s wants to talk with you" -msgstr "%s möchte mit Ihnen sprechen" - -#: ../cache/locales.php:304 -msgid "Manage" -msgstr "Verwalten" - -#: ../cache/locales.php:305 ../cache/locales.php:338 -msgid "News Feed" -msgstr "Nachrichtendaten" - -#: ../cache/locales.php:306 ../cache/locales.php:339 -msgid "Discover and register to the groups you are interested in" -msgstr "Gruppen, die Sie interessieren, entdecken und dort registrieren" - -#: ../cache/locales.php:307 ../cache/locales.php:340 ../cache/locales.php:482 -msgid "Preview" -msgstr "Vorschau" - -#: ../cache/locales.php:308 ../cache/locales.php:341 ../cache/locales.php:478 -msgid "Help" -msgstr "Hilfe" - -#: ../cache/locales.php:309 ../cache/locales.php:342 -msgid "More help" -msgstr "Weitere Hilfe" - -#: ../cache/locales.php:310 ../cache/locales.php:343 -msgid "Markdown syntax manual" -msgstr "" - -#: ../cache/locales.php:311 ../cache/locales.php:344 ../cache/locales.php:681 -msgid "Title" -msgstr "Titel" - -#: ../cache/locales.php:312 ../cache/locales.php:345 -msgid "Content" -msgstr "Inhalt" - -#: ../cache/locales.php:313 ../cache/locales.php:346 -msgid "Link" -msgstr "Verweis" - -#: ../cache/locales.php:314 ../cache/locales.php:347 -msgid "Tags" -msgstr "Schlagwörter" - -#: ../cache/locales.php:315 ../cache/locales.php:348 -msgid "Please enter a valid url" -msgstr "Bitte eine gültige Adresse eingeben" - -#: ../cache/locales.php:316 ../cache/locales.php:349 -msgid "No content to preview" -msgstr "Kein Inhalt zur Vorschau" - -#: ../cache/locales.php:317 ../cache/locales.php:350 ../cache/locales.php:687 -msgid "No content" -msgstr "Ohne Inhalt" - -#: ../cache/locales.php:318 ../cache/locales.php:351 -msgid "Post published" -msgstr "Beitrag veröffentlicht" - -#: ../cache/locales.php:319 ../cache/locales.php:352 -msgid "Post deleted" -msgstr "Beitrag gelöscht" - -#: ../cache/locales.php:320 ../cache/locales.php:353 -msgid "This picture will be added to your gallery" -msgstr "" - -#: ../cache/locales.php:321 ../cache/locales.php:354 -msgid "What's Hot" -msgstr "Spannendes" - -#: ../cache/locales.php:322 ../cache/locales.php:355 -msgid "New post" -msgstr "Neuer Beitrag" - -#: ../cache/locales.php:323 ../cache/locales.php:357 -msgid "" -"You can also use services like Imgur or Flickr to host your picture and " -"paste the link here." -msgstr "" - -#: ../cache/locales.php:324 -#, php-format -msgid "This is a re-post from %s" -msgstr "" - -#: ../cache/locales.php:325 -#, php-format -msgid "See %s profile" -msgstr "Profil %s ansehen" - -#: ../cache/locales.php:326 -msgid "Publish this post on your public feed?" -msgstr "Diesen Beitrag in Ihrem öffentlichen Datenstrom veröffentlichen?" - -#: ../cache/locales.php:327 -msgid "Post published on your blog" -msgstr "Beitrag in Ihrem Blog veröffentlicht" - -#: ../cache/locales.php:328 -msgid "Post removed from your blog" -msgstr "Beitrag von Ihrem Blog entfernt" - -#: ../cache/locales.php:329 ../cache/locales.php:701 -msgid "Delete this post" -msgstr "Diesen Eintrag löschen" - -#: ../cache/locales.php:330 -msgid "You are going to delete this post, please confirm your action" -msgstr "" - -#: ../cache/locales.php:331 -msgid "Comments disabled" -msgstr "Kommentare deaktiviert" - -#: ../cache/locales.php:332 -msgid "Comment published" -msgstr "Kommentar veröffentlicht" - -#: ../cache/locales.php:333 -msgid "Disconnect" -msgstr "Trennen" - -#: ../cache/locales.php:334 -msgid "Your status here !" -msgstr "Ihr Status hier!" - -#: ../cache/locales.php:335 -msgid "Status updated" -msgstr "Status aktualisiert" - -#: ../cache/locales.php:336 -msgid "Status" -msgstr "Status" - -#: ../cache/locales.php:337 -msgid "Presence" -msgstr "Anwesenend" - -#: ../cache/locales.php:356 -msgid "Publish" -msgstr "Veröffentlichen" - -#: ../cache/locales.php:358 -msgid "You cannot publish a post on this Group" -msgstr "" - -#: ../cache/locales.php:359 -msgid "" -"Some fields have been filled in. Do you still want to go back and loose " -"their content?" -msgstr "" - -#: ../cache/locales.php:360 -msgid "Shared" -msgstr "Geteilt" - -#: ../cache/locales.php:362 -#, php-format -msgid "%s has been added to your public groups" -msgstr "%s wurde zu Ihren öffentlichen Gruppen hinzugefügt" - -#: ../cache/locales.php:363 -#, php-format -msgid "%s has been removed from your public groups" -msgstr "%s wurde aus Ihren öffentlichen Gruppen entfernt" - -#: ../cache/locales.php:364 -msgid "Add a chatroom" -msgstr "Chatraum hinzufügen" - -#: ../cache/locales.php:365 -msgid "You don't have any chatroom yet." -msgstr "Sie sind noch keinem Chatraum beigetreten." - -#: ../cache/locales.php:366 -msgid "Add one by clicking on the add button in the header." -msgstr "" - -#: ../cache/locales.php:367 -msgid "Chatrooms" -msgstr "Chaträume" - -#: ../cache/locales.php:370 -msgid "My Favorite Room" -msgstr "Mein favorisierter Raum" - -#: ../cache/locales.php:374 -msgid "Remove a chatroom" -msgstr "Chatraum löschen" - -#: ../cache/locales.php:375 -msgid "" -"You are going to remove the following chatroom. Please confirm your action." -msgstr "" -"Sie sind dabei den folgenden Chatraum zu löschen. Bitte bestätigen Sie Ihre " -"Handlung." - -#: ../cache/locales.php:378 -msgid "Users in the room" -msgstr "Nutzer im Raum" - -#: ../cache/locales.php:379 -msgid "Please enter a correct nickname (6 to 40 characters)" -msgstr "Bitte einen richtigen Spitznamen eingeben (6 bis 40 Zeichen)" - -#: ../cache/locales.php:381 -msgid "Public chatroom" -msgstr "Öffentlicher Chatraum" - -#: ../cache/locales.php:382 -msgid "Please provide a room address" -msgstr "Bitte eine Raumadresse übermitteln" - -#: ../cache/locales.php:383 -msgid "You are currently logued as an anonymous user." -msgstr "" - -#: ../cache/locales.php:384 -msgid "" -"You can join using your own account or create one on the login page by " -"loging out using the cross in the top-right corner." -msgstr "" - -#: ../cache/locales.php:385 -#, php-format -msgid "Login on %s" -msgstr "Bei %s anmelden" - -#: ../cache/locales.php:386 -msgid "Your nickname" -msgstr "Ihr Spitzname" - -#: ../cache/locales.php:387 -msgid "Ungrouped" -msgstr "Nicht gruppiert" - -#: ../cache/locales.php:388 -msgid "Show disconnected contacts" -msgstr "Abgemeldete Kontakte anzeigen" - -#: ../cache/locales.php:389 -msgid "Hide disconnected contacts" -msgstr "Abgemeldete Kontakte verbergen" - -#: ../cache/locales.php:390 -#, php-format -msgid "Show group %s" -msgstr "Gruppe %s anzeigen" - -#: ../cache/locales.php:391 -#, php-format -msgid "Hide group %s" -msgstr "Gruppe %s verbergen" - -#: ../cache/locales.php:392 -msgid "Please enter a valid Jabber ID" -msgstr "Bitte eine gültige Jabber-Kennung eingeben" - -#: ../cache/locales.php:393 -msgid "" -"No contacts ? You can add one using the + button bellow or going to the " -"Explore page" -msgstr "" -"Keine Kontakte? Sie können welche mit dem unteren + Knopf hinzufügen oder " -"zur Entdeckenseite gehen." - -#: ../cache/locales.php:394 -msgid "Show/Hide" -msgstr "Anzeigen/Ausblenden" - -#: ../cache/locales.php:395 -msgid "Enter the Jabber ID of your contact." -msgstr "Die Jabber-Kennung Ihres Kontaktes eingeben." - -#: ../cache/locales.php:396 -msgid "Press enter to validate." -msgstr "Enter zum Überprüfen eingeben." - -#: ../cache/locales.php:397 -msgid "JID" -msgstr "JID" - -#: ../cache/locales.php:398 -msgid "Results" -msgstr "Suchergebnisse" - -#: ../cache/locales.php:399 -msgid "Contact added" -msgstr "Kontakt hinzugefügt" - -#: ../cache/locales.php:401 -msgid "Contact deleted" -msgstr "Kontakt gelöscht" - -#: ../cache/locales.php:403 -msgid "This is not a valid url" -msgstr "Das ist keine gültige Adresse" - -#: ../cache/locales.php:404 -msgid "Sharing the URL" -msgstr "Adressfreigabe" - -#: ../cache/locales.php:405 -msgid "Statistics" -msgstr "Statistiken" - -#: ../cache/locales.php:406 -msgid "Since" -msgstr "Seit" - -#: ../cache/locales.php:407 -msgid "Sessions" -msgstr "Sitzungen" - -#: ../cache/locales.php:409 -msgid "Monthly Subscriptions" -msgstr "Monatliches Abonnement" - -#: ../cache/locales.php:410 -msgid "Monthly Subscriptions Cumulated" -msgstr "Monatliche Abonnements" - -#: ../cache/locales.php:412 -msgid "" -"Movim is a decentralized social network, before creating a new account you " -"need to choose a server to register." -msgstr "" -"Movim ist ein dezentrales soziales Netzwerk, bevor ein neues Konto erstellt " -"werden kann, muss ein Server zum Registrieren gewählt werden." - -#: ../cache/locales.php:413 -msgid "Your server here ?" -msgstr "Ihr Server hier?" - -#: ../cache/locales.php:414 -msgid "Contact us to add yours to the officially supported servers list" -msgstr "" -"Treten Sie mit uns in Kontakt, um Ihren Server zu der Liste der offiziell " -"unterstützten Server hinzuzufügen" - -#: ../cache/locales.php:416 -msgid "No public feed for this contact" -msgstr "Kein öffentlicher Datenstrom für diesen Kontakt" - -#: ../cache/locales.php:417 -msgid "No contact specified" -msgstr "Keinen Kontakt spezifiziert" - -#: ../cache/locales.php:418 ../cache/locales.php:473 -msgid "Profile" -msgstr "Profil" - -#: ../cache/locales.php:419 -msgid "Profile Updated" -msgstr "Profil aktualisiert" - -#: ../cache/locales.php:420 -msgid "Profile Not Updated" -msgstr "Profil nicht aktualisiert" - -#: ../cache/locales.php:421 -msgid "Your profile is now public" -msgstr "Ihr Profil ist jetzt öffentlich" - -#: ../cache/locales.php:422 -msgid "Your profile is now restricted" -msgstr "Ihr Profil ist jetzt eingeschränkt" - -#: ../cache/locales.php:436 -msgid "Twitter" -msgstr "Twitter" - -#: ../cache/locales.php:437 -msgid "Skype" -msgstr "Skype" - -#: ../cache/locales.php:438 -msgid "Yahoo" -msgstr "Yahoo" - -#: ../cache/locales.php:439 -msgid "Privacy Level" -msgstr "Privatsphärenstufe" - -#: ../cache/locales.php:440 -msgid "Is this profile public ?" -msgstr "Ist dieses Profil öffentlich?" - -#: ../cache/locales.php:441 -msgid "" -"Please pay attention ! By making your profile public, all the information " -"listed above will be available for all the Movim users and on the whole " -"Internet." -msgstr "" -"Achtung! Durch das Öffentlichmachen des Profils werden alle obenstehenden " -"Information verfügbar für alle Movimnutzer und das gesamte Internet." - -#: ../cache/locales.php:442 -msgid "Call" -msgstr "Anrufen" - -#: ../cache/locales.php:443 -msgid "Hang up" -msgstr "Auflegen" - -#: ../cache/locales.php:444 -msgid "Connection" -msgstr "Verbindung" - -#: ../cache/locales.php:445 ../cache/locales.php:451 -msgid "Hung up" -msgstr "Aufgelegt" - -#: ../cache/locales.php:446 ../cache/locales.php:452 -msgid "Your contact is busy" -msgstr "Der Kontakt ist beschäftigt" - -#: ../cache/locales.php:447 ../cache/locales.php:453 -msgid "Declined" -msgstr "Abgelehnt" - -#: ../cache/locales.php:448 ../cache/locales.php:454 -msgid "Remote application incompatible" -msgstr "Entfernte Anwendung inkompatibel" - -#: ../cache/locales.php:450 ../cache/locales.php:456 -msgid "Is calling you" -msgstr "Ruft Sie gerade an" - -#: ../cache/locales.php:457 -msgid "You don't have javascript enabled. Good luck with that." -msgstr "Javaskript ist deaktiviert. Viel Erfolg damit!" - -#: ../cache/locales.php:458 -msgid "" -"Movim is a kickass distributed social networking platform that protect your " -"privacy an comes with a set of awesome features." -msgstr "" -"Movim ist eine großartige Platform eines verteilten sozialen Netzwerks, das " -"die Privatsphäre schützt und eine Menge fantastischer Funktionen mitbringt." - -#: ../cache/locales.php:459 -msgid "Administration" -msgstr "Systemverwaltung" - -#: ../cache/locales.php:460 -msgid "Home" -msgstr "Hauptansicht" - -#: ../cache/locales.php:461 -msgid "Discover" -msgstr "Entdecken" - -#: ../cache/locales.php:462 -msgid "Explore" -msgstr "Durchsuchen" - -#: ../cache/locales.php:463 -msgid "Account Creation" -msgstr "Konto erstellen" - -#: ../cache/locales.php:464 +#: [hello]news [page]news msgid "News" msgstr "Neuigkeiten" -#: ../cache/locales.php:465 -msgid "Avatar" -msgstr "Benutzerbild" +#: [hello]news_page +msgid "Read all theses articles on the News page" +msgstr "Alle diese Artikel auf der Nachrichtenseite lesen" -#: ../cache/locales.php:467 -msgid "Chats" -msgstr "Unterhaltungen" +#: [hello]blog_title +msgid "Visit your public blog" +msgstr "Ihren öffentlichen Blog besuchen" -#: ../cache/locales.php:470 -msgid "Server" -msgstr "Server" +#: [hello]blog_text +msgid "See your public posts and share them with all your contacts" +msgstr "Ihre öffentlichen Beiträge ansehen und diese allen Ihren Kontakten freigeben" -#: ../cache/locales.php:471 -msgid "Public Groups" -msgstr "Öffentliche Gruppen" +#: [hello]share_title +msgid "Universal share button" +msgstr "Universeller Freigabeknopf" -#: ../cache/locales.php:472 -msgid "Viewer" -msgstr "Betrachter" - -#: ../cache/locales.php:474 -msgid "Media" -msgstr "Medien" - -#: ../cache/locales.php:475 -msgid "Blog" -msgstr "Blog" - -#: ../cache/locales.php:476 -msgid "About" -msgstr "Info" - -#: ../cache/locales.php:477 -msgid "Login" -msgstr "Anmelden" - -#: ../cache/locales.php:479 -msgid "Feed" -msgstr "Datenstrom" - -#: ../cache/locales.php:481 -msgid "Gallery" -msgstr "Galerie" - -#: ../cache/locales.php:483 -msgid "Visio-conference" -msgstr "Videokonferenz" - -#: ../cache/locales.php:484 -msgid "Pods" -msgstr "Pods" - -#: ../cache/locales.php:485 -msgid "Share" -msgstr "Teilen" - -#: ../cache/locales.php:486 -msgid "Room" -msgstr "Raum" - -#: ../cache/locales.php:487 -#, php-format -msgid "Error: %s" -msgstr "Fehler: %s" - -#: ../cache/locales.php:488 -#, php-format -msgid "Cannot load file '%s'" -msgstr "Datei »%s« kann nicht geladen werden." - -#: ../cache/locales.php:489 -#, php-format -msgid "Route error, please set all the parameters for the page %s" +#: [hello]share_text +msgid "Bookmark or drag and drop the following button in your toolbar and use it on all the pages you want to share on Movim" msgstr "" -"Fehler bei der Weiterleitung. Bitte alle Parameter für die Seite %s " -"einstellen." -#: ../cache/locales.php:490 -#, php-format -msgid "Requested widget '%s' doesn't exist." -msgstr "Das geforderte Widget »%s« ist nicht vorhanden." +#: [hello]share_button +msgid "Share on Movim" +msgstr "Auf Movim teilen" -#: ../cache/locales.php:491 -#, php-format -msgid "Requested event '%s' not registered." -msgstr "Das geforderte Event »%s« ist nicht registriert." +#: [help]faq +msgid "Frequently Asked Questions" +msgstr "Häufig gestellte Fragen" -#: ../cache/locales.php:492 -msgid "Whoops!" +#: [banner]title +msgid "What do the little banners refer to ?" +msgstr "Was bedeuten die kleinen Fahnen?" + +#: [banner]info1 +msgid "Thanks to these five little banners, you can quickly identitfy the level of confdentiality applied to the information you provide." +msgstr "Danke dieser fünf kleinen Fahnen, können Sie schnell die Vertraulichkeitsstufe Ihrer Information erkennen." + +#: [banner]white +msgid "White, only you can see the information" +msgstr "Weiß, nur Sie können die Information sehen" + +#: [banner]green +msgid "Green, you have chosen some contacts who can see your information" +msgstr "Grün, Sie haben einige Kontakte gewählt, die Ihre Information sehen können" + +#: [banner]orange +msgid "Orange, all your contact list can see your information" +msgstr "Orange, Ihre vollständige Kontaktliste kann Ihre Information sehen" + +#: [banner]red +msgid "Red, everybody in the XMPP network can see your information" +msgstr "Rot, jeder im XMPP-Netzwerk kann Ihre Information sehen" + +#: [banner]black +msgid "Black, the whole Internet can see your information" +msgstr "Schwarz, das vollständige Internet kann Ihre Information sehen" + +#: [wiki]question +msgid "Looking for some documentation ?" +msgstr "Suchen Sie nach einer Dokumentation?" + +#: [wiki]button +msgid "Read the Wiki" +msgstr "Das Wiki lesen" + +#: [ml]question +msgid "Talk with us by email ?" +msgstr "Mit uns per E-Mail sprechen?" + +#: [ml]button +msgid "Join the Mailing List" +msgstr "Der Verteilerliste beitreten" + +#: [chatroom]question +msgid "Chat with the team ?" +msgstr "Mit dem Team sprechen?" + +#: [chatroom]button +msgid "Join the Chatroom" +msgstr "Den Chatraum betreten" + +#: [init]location +msgid "Location node created" +msgstr "Ortsknoten erstellt" + +#: [init]bookmark +msgid "Bookmark node created" +msgstr "Lesezeichenknoten erstellt" + +#: [init]vcard4 +msgid "Profile node created" +msgstr "Profilknoten erstellt" + +#: [init]avatar +msgid "Avatar node created" +msgstr "Avatarknoten erstellt" + +#: [init]subscriptions +msgid "Subscriptions node created" +msgstr "Abonnementknoten erstellt" + +#: [init]microblog +msgid "Microblog node created" +msgstr "Microblogknoten ersellt" + +#: [location]title +msgid "Location" +msgstr "Standort" + +#: [location]wrong_postition +msgid "Wrong position" +msgstr "Falsche Position" + +#: [location]updated +msgid "Location updated" +msgstr "Standort aktualisiert" + +#: [location]update +msgid "Update my position" +msgstr "Meine Position aktualisieren" + +#: [login_anonymous]bad_username +msgid "Bad nickname (between 4 and 40 characters)" +msgstr "" + +#: [error]username +msgid "Wrong username" +msgstr "Falscher Benutzername" + +#: [error]jid +msgid "Invalid JID" +msgstr "Ungültige Jabber-Kennung" + +#: [error]empty_challenge +msgid "Empty Challenge from the server" +msgstr "Leere Aufforderung vom Server" + +#: [error]dns +msgid "XMPP Domain error, your account is not a correct Jabber ID" +msgstr "XMPP-Domänenfehler: Ihr Konto ist keine richtige Jabber-Kennung" + +#: [error]data_missings +msgid "Some data are missing !" +msgstr "Es fehlen einige Daten!" + +#: [error]wrong_password +msgid "Wrong password" +msgstr "Falsches Passwort" + +#: [error]internal +msgid "Internal server error" +msgstr "Interner Server-Fehler" + +#: [error]session +msgid "Session error" +msgstr "Sitzungsfehler" + +#: [error]account_created +msgid "Account successfully created" +msgstr "Das Benutzerkonto wurde erfolgreich angelegt." + +#: [error]xmpp_unauthorized +#, fuzzy +msgctxt "[error]xmpp_unauthorized" +msgid "Your XMPP server is unauthorized" +msgstr "Ihr XMPP-Server ist nicht legitimiert" + +#: [error]mec_error +msgid "The server takes too much time to respond" +msgstr "Der Server braucht zum Antworten zu lange" + +#: [error]too_old +msgid "Your web browser is too old to use with Movim." +msgstr "Ihr Browser ist zu alt für Movim." + +#: [error]websocket +msgid "Movim cannot talk with the server, please try again later (Websocket connection error)" +msgstr "Movim kann den Server nicht erreichen, bitte versuchen Sie es später nochmal (Websocket-Verbindungsfehler)" + +#: [error]impossible +msgid "Impossible login" +msgstr "Anmeldung nicht möglich" + +#: [error]title +msgid "Oops!" msgstr "Huch!" -#: ../cache/locales.php:493 -msgid "It seem that you don't have any pictures here?" -msgstr "Es sieht so aus, als hätten Sie hier keine Bilder." +#: [error]default [visio]unknown_error +msgid "Unknown error" +msgstr "Unbekannter Fehler" -#: ../cache/locales.php:494 -msgid "You can try to upload a couple by going to the Media page" +#: [error]login_format +msgid "Invalid username format" +msgstr "Ungültiges Benutzernamenformat" + +#: [error]password_format +msgid "Invalid password format" +msgstr "Ungültiges Passwortformat" + +#: [error]unauthorized +#, fuzzy +msgctxt "[error]unauthorized" +msgid "Your XMPP server is unauthorized" +msgstr "Ihr XMPP-Server ist nicht legitimiert" + +#: [error]conflict +msgid "A Movim session is already open on an other device" msgstr "" -"Sie können versuchen einige hochzuladen, indem Sie auf die Medienseite gehen." -#: ../cache/locales.php:495 -#, php-format -msgid "%s - About" -msgstr "%s - Info" +#: [error]wrong_account +msgid "Movim failed to authenticate. You entered wrong data" +msgstr "Movim konnte nicht legitimiert werden. Sie haben falsche Daten eingegeben." -#: ../cache/locales.php:496 -#, php-format -msgid "%s - Account" -msgstr "%s - Konto" +#: [error]mechanism +msgid "Authentication mechanism not supported by Movim" +msgstr "Legitimierungsmechanismus wird von Movim nicht unterstützt" -#: ../cache/locales.php:497 -#, php-format -msgid "%s - Administration Panel" -msgstr "%s - Systemverwaltung" +#: [error]fail_auth +msgid "The XMPP authentification failed" +msgstr "XMPP-Legitimierung ist fehlgeschlagen" -#: ../cache/locales.php:498 -#, php-format -msgid "%s - Blog" -msgstr "%s - Blog" +#: [account]title [accounts]accounts_title +msgid "Accounts" +msgstr "Konten" -#: ../cache/locales.php:499 -#, php-format -msgid "%s - Configuration" -msgstr "%s – Einstellungen" +#: [form]username +msgid "My address" +msgstr "Adresse" -#: ../cache/locales.php:500 -#, php-format -msgid "%s - Discover" -msgstr "%s - Entdecken" +#: [form]create_one +msgid "Create one !" +msgstr "Eines erstellen!" -#: ../cache/locales.php:501 -#, php-format -msgid "%s - Explore" -msgstr "%s - Durchsuchen" +#: [form]another_account +msgid "Another account" +msgstr "Ein anderes Konto" -#: ../cache/locales.php:502 -#, php-format -msgid "%s - Help Page" -msgstr "%s - Hilfeseite" +#: [form]no_account +msgid "No account yet ?" +msgstr "Noch keine Konto?" -#: ../cache/locales.php:503 -#, php-format -msgid "%s - Login to Movim" -msgstr "%s – Anmelden" +#: [form]whitelist.info +msgid "You can login with accounts from theses servers" +msgstr "" -#: ../cache/locales.php:504 -#, php-format -msgid "%s - Welcome to Movim" -msgstr "%s – Willkommen bei Movim" +#: [form]connected +msgid "Connected" +msgstr "Verbunden" -#: ../cache/locales.php:505 -#, php-format -msgid "%s - Media" -msgstr "%s - Medien" +#: [form]population +msgid "Population" +msgstr "Einwohner" -#: ../cache/locales.php:506 -#, php-format -msgid "%s - News" -msgstr "%s - Neuigkeiten" +#: [menu]empty_title +#, fuzzy +msgid "No news yet..." +msgstr "Noch keine Kommentare" -#: ../cache/locales.php:507 -#, php-format -msgid "%s - Group Configuration" -msgstr "%s - Gruppenkonfiguration" +#: [menu]empty +#, fuzzy +msgid "Welcome on your news feed, here you will see all the posts published by your contacts and in the groups you have subscribed." +msgstr "Willkommen zu Ihrem Datenstrom, hier können Sie alle Beiträge sehen, welche in Ihren abonnierten Gruppen veröffentlicht wurden." -#: ../cache/locales.php:508 -#, php-format -msgid "%s - Group" -msgstr "%s - Gruppe" +#: [menu]refresh +msgid "Refreshing all the streams" +msgstr "Alle Daten werden aufgefrischt" -#: ../cache/locales.php:509 -#, php-format -msgid "%s - 404" -msgstr "%s - 404" +#: [menu]public +msgid "This post is public" +msgstr "Dieser Beitrag ist öffentlich" -#: ../cache/locales.php:510 -#, php-format -msgid "%s - Profile" -msgstr "%s - Profil" +#: [affiliations]title +msgid "Manage your members" +msgstr "Mitglieder verwalten" -#: ../cache/locales.php:511 -#, php-format -msgid "%s - Server" -msgstr "%s - Server" +#: [affiliations]get +msgid "Get the members" +msgstr "Mitglieder abfragen" -#: ../cache/locales.php:512 -msgid "Validate" -msgstr "Bestätigen" +#: [affiliations]saved +msgid "Affiliations saved" +msgstr "Zugehörigkeiten gespeichert" -#: ../cache/locales.php:513 -msgid "Refresh" -msgstr "Aktualisieren" +#: [subscriptions]title +msgid "Manage your subscriptions" +msgstr "Ihre Abonnements verwalten" -#: ../cache/locales.php:514 -msgid "Add" -msgstr "Hinzufügen" +#: [subscriptions]info +msgid "Manage the subscriptions" +msgstr "Die Abonnements verwalten" -#: ../cache/locales.php:515 -msgid "Delete" -msgstr "Löschen" +#: [subscriptions]get +msgid "Get the subscriptions" +msgstr "Abonnements" -#: ../cache/locales.php:516 -msgid "Remove" -msgstr "Entfernen" +#: [subscriptions]saved +msgid "Subscriptions saved" +msgstr "Abonnement gespeichert" -#: ../cache/locales.php:517 -msgid "Cancel" -msgstr "Abbrechen" +#: [notifs]title +msgid "Pending Invitations" +msgstr "Neue Einladungen" -#: ../cache/locales.php:518 -msgid "Close" -msgstr "Schließen" +#: [notifs]wants_to_talk +msgid "%s wants to talk with you" +msgstr "%s möchte mit Ihnen sprechen" -#: ../cache/locales.php:519 -msgid "Update" -msgstr "Aktualisieren" +#: [notifs]manage +msgid "Manage" +msgstr "Verwalten" -#: ../cache/locales.php:520 -msgid "Updating" -msgstr "Aktualisierung läuft" +#: [post]news_feed +msgid "News Feed" +msgstr "Nachrichtendaten" -#: ../cache/locales.php:521 +#: [post]placeholder +msgid "Discover and register to the groups you are interested in" +msgstr "Gruppen, die Sie interessieren, entdecken und dort registrieren" + +#: [post]preview [page]preview +msgid "Preview" +msgstr "Vorschau" + +#: [post]help [page]help +msgid "Help" +msgstr "Hilfe" + +#: [post]help_more +msgid "More help" +msgstr "Weitere Hilfe" + +#: [post]help_manual +msgid "Markdown syntax manual" +msgstr "" + +#: [post]title +msgid "Title" +msgstr "Titel" + +#: [post]content +msgid "Content" +msgstr "Inhalt" + +#: [post]link +msgid "Link" +msgstr "Verweis" + +#: [post]tags +msgid "Tags" +msgstr "Schlagwörter" + +#: [post]valid_url [publish]valid_url +msgid "Please enter a valid url" +msgstr "Bitte eine gültige Adresse eingeben" + +#: [post]no_content_preview [publish]no_content_preview +msgid "No content to preview" +msgstr "Kein Inhalt zur Vorschau" + +#: [post]no_content [publish]no_content [post]empty +msgid "No content" +msgstr "Ohne Inhalt" + +#: [post]published +msgid "Post published" +msgstr "Beitrag veröffentlicht" + +#: [post]deleted +msgid "Post deleted" +msgstr "Beitrag gelöscht" + +#: [post]gallery +msgid "This picture will be added to your gallery" +msgstr "" + +#: [post]hot +msgid "What's Hot" +msgstr "Spannendes" + +#: [post]hot_text +msgid "Posts recently published in Groups that you are not subscribed (yet)" +msgstr "" + +#: [post]new [publish]new +msgid "New post" +msgstr "Neuer Beitrag" + +#: [post]embed_tip +msgid "You can also use services like Imgur or Flickr to host your picture and paste the link here." +msgstr "" + +#: [post]repost +msgid "This is a re-post from %s" +msgstr "" + +#: [post]repost_profile +msgid "See %s profile" +msgstr "Profil %s ansehen" + +#: [post]public +#, fuzzy +msgid "Publish this post publicly?" +msgstr "Diesen Beitrag in Ihrem öffentlichen Datenstrom veröffentlichen?" + +#: [post]blog_add +msgid "Post published on your blog" +msgstr "Beitrag in Ihrem Blog veröffentlicht" + +#: [post]blog_remove +msgid "Post removed from your blog" +msgstr "Beitrag von Ihrem Blog entfernt" + +#: [post]delete_title [post]delete +msgid "Delete this post" +msgstr "Diesen Eintrag löschen" + +#: [post]delete_text +msgid "You are going to delete this post, please confirm your action" +msgstr "" + +#: [post]comments_disabled +msgid "Comments disabled" +msgstr "Kommentare deaktiviert" + +#: [post]comment_published +msgid "Comment published" +msgstr "Kommentar veröffentlicht" + +#: [status]disconnect +msgid "Disconnect" +msgstr "Trennen" + +#: [status]here +msgid "Your status here !" +msgstr "Ihr Status hier!" + +#: [status]updated +msgid "Status updated" +msgstr "Status aktualisiert" + +#: [status]status +msgid "Status" +msgstr "Status" + +#: [status]presence +msgid "Presence" +msgstr "Anwesenend" + +#: [status]online +msgid "Online with Movim" +msgstr "" + +#: [publish]title +msgid "Publish" +msgstr "Veröffentlichen" + +#: [publish]attach +msgid "Add a file or a picture to your post" +msgstr "" + +#: [publish]no_publication +msgid "You cannot publish a post on this Group" +msgstr "" + +#: [publish]form_filled +msgid "Some fields have been filled in. Do you still want to go back and loose their content?" +msgstr "" + +#: [public_groups]shared +msgid "Shared" +msgstr "Geteilt" + +#: [public_groups]added +msgid "%s has been added to your public groups" +msgstr "%s wurde zu Ihren öffentlichen Gruppen hinzugefügt" + +#: [rooms]add +msgid "Add a chatroom" +msgstr "Chatraum hinzufügen" + +#: [rooms]empty_text1 +msgid "You don't have any chatroom yet." +msgstr "Sie sind noch keinem Chatraum beigetreten." + +#: [rooms]empty_text2 +msgid "Add one by clicking on the add button in the header." +msgstr "" + +#: [chatrooms]title +msgid "Chatrooms" +msgstr "Chaträume" + +#: [chatrooms]name_placeholder +msgid "My Favorite Room" +msgstr "Mein favorisierter Raum" + +#: [chatrooms]users +msgid "Users in the room" +msgstr "Nutzer im Raum" + +#: [chatrooms]bad_nickname +#, fuzzy +msgid "Please enter a correct nickname (2 to 40 characters)" +msgstr "Bitte einen richtigen Spitznamen eingeben (6 bis 40 Zeichen)" + +#: [room]anonymous_title +msgid "Public chatroom" +msgstr "Öffentlicher Chatraum" + +#: [room]no_room +msgid "Please provide a room address" +msgstr "Bitte eine Raumadresse übermitteln" + +#: [room]anonymous_text1 +msgid "You are currently logued as an anonymous user." +msgstr "" + +#: [room]anonymous_text2 +msgid "You can join using your own account or create one on the login page by loging out using the cross in the top-right corner." +msgstr "" + +#: [room]anonymous_login +msgid "Login on %s" +msgstr "Bei %s anmelden" + +#: [room]nick +msgid "Your nickname" +msgstr "Ihr Spitzname" + +#: [roster]ungrouped +msgid "Ungrouped" +msgstr "Nicht gruppiert" + +#: [roster]show_disconnected +msgid "Show disconnected contacts" +msgstr "Abgemeldete Kontakte anzeigen" + +#: [roster]hide_disconnected +msgid "Hide disconnected contacts" +msgstr "Abgemeldete Kontakte verbergen" + +#: [roster]show_group +msgid "Show group %s" +msgstr "Gruppe %s anzeigen" + +#: [roster]hide_group +msgid "Hide group %s" +msgstr "Gruppe %s verbergen" + +#: [roster]jid_error +msgid "Please enter a valid Jabber ID" +msgstr "Bitte eine gültige Jabber-Kennung eingeben" + +#: [roster]no_contacts_title +#, fuzzy +msgid "No contacts ?" +msgstr "Ihre Kontakte" + +#: [roster]no_contacts_text +#, fuzzy +msgid "You can add one using the + button bellow" +msgstr "Keine Kontakte? Sie können welche mit dem unteren + Knopf hinzufügen oder zur Entdeckenseite gehen." + +#: [roster]show_hide +msgid "Show/Hide" +msgstr "Anzeigen/Ausblenden" + +#: [roster]add_contact_info1 +msgid "Enter the Jabber ID of your contact." +msgstr "Die Jabber-Kennung Ihres Kontaktes eingeben." + +#: [roster]add_contact_info2 +msgid "Press enter to validate." +msgstr "Enter zum Überprüfen eingeben." + +#: [roster]jid +msgid "JID" +msgstr "JID" + +#: [roster]results +msgid "Results" +msgstr "Suchergebnisse" + +#: [roster]added +msgid "Contact added" +msgstr "Kontakt hinzugefügt" + +#: [roster]deleted +msgid "Contact deleted" +msgstr "Kontakt gelöscht" + +#: [roster]search +msgid "Search" +msgstr "Suchen" + +#: [share]error +msgid "This is not a valid url" +msgstr "Das ist keine gültige Adresse" + +#: [share]success +msgid "Sharing the URL" +msgstr "Adressfreigabe" + +#: [statistics]title +msgid "Statistics" +msgstr "Statistiken" + +#: [statistics]since +msgid "Since" +msgstr "Seit" + +#: [statistics]sessions +msgid "Sessions" +msgstr "Sitzungen" + +#: [statistics]monthly_sub +msgid "Monthly Subscriptions" +msgstr "Monatliches Abonnement" + +#: [statistics]monthly_sub_cum +msgid "Monthly Subscriptions Cumulated" +msgstr "Monatliche Abonnements" + +#: [subscribe]info +msgid "Movim is a decentralized social network, before creating a new account you need to choose a server to register." +msgstr "Movim ist ein dezentrales soziales Netzwerk, bevor ein neues Konto erstellt werden kann, muss ein Server zum Registrieren gewählt werden." + +#: [subscribe]server_question +msgid "Your server here ?" +msgstr "Ihr Server hier?" + +#: [subscribe]server_contact +msgid "Contact us to add yours to the officially supported servers list" +msgstr "Treten Sie mit uns in Kontakt, um Ihren Server zu der Liste der offiziell unterstützten Server hinzuzufügen" + +#: [feed]nope +msgid "No public feed for this contact" +msgstr "Kein öffentlicher Datenstrom für diesen Kontakt" + +#: [feed]nope_contact +msgid "No contact specified" +msgstr "Keinen Kontakt spezifiziert" + +#: [upload]title +#, fuzzy +msgid "Upload a file" +msgstr "Hochladen" + +#: [upload]choose +msgid "Choose a file to upload" +msgstr "" + +#: [vcard]title [page]profile +msgid "Profile" +msgstr "Profil" + +#: [vcard]updated +msgid "Profile Updated" +msgstr "Profil aktualisiert" + +#: [vcard]not_updated +msgid "Profile Not Updated" +msgstr "Profil nicht aktualisiert" + +#: [vcard]public +msgid "Your profile is now public" +msgstr "Ihr Profil ist jetzt öffentlich" + +#: [vcard]restricted +msgid "Your profile is now restricted" +msgstr "Ihr Profil ist jetzt eingeschränkt" + +#: [general]nickname +#, fuzzy +msgctxt "[general]nickname" +msgid "Nickname" +msgstr "Spitzname" + +#: [accounts]twitter +msgid "Twitter" +msgstr "Twitter" + +#: [accounts]skype +msgid "Skype" +msgstr "Skype" + +#: [accounts]yahoo +msgid "Yahoo" +msgstr "Yahoo" + +#: [accounts]accounts_nickname +#, fuzzy +msgctxt "[accounts]accounts_nickname" +msgid "Nickname" +msgstr "Spitzname" + +#: [accounts]accounts_yahoo +#, fuzzy +msgid "Yahoo Account" +msgstr "Konto" + +#: [privacy]privacy_title +msgid "Privacy Level" +msgstr "Privatsphärenstufe" + +#: [privacy]privacy_question +msgid "Is this profile public ?" +msgstr "Ist dieses Profil öffentlich?" + +#: [privacy]privacy_info +msgid "Please pay attention ! By making your profile public, all the information listed above will be available for all the Movim users and on the whole Internet." +msgstr "Achtung! Durch das Öffentlichmachen des Profils werden alle obenstehenden Information verfügbar für alle Movimnutzer und das gesamte Internet." + +#: [save]submit [button]submit msgid "Submit" msgstr "Absenden" -#: ../cache/locales.php:522 -msgid "Submitting" -msgstr "Wird gesendet" - -#: ../cache/locales.php:523 +#: [save]reset [button]reset msgid "Reset" msgstr "Zurücksetzen" -#: ../cache/locales.php:524 +#: [visio]hung_up +msgid "Hung up" +msgstr "Aufgelegt" + +#: [visio]busy +msgid "Your contact is busy" +msgstr "Der Kontakt ist beschäftigt" + +#: [visio]declined +msgid "Declined" +msgstr "Abgelehnt" + +#: [visio]calling +msgid "Is calling you" +msgstr "Ruft Sie gerade an" + +#: [visio]call +msgid "Call" +msgstr "Anrufen" + +#: [visio]hang_up +msgid "Hang up" +msgstr "Auflegen" + +#: [visio]connection +msgid "Connection" +msgstr "Verbindung" + +#: [global]no_js +msgid "You don't have javascript enabled. Good luck with that." +msgstr "Javaskript ist deaktiviert. Viel Erfolg damit!" + +#: [global]description +msgid "Movim is a kickass distributed social networking platform that protect your privacy an comes with a set of awesome features." +msgstr "Movim ist eine großartige Platform eines verteilten sozialen Netzwerks, das die Privatsphäre schützt und eine Menge fantastischer Funktionen mitbringt." + +#: [page]administration +msgid "Administration" +msgstr "Systemverwaltung" + +#: [page]home +msgid "Home" +msgstr "Hauptansicht" + +#: [page]discover +msgid "Discover" +msgstr "Entdecken" + +#: [page]explore +msgid "Explore" +msgstr "Durchsuchen" + +#: [page]account_creation +msgid "Account Creation" +msgstr "Konto erstellen" + +#: [page]avatar +msgid "Avatar" +msgstr "Benutzerbild" + +#: [page]chats +msgid "Chats" +msgstr "Unterhaltungen" + +#: [page]server +msgid "Server" +msgstr "Server" + +#: [page]public_groups +msgid "Public Groups" +msgstr "Öffentliche Gruppen" + +#: [page]viewer +msgid "Viewer" +msgstr "Betrachter" + +#: [page]media +msgid "Media" +msgstr "Medien" + +#: [page]blog +msgid "Blog" +msgstr "Blog" + +#: [page]about +msgid "About" +msgstr "Info" + +#: [page]login +msgid "Login" +msgstr "Anmelden" + +#: [page]feed +msgid "Feed" +msgstr "Datenstrom" + +#: [page]gallery +msgid "Gallery" +msgstr "Galerie" + +#: [page]visio +msgid "Visio-conference" +msgstr "Videokonferenz" + +#: [page]pods +msgid "Pods" +msgstr "Pods" + +#: [page]share +msgid "Share" +msgstr "Teilen" + +#: [page]room +msgid "Room" +msgstr "Raum" + +#: [error]error +msgid "Error: %s" +msgstr "Fehler: %s" + +#: [error]cannot_load_file +msgid "Cannot load file '%s'" +msgstr "Datei »%s« kann nicht geladen werden." + +#: [error]route +msgid "Route error, please set all the parameters for the page %s" +msgstr "Fehler bei der Weiterleitung. Bitte alle Parameter für die Seite %s einstellen." + +#: [error]widget_load_error +msgid "Requested widget '%s' doesn't exist." +msgstr "Das geforderte Widget »%s« ist nicht vorhanden." + +#: [error]widget_call_error +msgid "Requested event '%s' not registered." +msgstr "Das geforderte Event »%s« ist nicht registriert." + +#: [error]whoops +msgid "Whoops!" +msgstr "Huch!" + +#: [error]media_not_found +msgid "It seem that you don't have any pictures here?" +msgstr "Es sieht so aus, als hätten Sie hier keine Bilder." + +#: [error]media_ask_upload +msgid "You can try to upload a couple by going to the Media page" +msgstr "Sie können versuchen einige hochzuladen, indem Sie auf die Medienseite gehen." + +#: [title]about +msgid "%s - About" +msgstr "%s - Info" + +#: [title]account +msgid "%s - Account" +msgstr "%s - Konto" + +#: [title]administration +msgid "%s - Administration Panel" +msgstr "%s - Systemverwaltung" + +#: [title]blog +msgid "%s - Blog" +msgstr "%s - Blog" + +#: [title]configuration +msgid "%s - Configuration" +msgstr "%s – Einstellungen" + +#: [title]discover +msgid "%s - Discover" +msgstr "%s - Entdecken" + +#: [title]explore +msgid "%s - Explore" +msgstr "%s - Durchsuchen" + +#: [title]help +msgid "%s - Help Page" +msgstr "%s - Hilfeseite" + +#: [title]login +msgid "%s - Login to Movim" +msgstr "%s – Anmelden" + +#: [title]main +msgid "%s - Welcome to Movim" +msgstr "%s – Willkommen bei Movim" + +#: [title]media +msgid "%s - Media" +msgstr "%s - Medien" + +#: [title]news +msgid "%s - News" +msgstr "%s - Neuigkeiten" + +#: [title]node_configuration +msgid "%s - Group Configuration" +msgstr "%s - Gruppenkonfiguration" + +#: [title]node +msgid "%s - Group" +msgstr "%s - Gruppe" + +#: [title]not_found +msgid "%s - 404" +msgstr "%s - 404" + +#: [title]profile +msgid "%s - Profile" +msgstr "%s - Profil" + +#: [title]server +msgid "%s - Server" +msgstr "%s - Server" + +#: [button]validate +msgid "Validate" +msgstr "Bestätigen" + +#: [button]refresh +msgid "Refresh" +msgstr "Aktualisieren" + +#: [button]add +msgid "Add" +msgstr "Hinzufügen" + +#: [button]delete +msgid "Delete" +msgstr "Löschen" + +#: [button]cancel +msgid "Cancel" +msgstr "Abbrechen" + +#: [button]close +msgid "Close" +msgstr "Schließen" + +#: [button]update +msgid "Update" +msgstr "Aktualisieren" + +#: [button]updating +msgid "Updating" +msgstr "Aktualisierung läuft" + +#: [button]submitting +msgid "Submitting" +msgstr "Wird gesendet" + +#: [button]register msgid "Register" msgstr "Registrieren" -#: ../cache/locales.php:525 +#: [button]unregister msgid "Unregister" msgstr "Registrierung löschen" -#: ../cache/locales.php:526 +#: [button]save msgid "Save" msgstr "Speichern" -#: ../cache/locales.php:527 +#: [button]clear msgid "Clear" msgstr "Leeren" -#: ../cache/locales.php:528 +#: [button]upload msgid "Upload" msgstr "Hochladen" -#: ../cache/locales.php:529 +#: [button]come_in msgid "Come in!" msgstr "Komm herein!" -#: ../cache/locales.php:530 +#: [button]connecting msgid "Connecting" msgstr "Verbindung wird hergestellt" -#: ../cache/locales.php:531 +#: [button]bool_yes msgid "Yes" msgstr "Ja" -#: ../cache/locales.php:532 +#: [button]bool_no msgid "No" msgstr "Nein" -#: ../cache/locales.php:534 +#: [button]return msgid "Return" msgstr "Zurück" -#: ../cache/locales.php:535 +#: [button]accept msgid "Accept" msgstr "Annehmen" -#: ../cache/locales.php:536 +#: [button]refuse msgid "Refuse" msgstr "Ablehnen" -#: ../cache/locales.php:537 +#: [button]next msgid "Next" msgstr "Weiter" -#: ../cache/locales.php:538 +#: [button]previous msgid "Previous" msgstr "Zurück" -#: ../cache/locales.php:539 -#, php-format +#: [step]step msgid "Step %s" msgstr "Schritt %s" -#: ../cache/locales.php:542 +#: [day]title msgid "Day" msgstr "Tag" -#: ../cache/locales.php:543 +#: [day]monday msgid "Monday" msgstr "Montag" -#: ../cache/locales.php:544 +#: [day]tuesday msgid "Tuesday" msgstr "Dienstag" -#: ../cache/locales.php:545 +#: [day]wednesday msgid "Wednesday" msgstr "Mittwoch" -#: ../cache/locales.php:546 +#: [day]thursday msgid "Thursday" msgstr "Donnerstag" -#: ../cache/locales.php:547 +#: [day]friday msgid "Friday" msgstr "Freitag" -#: ../cache/locales.php:548 +#: [day]saturday msgid "Saturday" msgstr "Samstag" -#: ../cache/locales.php:549 +#: [day]sunday msgid "Sunday" msgstr "Sonntag" -#: ../cache/locales.php:550 ../cache/locales.php:559 +#: [gender]nil +#, fuzzy +msgctxt "[gender]nil" msgid "None" msgstr "Nichts" -#: ../cache/locales.php:551 +#: [gender]male msgid "Male" msgstr "Männlich" -#: ../cache/locales.php:552 +#: [gender]female msgid "Female" msgstr "Weiblich" -#: ../cache/locales.php:553 +#: [gender]other msgid "Other" msgstr "Sonstige" -#: ../cache/locales.php:554 +#: [client]bot msgid "Bot" msgstr "Roboter" -#: ../cache/locales.php:555 +#: [client]desktop msgid "Desktop" msgstr "Schreibtisch" -#: ../cache/locales.php:556 +#: [client]phone msgid "Phone" msgstr "Telefon" -#: ../cache/locales.php:557 +#: [client]web msgid "Web" msgstr "Internet" -#: ../cache/locales.php:558 +#: [client]registered msgid "Registered" msgstr "Registriert" -#: ../cache/locales.php:560 +#: [marital]nil +#, fuzzy +msgctxt "[marital]nil" +msgid "None" +msgstr "Nichts" + +#: [marital]single msgid "Single" msgstr "Single" -#: ../cache/locales.php:561 +#: [marital]relationship msgid "In a relationship" msgstr "In einer Beziehung" -#: ../cache/locales.php:562 +#: [marital]married msgid "Married" msgstr "Verheiratet" -#: ../cache/locales.php:563 +#: [marital]divorced msgid "Divorced" msgstr "Geschieden" -#: ../cache/locales.php:564 +#: [marital]widowed msgid "Widowed" msgstr "Verwitwet" -#: ../cache/locales.php:565 +#: [marital]cohabiting msgid "Cohabiting" msgstr "Wilde Ehe" -#: ../cache/locales.php:566 +#: [marital]union msgid "Civil Union" msgstr "Eingetragene Lebenspartnerschaft" -#: ../cache/locales.php:567 +#: [flag]white msgid "Not shared" msgstr "Nicht geteilt" -#: ../cache/locales.php:568 +#: [flag]green msgid "Shared with one contact" msgstr "Mit einem Kontakt geteilt" -#: ../cache/locales.php:569 +#: [flag]orange msgid "Shared with all contacts" msgstr "Mit allen Kontakten geteilt" -#: ../cache/locales.php:570 +#: [flag]red msgid "Shared with the XMPP network" msgstr "Mit dem XMPP-Netzwerk geteilt" -#: ../cache/locales.php:571 +#: [flag]black msgid "Shared with the whole Internet" msgstr "Mit dem gesamten Internet geteilt" -#: ../cache/locales.php:572 +#: [presence]online msgid "Online" msgstr "Verbunden" -#: ../cache/locales.php:573 +#: [presence]away msgid "Away" msgstr "Abwesend" -#: ../cache/locales.php:574 +#: [presence]dnd msgid "Do Not Disturb" msgstr "Bitte nicht stören" -#: ../cache/locales.php:575 +#: [presence]xa msgid "Extended Away" msgstr "Länger abwesend" -#: ../cache/locales.php:576 +#: [presence]offline msgid "Offline" msgstr "Nicht verbunden" -#: ../cache/locales.php:577 +#: [presence]error msgid "Error" msgstr "Fehler" -#: ../cache/locales.php:578 +#: [mood]afraid msgid "afraid" msgstr "verängstigt" -#: ../cache/locales.php:579 +#: [mood]amazed msgid "amazed" msgstr "begeistert" -#: ../cache/locales.php:580 +#: [mood]amorous msgid "amorous" msgstr "verliebt" -#: ../cache/locales.php:581 +#: [mood]angry msgid "angry" msgstr "wütend" -#: ../cache/locales.php:582 +#: [mood]annoyed msgid "annoyed" msgstr "verärgert" -#: ../cache/locales.php:583 +#: [mood]anxious msgid "anxious" msgstr "besorgt" -#: ../cache/locales.php:584 +#: [mood]aroused msgid "aroused" msgstr "aufgeregt" -#: ../cache/locales.php:585 +#: [mood]ashamed msgid "ashamed" msgstr "beschämt" -#: ../cache/locales.php:586 +#: [mood]bored msgid "bored" msgstr "gelangweilt" -#: ../cache/locales.php:587 +#: [mood]brave msgid "brave" msgstr "tapfer" -#: ../cache/locales.php:588 +#: [mood]calm msgid "calm" msgstr "ruhig" -#: ../cache/locales.php:589 +#: [mood]cautious msgid "cautious" msgstr "vorsichtig" -#: ../cache/locales.php:590 +#: [mood]cold msgid "cold" msgstr "kalt" -#: ../cache/locales.php:591 +#: [mood]confident msgid "confident" msgstr "zuversichtlich" -#: ../cache/locales.php:592 +#: [mood]confused msgid "confused" msgstr "verwirrt" -#: ../cache/locales.php:593 +#: [mood]contemplative msgid "contemplative" msgstr "nachdenklich" -#: ../cache/locales.php:594 +#: [mood]contented msgid "contented" msgstr "glücklich" -#: ../cache/locales.php:595 +#: [mood]cranky msgid "cranky" msgstr "reizbar" -#: ../cache/locales.php:596 +#: [mood]crazy msgid "crazy" msgstr "verrückt" -#: ../cache/locales.php:597 +#: [mood]creative msgid "creative" msgstr "kreativ" -#: ../cache/locales.php:598 +#: [mood]curious msgid "curious" msgstr "neugierig" -#: ../cache/locales.php:599 +#: [mood]dejected msgid "dejected" msgstr "niedergeschlagen" -#: ../cache/locales.php:600 +#: [mood]depressed msgid "depressed" msgstr "bedrückt" -#: ../cache/locales.php:601 +#: [mood]disappointed msgid "disappointed" msgstr "enttäuscht" -#: ../cache/locales.php:602 +#: [mood]disgusted msgid "disgusted" msgstr "angewidert" -#: ../cache/locales.php:603 +#: [mood]dismayed msgid "dismayed" msgstr "bestürzt" -#: ../cache/locales.php:604 +#: [mood]distracted msgid "distracted" msgstr "abgelenkt" -#: ../cache/locales.php:605 +#: [mood]embarrassed msgid "embarrassed" msgstr "verlegen" -#: ../cache/locales.php:606 +#: [mood]envious msgid "envious" msgstr "neidisch" -#: ../cache/locales.php:607 +#: [mood]excited msgid "excited" msgstr "begeistert" -#: ../cache/locales.php:608 +#: [mood]flirtatious msgid "flirtatious" msgstr "kokett" -#: ../cache/locales.php:609 +#: [mood]frustated msgid "frustated" msgstr "frustriert" -#: ../cache/locales.php:610 +#: [mood]grateful msgid "grateful" msgstr "dankbar" -#: ../cache/locales.php:611 +#: [mood]grieving msgid "grieving" msgstr "trauernd" -#: ../cache/locales.php:612 +#: [mood]grumpy msgid "grumpy" msgstr "missmutig" -#: ../cache/locales.php:613 +#: [mood]guilty msgid "guilty" msgstr "schuldbewusst" -#: ../cache/locales.php:614 +#: [mood]happy msgid "happy" msgstr "fröhlich" -#: ../cache/locales.php:615 +#: [mood]hopeful msgid "hopeful" msgstr "hoffnungsvoll" -#: ../cache/locales.php:616 +#: [mood]hot msgid "hot" msgstr "heiß" -#: ../cache/locales.php:617 +#: [mood]humbled msgid "humbled" msgstr "geehrt" -#: ../cache/locales.php:618 +#: [mood]humiliated msgid "humiliated" msgstr "gedemütigt" -#: ../cache/locales.php:619 +#: [mood]hungry msgid "hungry" msgstr "hungrig" -#: ../cache/locales.php:620 +#: [mood]hurt msgid "hurt" msgstr "verletzt" -#: ../cache/locales.php:621 +#: [mood]impressed msgid "impressed" msgstr "beeindruckt" -#: ../cache/locales.php:622 +#: [mood]in_awe msgid "in awe" msgstr "bewundernd" -#: ../cache/locales.php:623 +#: [mood]in_love msgid "in love" msgstr "verliebt" -#: ../cache/locales.php:624 +#: [mood]indignant msgid "indignant" msgstr "empört" -#: ../cache/locales.php:625 +#: [mood]interested msgid "interested" msgstr "interessiert" -#: ../cache/locales.php:626 +#: [mood]intoxicated msgid "intoxicated" msgstr "berauscht" -#: ../cache/locales.php:627 +#: [mood]invincible msgid "invincible" msgstr "unbesiegbar" -#: ../cache/locales.php:628 +#: [mood]jealous msgid "jealous" msgstr "eifersüchtig" -#: ../cache/locales.php:629 +#: [mood]lonely msgid "lonely" msgstr "einsam" -#: ../cache/locales.php:630 +#: [mood]lost msgid "lost" msgstr "verloren" -#: ../cache/locales.php:631 +#: [mood]lucky msgid "lucky" msgstr "Glück gehabt" -#: ../cache/locales.php:632 +#: [mood]mean msgid "mean" msgstr "gemein" -#: ../cache/locales.php:633 +#: [mood]moody msgid "moody" msgstr "mürrisch" -#: ../cache/locales.php:634 +#: [mood]nervous msgid "nervous" msgstr "nervös" -#: ../cache/locales.php:635 +#: [mood]neutral msgid "neutral" msgstr "gleichgültig" -#: ../cache/locales.php:636 +#: [mood]offended msgid "offended" msgstr "beleidigt" -#: ../cache/locales.php:637 +#: [mood]outraged msgid "outraged" msgstr "empört" -#: ../cache/locales.php:638 +#: [mood]playful msgid "playful" msgstr "verspielt" -#: ../cache/locales.php:639 +#: [mood]proud msgid "proud" msgstr "stolz" -#: ../cache/locales.php:640 +#: [mood]relaxed msgid "relaxed" msgstr "entspannt" -#: ../cache/locales.php:641 +#: [mood]relieved msgid "relieved" msgstr "erleichtert" -#: ../cache/locales.php:642 -msgid "remorseful" -msgstr "reumütig" - -#: ../cache/locales.php:643 +#: [mood]restless msgid "restless" msgstr "ruhelos" -#: ../cache/locales.php:644 +#: [mood]sad msgid "sad" msgstr "betrübt" -#: ../cache/locales.php:645 +#: [mood]sarcastic msgid "sarcastic" msgstr "sarkastisch" -#: ../cache/locales.php:646 +#: [mood]satisfied msgid "satisfied" msgstr "zufrieden" -#: ../cache/locales.php:647 +#: [mood]serious msgid "serious" msgstr "ernst" -#: ../cache/locales.php:648 +#: [mood]shocked msgid "shocked" msgstr "schockiert" -#: ../cache/locales.php:649 +#: [mood]shy msgid "shy" msgstr "schüchtern" -#: ../cache/locales.php:650 +#: [mood]sick msgid "sick" msgstr "krank" -#: ../cache/locales.php:651 +#: [mood]sleepy msgid "sleepy" msgstr "schläfrig" -#: ../cache/locales.php:652 +#: [mood]spontaneous msgid "spontaneous" msgstr "spontan" -#: ../cache/locales.php:653 +#: [mood]stressed msgid "stressed" msgstr "gestresst" -#: ../cache/locales.php:654 +#: [mood]strong msgid "strong" msgstr "stark" -#: ../cache/locales.php:655 +#: [mood]surprised msgid "surprised" msgstr "überrascht" -#: ../cache/locales.php:656 +#: [mood]thankful msgid "thankful" msgstr "dankbar" -#: ../cache/locales.php:657 +#: [mood]thirsty msgid "thirsty" msgstr "durstig" -#: ../cache/locales.php:658 +#: [mood]tired msgid "tired" msgstr "müde" -#: ../cache/locales.php:659 +#: [mood]undefined msgid "undefined" msgstr "unbestimmt" -#: ../cache/locales.php:660 +#: [mood]weak msgid "weak" msgstr "schwach" -#: ../cache/locales.php:661 +#: [mood]worried msgid "worried" msgstr "besorgt" -#: ../cache/locales.php:662 +#: [month]title msgid "Month" msgstr "Monat" -#: ../cache/locales.php:663 +#: [month]january msgid "January" msgstr "Januar" -#: ../cache/locales.php:664 +#: [month]february msgid "February" msgstr "Februar" -#: ../cache/locales.php:665 +#: [month]march msgid "March" msgstr "März" -#: ../cache/locales.php:666 +#: [month]april msgid "April" msgstr "April" -#: ../cache/locales.php:667 +#: [month]may msgid "May" msgstr "Mai" -#: ../cache/locales.php:668 +#: [month]june msgid "June" msgstr "Juni" -#: ../cache/locales.php:669 +#: [month]july msgid "July" msgstr "Juli" -#: ../cache/locales.php:670 +#: [month]august msgid "August" msgstr "August" -#: ../cache/locales.php:671 +#: [month]september msgid "September" msgstr "September" -#: ../cache/locales.php:672 +#: [month]october msgid "October" msgstr "Oktober" -#: ../cache/locales.php:673 +#: [month]november msgid "November" msgstr "November" -#: ../cache/locales.php:674 +#: [month]december msgid "December" msgstr "Dezember" -#: ../cache/locales.php:675 +#: [year]title msgid "Year" msgstr "Jahr" -#: ../cache/locales.php:676 +#: [date]today msgid "Today" msgstr "Heute" -#: ../cache/locales.php:677 +#: [date]tomorrow msgid "Tomorrow" msgstr "Morgen" -#: ../cache/locales.php:678 +#: [date]yesterday msgid "Yesterday" msgstr "Gestern" -#: ../cache/locales.php:679 -#, php-format -msgid " %d days ago" +#: [date]ago +#, fuzzy +msgid "%d days ago" msgstr " vor %d Tagen" -#: ../cache/locales.php:680 +#: [date]day msgid "day" msgstr "Tag" -#: ../cache/locales.php:682 +#: [post]whats_new msgid "What's new ?" msgstr "Was gibt's neues?" -#: ../cache/locales.php:683 +#: [post]place msgid "Place" msgstr "Ort" -#: ../cache/locales.php:684 +#: [post]by msgid "by" msgstr "von" -#: ../cache/locales.php:685 +#: [post]geolocalisation msgid "Geolocalisation" msgstr "Standortbestimmung" -#: ../cache/locales.php:686 +#: [post]email msgid "email" msgstr "E-Mail" -#: ../cache/locales.php:688 +#: [post]no_comments msgid "No comments yet" msgstr "Noch keine Kommentare" -#: ../cache/locales.php:689 +#: [post]no_comments_stream msgid "No comments stream" msgstr "Keine Kommentarquelle" -#: ../cache/locales.php:690 +#: [post]no_load msgid "Your feed cannot be loaded." msgstr "Ihr Datenstrom kann nicht geladen werden." -#: ../cache/locales.php:691 +#: [post]older msgid "Get older posts" msgstr "Ältere Beiträge" -#: ../cache/locales.php:692 -#, php-format +#: [post]new_items msgid "%s new items" msgstr "%s neue Einträge" -#: ../cache/locales.php:693 +#: [post]comment_error msgid "Comment publication error" msgstr "Fehler beim Veröffentlichen des Kommentars" -#: ../cache/locales.php:694 +#: [post]comments_older msgid "Show the older comments" msgstr "Ältere Kommentare anzeigen" -#: ../cache/locales.php:695 -msgid "Loading comments ..." +#: [post]comments_loading +#, fuzzy +msgid "Loading comments..." msgstr "Kommentare werden geladen …" -#: ../cache/locales.php:696 +#: [post]comments_get msgid "Get the comments" msgstr "Die Kommentare erhalten" -#: ../cache/locales.php:697 +#: [post]comment_add msgid "Add a comment" msgstr "Einen Kommentar hinzufügen" -#: ../cache/locales.php:698 +#: [post]share msgid "Share with" msgstr "Teilen mit" -#: ../cache/locales.php:699 +#: [post]share_everyone msgid "Everyone" msgstr "Jeder" -#: ../cache/locales.php:700 +#: [post]share_your_contacts msgid "Your contacts" msgstr "Ihre Kontakte" -#: ../cache/locales.php:702 +#: [post]updated msgid "Updated" msgstr "Aktualisiert" -#: ../cache/locales.php:703 +#: [post]content_not_found msgid "Content not found" msgstr "Inhalt nicht gefunden" -#: ../cache/locales.php:704 +#: [post]default_title msgid "Contact publication" msgstr "" -#: ../cache/locales.php:705 +#: [post]comments msgid "Comments" msgstr "Kommentare" -#: ../cache/locales.php:706 +#: [api]error msgid "The API is not reachable, try again later" msgstr "Die API ist nicht erreichbar, bitte später erneut versuchen" -#: ../cache/locales.php:707 +#: [field]type_here msgid "Type here" msgstr "Hier tippen" +#~ msgid "Environment" +#~ msgstr "Umgebung" + +#~ msgid "You can login with Facebook (chat only) using %syour.id@chat.facebook.com%s and your password" +#~ msgstr "Sie können Sich mit Facebook (nur Kurznachrichten) anmelden mit %sihre.identifikation@chat.facebook.com%s und Ihrem Passwort." + +#~ msgid "%sGmail accounts are also compatible%s but are not fully supported" +#~ msgstr "%sGooglemail-Konten werden auch unterstützt%s aber nicht mit vollem Funktionsumfang" + +#~ msgid "You can login using your favorite Jabber account" +#~ msgstr "Sie können sich mit Ihrem liebsten Jabber-Konto anmelden" + +#~ msgid "or with our demonstration account" +#~ msgstr "oder mit unserem Demonstrationskonto" + +#~ msgid "%s has been removed from your public groups" +#~ msgstr "%s wurde aus Ihren öffentlichen Gruppen entfernt" + +#~ msgid "Remove a chatroom" +#~ msgstr "Chatraum löschen" + +#~ msgid "You are going to remove the following chatroom. Please confirm your action." +#~ msgstr "Sie sind dabei den folgenden Chatraum zu löschen. Bitte bestätigen Sie Ihre Handlung." + +#~ msgid "Remote application incompatible" +#~ msgstr "Entfernte Anwendung inkompatibel" + +#~ msgid "Remove" +#~ msgstr "Entfernen" + +#~ msgid "remorseful" +#~ msgstr "reumütig" + #~ msgid "Logout" #~ msgstr "Abmelden" -#, php-format #~ msgid "%s - Account Creation" #~ msgstr "%s – Registrieren" @@ -2693,9 +2817,7 @@ msgstr "Hier tippen" #~ msgstr "Anlegen" #~ msgid "A capital letter, a digit and a special character are recommended" -#~ msgstr "" -#~ "Mindestens jeweils ein Großbuchstabe, eine Ziffer und ein Sonderzeichen " -#~ "werden empfohlen." +#~ msgstr "Mindestens jeweils ein Großbuchstabe, eine Ziffer und ein Sonderzeichen werden empfohlen." #~ msgid "8 characters" #~ msgstr "8 Buchstaben" @@ -2715,41 +2837,29 @@ msgstr "Hier tippen" #~ msgid "talkative" #~ msgstr "gesprächig" -#, php-format #~ msgid "%s - Add An Account" #~ msgstr "%s - Neues Profil anlegen" #~ msgid "I can't find the answer to my question here" #~ msgstr "Meine Frage ist hier nicht aufgelistet" -#, php-format #~ msgid "Contacts (%s)" #~ msgstr "Kontakte (%s)" #~ msgid "Edit my Profile" #~ msgstr "Profil bearbeiten" -#, php-format #~ msgid "Install the %s package" #~ msgstr "%s installieren" -#, php-format #~ msgid "Movim requires the %s extension." #~ msgstr "Movim benötigt die Erweiterung %s." #~ msgid "normal" #~ msgstr "normal" -#~ msgid "" -#~ "Some errors were detected. Please correct them for the installation to " -#~ "proceed." -#~ msgstr "" -#~ "Es wurden Fehler entdeckt. Bitte korrigieren Sie diese, damit die " -#~ "Installation abgeschlossen werden kann." - -#, php-format -#~ msgid "This server hosts %s accounts" -#~ msgstr "Dieser Server beherbergt %s Konten" +#~ msgid "Some errors were detected. Please correct them for the installation to proceed." +#~ msgstr "Es wurden Fehler entdeckt. Bitte korrigieren Sie diese, damit die Installation abgeschlossen werden kann." #~ msgid "Send request" #~ msgstr "Anfrage absenden" @@ -2793,15 +2903,12 @@ msgstr "Hier tippen" #~ msgid "PHP version mismatch. Movim requires PHP 5.3 minimum." #~ msgstr "Falsche PHP-Version. Movim benötigt mindestens PHP 5.3." -#, php-format #~ msgid "Cannot open log file '%s'" #~ msgstr "Protokolldatei »%s« konnte nicht geöffnet werden." -#, php-format #~ msgid "Couldn't create configuration file '%s'." #~ msgstr "Die Konfigurationsdatei »%s« konnte nicht erstellt werden." -#, php-format #~ msgid "Couldn't create directory '%s'." #~ msgstr "Verzeichnis »%s« konnte nicht erstellt werden." @@ -2814,14 +2921,12 @@ msgstr "Hier tippen" #~ msgid "Database Detected" #~ msgstr "Datenbank erkannt" -#, php-format #~ msgid "Please remove the %s folder in order to complete the installation" #~ msgstr "Bitte entfernen Sie den Ordner %s, um die Installation abzuschließen" #~ msgid "Database Movim schema installed" #~ msgstr "Das Datenbankschema Movim wurde installiert" -#, php-format #~ msgid "Cannot load element value '%s'" #~ msgstr "Inhalt des Elementes »%s« kann nicht geladen werden." @@ -2831,103 +2936,56 @@ msgstr "Hier tippen" #~ msgid "Loading your feed ..." #~ msgstr "Ihre Inhalte werden geladen …" -#~ msgid "" -#~ "Your server doesn't support post publication, you can only read contact's " -#~ "feeds" -#~ msgstr "" -#~ "Ihr Server unterstützt keine nachträglichen Veröffentlichungen, Sie können " -#~ "nur die Kontaktdaten lesen." +#~ msgid "Your server doesn't support post publication, you can only read contact's feeds" +#~ msgstr "Ihr Server unterstützt keine nachträglichen Veröffentlichungen, Sie können nur die Kontaktdaten lesen." #~ msgid "Update your PHP version or contact your server administrator" -#~ msgstr "" -#~ "Bitte die PHP-Version aktualisieren oder melden Sie sich beim Systemverwalter" +#~ msgstr "Bitte die PHP-Version aktualisieren oder melden Sie sich beim Systemverwalter" #~ msgid "Enable read and write rights on Movim's root folder" -#~ msgstr "" -#~ "Bitte die Lese- und Schreibrechte in dem Ordner aktivieren, in dem Sie Movim " -#~ "entpackt haben" +#~ msgstr "Bitte die Lese- und Schreibrechte in dem Ordner aktivieren, in dem Sie Movim entpackt haben" -#~ msgid "" -#~ "Keep in mind that Movim is still under development and will handle many " -#~ "personal details. Its use can potentially endanger your data. Always pay " -#~ "attention to information that you submit." -#~ msgstr "" -#~ "Bitte beachten, dass Movim noch im Entwicklungsstadium ist. Es behandelt " -#~ "viele persönliche Daten und könnte diese eventuell gefährden. Bitte achten " -#~ "Sie darauf, welche Informationen Sie bei Movim eingeben." +#~ msgid "Keep in mind that Movim is still under development and will handle many personal details. Its use can potentially endanger your data. Always pay attention to information that you submit." +#~ msgstr "Bitte beachten, dass Movim noch im Entwicklungsstadium ist. Es behandelt viele persönliche Daten und könnte diese eventuell gefährden. Bitte achten Sie darauf, welche Informationen Sie bei Movim eingeben." #~ msgid "Movim Installer" #~ msgstr "Movim-Installationsprogramm" -#~ msgid "" -#~ "The following requirements were not met. Please make sure they are all " -#~ "satisfied in order to install Movim." -#~ msgstr "" -#~ "Die folgenden Voraussetzungen sind nicht erfüllt. Bitte stellen Sie sicher, " -#~ "dass alle erfüllt sind, um Movim zu installieren." +#~ msgid "The following requirements were not met. Please make sure they are all satisfied in order to install Movim." +#~ msgstr "Die folgenden Voraussetzungen sind nicht erfüllt. Bitte stellen Sie sicher, dass alle erfüllt sind, um Movim zu installieren." -#, php-format #~ msgid "You can now access your shiny Movim instance %sJump In !%s" -#~ msgstr "" -#~ "Sie können jetzt Ihre nagelneue Movim-Instanz betreten. %sAuf geht's!%s" +#~ msgstr "Sie können jetzt Ihre nagelneue Movim-Instanz betreten. %sAuf geht's!%s" -#, php-format #~ msgid "Install %s and %s packages" #~ msgstr "Pakete %s und %s installieren" #~ msgid "Movim's folder must be writable." #~ msgstr "Der Movim-Ordner muss Schreibrechte besitzen." -#, php-format -#~ msgid "" -#~ "Go to the %s to the Frequently Asked Questions %s or come ask your question " -#~ "on the official chatroom %s or via our mailing-list (%s see the dedicated " -#~ "page %s)." -#~ msgstr "" -#~ "Zu den %s häufig gestellten Fragen %s gehen oder in unserem offiziellen " -#~ "Chatraum %s eine Frage stellen oder über unsere Verteilerliste (%s weitere " -#~ "Informationen %s)" +#~ msgid "Go to the %s to the Frequently Asked Questions %s or come ask your question on the official chatroom %s or via our mailing-list (%s see the dedicated page %s)." +#~ msgstr "Zu den %s häufig gestellten Fragen %s gehen oder in unserem offiziellen Chatraum %s eine Frage stellen oder über unsere Verteilerliste (%s weitere Informationen %s)" -#, php-format #~ msgid "jid '%s' is incorrect" #~ msgstr "JID »%s« ist falsch" -#, php-format #~ msgid "Bosh connection failed with error '%s'" #~ msgstr "Verbindung zu BOSH ist fehlgeschlagen. Fehler: »%s«" -#, php-format #~ msgid "Database connection failed with error '%s'" #~ msgstr "Datenbankverbindung ist fehlgeschlagen. Fehler: »%s«" -#, php-format #~ msgid "XMPP connection through Bosh failed with error '%s'" #~ msgstr "XMPP-Verbindung über BOSH ist fehlgeschlagen. Fehler: »%s«" -#~ msgid "" -#~ "Some features are missing/I can't do everything I used to do on other social " -#~ "networks" -#~ msgstr "" -#~ "Manche Funktionen fehlen, Ich kann nicht alles tun, was ich von anderen " -#~ "sozialen Netzwerken gewohnt bin." +#~ msgid "Some features are missing/I can't do everything I used to do on other social networks" +#~ msgstr "Manche Funktionen fehlen, Ich kann nicht alles tun, was ich von anderen sozialen Netzwerken gewohnt bin." -#, php-format -#~ msgid "" -#~ "Although Movim is evolving fast, many (many) features are missing. Be " -#~ "patient ;). You can have a look %s at next versions's roadmaps %s to know if " -#~ "the one you want is on its way." -#~ msgstr "" -#~ "Obwohl sich Movim schnell entwickelt, fehlen noch viele Funktionen. Haben " -#~ "Sie Geduld ;). Sie können auf dem %s Fahrplan der nächsten Version %s sehen, " -#~ "um nachzusehen, ob das was Sie wollen schon auf dem Weg ist." +#~ msgid "Although Movim is evolving fast, many (many) features are missing. Be patient ;). You can have a look %s at next versions's roadmaps %s to know if the one you want is on its way." +#~ msgstr "Obwohl sich Movim schnell entwickelt, fehlen noch viele Funktionen. Haben Sie Geduld ;). Sie können auf dem %s Fahrplan der nächsten Version %s sehen, um nachzusehen, ob das was Sie wollen schon auf dem Weg ist." -#, php-format -#~ msgid "" -#~ "Don't forget that Movim is an open source project, a helping hand is always " -#~ "welcome (see %s Can I participate %s)" -#~ msgstr "" -#~ "Bitte nicht vergessen, dass Movim ein quelloffenes Anwendungsprojekt ist. " -#~ "Helfende Hände sind immer willkommen. (%s Mithelfen %s)" +#~ msgid "Don't forget that Movim is an open source project, a helping hand is always welcome (see %s Can I participate %s)" +#~ msgstr "Bitte nicht vergessen, dass Movim ein quelloffenes Anwendungsprojekt ist. Helfende Hände sind immer willkommen. (%s Mithelfen %s)" #~ msgid "wants to talk with you" #~ msgstr "möchte mit Ihnen sprechen" @@ -2938,11 +2996,8 @@ msgstr "Hier tippen" #~ msgid "Thank you for downloading Movim!" #~ msgstr "Vielen Dank, dass Sie Movim heruntergeladen haben." -#~ msgid "" -#~ "Before you enjoy your social network, a few adjustements are required." -#~ msgstr "" -#~ "Bevor Sie Ihr soziales Netzwerk betreten können, müssen Sie noch ein paar " -#~ "Dinge einstellen." +#~ msgid "Before you enjoy your social network, a few adjustements are required." +#~ msgstr "Bevor Sie Ihr soziales Netzwerk betreten können, müssen Sie noch ein paar Dinge einstellen." #~ msgid "XMPP Connection Preferences" #~ msgstr "XMPP-Verbindungseinstellungen" @@ -2953,12 +3008,8 @@ msgstr "Hier tippen" #~ msgid "Proxy Preferences" #~ msgstr "Proxy-Server-Einstellungen" -#~ msgid "" -#~ "Firstly fill in this blank with a brand new account ID, this address will " -#~ "follow you on all the Movim network !" -#~ msgstr "" -#~ "Zunächst bitte dieses freie Feld mit einer nagelneuen Adresse ausfüllen. " -#~ "Diese begleitet Sie überall im Movim-Netzwerk." +#~ msgid "Firstly fill in this blank with a brand new account ID, this address will follow you on all the Movim network !" +#~ msgstr "Zunächst bitte dieses freie Feld mit einer nagelneuen Adresse ausfüllen. Diese begleitet Sie überall im Movim-Netzwerk." #~ msgid "Make sure your password is safe :" #~ msgstr "Ein sicheres Passwort eingeben:" @@ -2969,13 +3020,8 @@ msgstr "Hier tippen" #~ msgid "Client Type" #~ msgstr "Programmtyp" -#, php-format -#~ msgid "" -#~ "Visit the page %s What is Movim ? %s to know more about the project, its " -#~ "aims and understand how it works." -#~ msgstr "" -#~ "Besuche Sie die Seite %s Was ist Movim? %s, um mehr über das Projekt, seine " -#~ "Ziele und die technische Seite zu erfahren." +#~ msgid "Visit the page %s What is Movim ? %s to know more about the project, its aims and understand how it works." +#~ msgstr "Besuche Sie die Seite %s Was ist Movim? %s, um mehr über das Projekt, seine Ziele und die technische Seite zu erfahren." #~ msgid "The current BOSH URL in invalid" #~ msgstr "Die aktuelle BOSH-Adresse ist ungültig" diff --git a/sources/locales/el.po b/sources/locales/el.po index 3480921..e8dc45c 100644 --- a/sources/locales/el.po +++ b/sources/locales/el.po @@ -1,2593 +1,2718 @@ # Greek translations for Movim package. # This file is distributed under the same license as the Movim package. # This file was translated from CodingTeam at . +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/About/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Account/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AccountNext/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AdHoc/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AdminDB/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AdminMain/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AdminTest/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Api/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Avatar/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Blog/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Bookmark/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Chat/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Chats/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/ConfigData/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Config/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Contact/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Group/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Groups/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Header/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Hello/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Help/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Init/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Location/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/LoginAnonymous/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Login/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Menu/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/NodeAffiliations/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/NodeSubscriptions/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Notifs/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Post/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Presence/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Publish/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/PubsubSubscriptionConfig/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Rooms/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Roster/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Share/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Statistics/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Subscribe/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Syndication/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Upload/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Vcard4/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/VisioExt/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Visio/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../locales/locales.ini msgid "" msgstr "" "Project-Id-Version: Movim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-06-08 22:06+0200\n" +"POT-Creation-Date: 2015-08-20 15:17+0200\n" "PO-Revision-Date: 2013-12-07 17:27+0000\n" "Last-Translator: aitolos \n" "Language-Team: LANGUAGE \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2015-06-18 21:08+0000\n" "X-Generator: Launchpad (build 17570)\n" -"Language: \n" -#: ../cache/locales.php:2 +#: [about]thanks msgid "Thanks" msgstr "" -#: ../cache/locales.php:3 +#: [about]developers msgid "Developers" msgstr "" -#: ../cache/locales.php:4 +#: [about]translators msgid "Translators" msgstr "" -#: ../cache/locales.php:5 +#: [about]software msgid "Software" msgstr "" -#: ../cache/locales.php:6 +#: [about]resources msgid "Resources" msgstr "" -#: ../cache/locales.php:7 ../cache/locales.php:83 ../cache/locales.php:85 +#: [about]api [schema]api [api]title msgid "API" msgstr "" -#: ../cache/locales.php:8 -msgid "" -"Movim is an XMPP-based communication platform. All the project, except the " -"following software and resources, is under" +#: [about]info +msgid "Movim is an XMPP-based communication platform. All the project, except the following software and resources, is under" msgstr "" -#: ../cache/locales.php:9 +#: [account]title msgid "Account" msgstr "" -#: ../cache/locales.php:10 -msgid "The password has been updated" -msgstr "" +#: [account]password_change_title +#, fuzzy +msgid "Change my password" +msgstr "Λανθασμένος κωδικός" -#: ../cache/locales.php:11 -msgid "Please provide a valid password (6 characters minimum)" -msgstr "" - -#: ../cache/locales.php:12 -msgid "The provided passwords are not the same" -msgstr "" - -#: ../cache/locales.php:13 -msgid "Delete my account" -msgstr "" - -#: ../cache/locales.php:14 -msgid "" -"You will delete your XMPP account and all the relative information linked to " -"it (profile, contacts and publications)." -msgstr "" - -#: ../cache/locales.php:15 -msgid "Are you sure that you want to delete it ?" -msgstr "" - -#: ../cache/locales.php:16 ../cache/locales.php:411 -msgid "Create a new account" -msgstr "Δημιουργία νέου λογαριασμού" - -#: ../cache/locales.php:17 -msgid "No account creation form found on the server" -msgstr "" - -#: ../cache/locales.php:18 ../cache/locales.php:172 -msgid "on" -msgstr "" - -#: ../cache/locales.php:19 -msgid "Your acccount has been successfully registered" -msgstr "" - -#: ../cache/locales.php:20 -msgid "Loading" -msgstr "" - -#: ../cache/locales.php:21 -msgid "Not Acceptable" -msgstr "" - -#: ../cache/locales.php:22 -msgid "The registration system of this server is currently unavailable" -msgstr "" - -#: ../cache/locales.php:23 -msgid "" -"This server use an external system for the registration, please click on the " -"following URL." -msgstr "" - -#: ../cache/locales.php:24 -msgid "Actions" -msgstr "" - -#: ../cache/locales.php:25 ../cache/locales.php:82 -msgid "Database" -msgstr "" - -#: ../cache/locales.php:26 -msgid "Modl wasn't able to connect to the database" -msgstr "" - -#: ../cache/locales.php:27 -msgid "Movim is connected to the database" -msgstr "" - -#: ../cache/locales.php:28 -msgid "The database need to be updated" -msgstr "" - -#: ../cache/locales.php:29 -msgid "Movim database is up to date" -msgstr "" - -#: ../cache/locales.php:30 -msgid "Database Type" -msgstr "" - -#: ../cache/locales.php:31 ../cache/locales.php:50 ../cache/locales.php:540 -msgid "Username" -msgstr "" - -#: ../cache/locales.php:32 ../cache/locales.php:51 ../cache/locales.php:282 -#: ../cache/locales.php:541 +#: [account]password [db]password [credentials]password [form]password +#: [input]password msgid "Password" msgstr "Συνθηματικό" -#: ../cache/locales.php:33 +#: [account]password_confirmation +#, fuzzy +msgid "Password confirmation" +msgstr "%s - Ρύθμιση" + +#: [account]password_changed +msgid "The password has been updated" +msgstr "" + +#: [account]password_not_valid +msgid "Please provide a valid password (6 characters minimum)" +msgstr "" + +#: [account]password_not_same +msgid "The provided passwords are not the same" +msgstr "" + +#: [account]delete_title +msgid "Delete my account" +msgstr "" + +#: [account]delete +#, fuzzy +msgid "Delete your account" +msgstr "Δημιουργία νέου λογαριασμού" + +#: [account]delete_text +msgid "You will delete your XMPP account and all the relative information linked to it (profile, contacts and publications)." +msgstr "" + +#: [account]delete_text_confirm +msgid "Are you sure that you want to delete it ?" +msgstr "" + +#: [account]gateway_title +msgid "Gateway" +msgstr "" + +#: [create]title [subscribe]title +msgid "Create a new account" +msgstr "Δημιουργία νέου λογαριασμού" + +#: [create]notfound +msgid "No account creation form found on the server" +msgstr "" + +#: [create]server_on +msgid "on" +msgstr "" + +#: [create]successfull +msgid "Your acccount has been successfully registered" +msgstr "" + +#: [create]loading +msgid "Loading" +msgstr "" + +#: [error]not_acceptable +msgid "Not Acceptable" +msgstr "" + +#: [error]service_unavailable +msgid "The registration system of this server is currently unavailable" +msgstr "" + +#: [oob]about +msgid "This server use an external system for the registration, please click on the following URL." +msgstr "" + +#: [adhoc]title +msgid "Actions" +msgstr "" + +#: [db]legend [schema]database +msgid "Database" +msgstr "" + +#: [db]connect_error +msgid "Modl wasn't able to connect to the database" +msgstr "" + +#: [db]connect_success +msgid "Movim is connected to the database" +msgstr "" + +#: [db]update +msgid "The database need to be updated" +msgstr "" + +#: [db]up_to_date +msgid "Movim database is up to date" +msgstr "" + +#: [db]type +msgid "Database Type" +msgstr "" + +#: [db]username [credentials]username [input]username +msgid "Username" +msgstr "" + +#: [db]host msgid "Host" msgstr "" -#: ../cache/locales.php:34 +#: [db]port msgid "Port" msgstr "" -#: ../cache/locales.php:35 -msgid "Database Name" -msgstr "" +#: [db]name +#, fuzzy +msgid "Database sName" +msgstr "Εντοπίστηκε βάση δεδομένων" -#: ../cache/locales.php:36 +#: [admin]general msgid "General Settings" msgstr "" -#: ../cache/locales.php:37 +#: [general]theme msgid "Theme" msgstr "" -#: ../cache/locales.php:38 +#: [general]language msgid "Default language" msgstr "" -#: ../cache/locales.php:39 -msgid "Environment" -msgstr "" - -#: ../cache/locales.php:40 +#: [general]log_verbosity msgid "Log verbosity" msgstr "" -#: ../cache/locales.php:41 +#: [general]timezone msgid "Server Timezone" msgstr "" -#: ../cache/locales.php:42 +#: [general]limit msgid "User folder size limit (in bytes)" msgstr "" -#: ../cache/locales.php:43 +#: [websocket]title msgid "WebSocket Configuration" msgstr "" -#: ../cache/locales.php:44 +#: [websocket]info msgid "Enter here a valid WebSocket URI in the form" msgstr "" -#: ../cache/locales.php:45 +#: [websocket]label msgid "WebSocket URI" msgstr "" -#: ../cache/locales.php:46 -msgid "" -"If you change the URI, please restart the daemon to reload the configuration" +#: [websocket]save_info +msgid "If you change the URI, please restart the daemon to reload the configuration" msgstr "" -#: ../cache/locales.php:47 +#: [websocket]publics msgid "Public WebSockets" msgstr "" -#: ../cache/locales.php:48 +#: [credentials]title msgid "Administration Credential" msgstr "" -#: ../cache/locales.php:49 +#: [credentials]info msgid "Change the default credentials admin/password" msgstr "" -#: ../cache/locales.php:52 +#: [credentials]re_password msgid "Retype password" msgstr "" -#: ../cache/locales.php:53 +#: [whitelist]title msgid "Whitelist - XMPP Server" msgstr "" -#: ../cache/locales.php:54 -msgid "" -"If you want to specify a list of authorized XMPP servers on your Movim pod " -"and forbid the connection on all the others please put their domain name " -"here, with comma (ex: movim.eu,jabber.fr)" +#: [whitelist]info1 +msgid "If you want to specify a list of authorized XMPP servers on your Movim pod and forbid the connection on all the others please put their domain name here, with comma (ex: movim.eu,jabber.fr)" msgstr "" -#: ../cache/locales.php:55 -msgid "" -"Leave this field blank if you allow the access to all the XMPP accounts." +#: [whitelist]info2 +msgid "Leave this field blank if you allow the access to all the XMPP accounts." msgstr "" -#: ../cache/locales.php:56 +#: [whitelist]label msgid "List of whitelisted XMPP servers" msgstr "" -#: ../cache/locales.php:57 ../cache/locales.php:61 +#: [information]title +#, fuzzy +msgctxt "[information]title" msgid "Information Message" -msgstr "" +msgstr "Γενικές πληροφορίες" -#: ../cache/locales.php:58 +#: [information]description msgid "Description" msgstr "" -#: ../cache/locales.php:59 +#: [information]info1 msgid "This message will be displayed on the login page" msgstr "" -#: ../cache/locales.php:60 -msgid "Leave this field blank if you don't want to show any message." +#: [information]info2 +msgid "Leave this field blank if you dont want to show any message." msgstr "" -#: ../cache/locales.php:62 +#: [information]label +#, fuzzy +msgctxt "[information]label" +msgid "Information Message" +msgstr "Γενικές πληροφορίες" + +#: [log]empty msgid "Empty" msgstr "" -#: ../cache/locales.php:63 +#: [log]syslog msgid "Syslog" msgstr "" -#: ../cache/locales.php:64 +#: [log]syslog_files msgid "Syslog and files" msgstr "" -#: ../cache/locales.php:65 +#: [rewrite]title msgid "URL Rewriting" msgstr "" -#: ../cache/locales.php:66 +#: [rewrite]info msgid "The URL Rewriting can be enabled" msgstr "" -#: ../cache/locales.php:67 +#: [admin]compatibility msgid "General Overview" msgstr "" -#: ../cache/locales.php:68 -msgid "" -"Movim has found some issues or things that need to be fixed or improved" +#: [compatibility]info +msgid "Movim has found some issues or things that need to be fixed or improved" msgstr "" -#: ../cache/locales.php:69 -#, php-format +#: [compatibility]php1 msgid "Update your PHP-Version: %s" msgstr "" -#: ../cache/locales.php:70 +#: [compatibility]php2 msgid "Required: 5.3.0" msgstr "" -#: ../cache/locales.php:71 +#: [compatibility]curl msgid "Install the php5-curl library" msgstr "" -#: ../cache/locales.php:72 +#: [compatibility]imagick msgid "Install the php5-imagick library" msgstr "" -#: ../cache/locales.php:73 +#: [compatibility]gd msgid "Install the php5-gd library" msgstr "" -#: ../cache/locales.php:74 -msgid "Read and write rights for the webserver in Movim's root directory" +#: [compatibility]rights +msgid "Read and write rights for the webserver in Movims root directory" msgstr "" -#: ../cache/locales.php:75 +#: [compatibility]rewrite msgid "The URL Rewriting support is currently disabled" msgstr "" -#: ../cache/locales.php:76 +#: [compatibility]db msgid "The database need to be updated, go to the database panel to fix this" msgstr "" -#: ../cache/locales.php:77 -msgid "" -"WebSocket connection error, check if the Movim Daemon is running and is " -"reacheable" +#: [compatibility]websocket +msgid "WebSocket connection error, check if the Movim Daemon is running and is reachable" msgstr "" -#: ../cache/locales.php:78 -msgid "" -"XMPP Websocket connection error, please check the validity of the URL given " -"in the General Configuration" +#: [compatibility]xmpp_websocket +msgid "XMPP Websocket connection error, please check the validity of the URL given in the General Configuration" msgstr "" -#: ../cache/locales.php:79 +#: [schema]browser msgid "Browser" msgstr "" -#: ../cache/locales.php:80 +#: [schema]movim msgid "Movim Core" msgstr "" -#: ../cache/locales.php:81 +#: [schema]daemon msgid "Movim Daemon" msgstr "" -#: ../cache/locales.php:84 +#: [schema]xmpp msgid "XMPP" msgstr "" -#: ../cache/locales.php:86 -#, php-format -msgid "" -"Here you can register your pod on the official %sMovim API%s and be listed " -"on %sthe pods page%s." +#: [api]info +msgid "Here you can register your pod on the official %sMovim API%s and be listed on %sthe pods page%s." msgstr "" -#: ../cache/locales.php:87 +#: [api]register msgid "Your pod is not registered on the API" msgstr "" -#: ../cache/locales.php:88 +#: [api]registered msgid "Your pod is registered on the API" msgstr "" -#: ../cache/locales.php:89 +#: [api]wait msgid "Your pod is not yet validated" msgstr "" -#: ../cache/locales.php:90 +#: [api]validated msgid "Your pod is validated" msgstr "" -#: ../cache/locales.php:91 -msgid "" -"You asked to be removed from the API, this request will be processed in a " -"couple of hours" +#: [api]unregister +msgid "You asked to be removed from the API, this request will be processed in a couple of hours" msgstr "" -#: ../cache/locales.php:92 ../cache/locales.php:147 +#: [api]conf_updated [config]updated msgid "Configuration updated" msgstr "" -#: ../cache/locales.php:93 +#: [avatar]file msgid "File" msgstr "" -#: ../cache/locales.php:94 +#: [avatar]use_it msgid "Use it" msgstr "" -#: ../cache/locales.php:95 +#: [avatar]webcam msgid "Webcam" msgstr "" -#: ../cache/locales.php:96 +#: [avatar]cheese msgid "Cheese !" msgstr "" -#: ../cache/locales.php:97 +#: [avatar]snapshot msgid "Take a webcam snapshot" msgstr "" -#: ../cache/locales.php:98 +#: [avatar]updated msgid "Avatar Updated" msgstr "" -#: ../cache/locales.php:99 +#: [avatar]not_updated msgid "Avatar Not Updated" msgstr "" -#: ../cache/locales.php:100 ../cache/locales.php:415 -#, php-format +#: [blog]title [feed]title msgid "%s's feed" msgstr "" -#: ../cache/locales.php:101 +#: [blog]empty msgid "This user has not posted anything right now" msgstr "" -#: ../cache/locales.php:102 +#: [title]conferences msgid "Conferences" msgstr "" -#: ../cache/locales.php:103 ../cache/locales.php:193 ../cache/locales.php:217 -#: ../cache/locales.php:468 +#: [title]groups [group]empty_title [menu]groups [page]groups msgid "Groups" msgstr "" -#: ../cache/locales.php:104 +#: [chatroom]add msgid "Add a new Chat Room" msgstr "" -#: ../cache/locales.php:105 ../cache/locales.php:368 +#: [chatroom]id [chatrooms]id msgid "Chat Room ID" msgstr "" -#: ../cache/locales.php:106 ../cache/locales.php:116 ../cache/locales.php:156 -#: ../cache/locales.php:361 ../cache/locales.php:369 ../cache/locales.php:424 +#: [chatroom]name +#, fuzzy +msgctxt "[chatroom]name" msgid "Name" msgstr "Όνομα" -#: ../cache/locales.php:107 ../cache/locales.php:157 ../cache/locales.php:371 -#: ../cache/locales.php:425 +#: [chatroom]nickname [general]nickname [chatrooms]nickname msgid "Nickname" msgstr "Ψευδώνυμο" -#: ../cache/locales.php:108 +#: [chatroom]autojoin_label msgid "Do you want do join automaticaly this Chat Room ?" msgstr "" -#: ../cache/locales.php:109 ../cache/locales.php:372 +#: [chatroom]bad_id [chatrooms]bad_id msgid "Bad Chatroom ID" msgstr "" -#: ../cache/locales.php:110 ../cache/locales.php:373 +#: [chatroom]empty_name [chatrooms]empty_name msgid "Empty name" msgstr "" -#: ../cache/locales.php:111 ../cache/locales.php:380 +#: [bookmarks]updated msgid "Bookmarks updated" msgstr "" -#: ../cache/locales.php:112 -msgid "An error occured : " +#: [bookmarks]error +msgid "An error occured :" msgstr "" -#: ../cache/locales.php:113 +#: [bookmarks]configure msgid "Configure" msgstr "" -#: ../cache/locales.php:114 +#: [url]add msgid "Add a new URL" msgstr "" -#: ../cache/locales.php:115 +#: [url]url msgid "URL" msgstr "" -#: ../cache/locales.php:117 +#: [url]name +#, fuzzy +msgctxt "[url]name" +msgid "Name" +msgstr "Όνομα" + +#: [message]published msgid "Message Published" msgstr "" -#: ../cache/locales.php:118 ../cache/locales.php:138 +#: [message]encrypted msgid "Encrypted message" msgstr "" -#: ../cache/locales.php:119 +#: [message]composing [chats]composing msgid "Composing..." msgstr "Συνθέτοντας..." -#: ../cache/locales.php:120 +#: [message]paused [chats]paused msgid "Paused..." msgstr "" -#: ../cache/locales.php:121 +#: [message]gone msgid "Contact gone" msgstr "" -#: ../cache/locales.php:122 -#, php-format +#: [chat]attention msgid "%s needs your attention" msgstr "" -#: ../cache/locales.php:123 +#: [chat]placeholder msgid "Your message here..." msgstr "" -#: ../cache/locales.php:124 +#: [chat]smileys msgid "Smileys" msgstr "" -#: ../cache/locales.php:125 ../cache/locales.php:139 +#: [chat]empty_title [button]chat msgid "Chat" msgstr "Συνομιλία" -#: ../cache/locales.php:126 +#: [chat]empty_text msgid "Discuss with your contacts" msgstr "" -#: ../cache/locales.php:127 -msgid "Members" -msgstr "" - -#: ../cache/locales.php:128 ../cache/locales.php:376 -msgid "Connected to the chatroom" -msgstr "" - -#: ../cache/locales.php:129 ../cache/locales.php:377 -msgid "Disconnected from the chatroom" -msgstr "" - -#: ../cache/locales.php:130 ../cache/locales.php:200 ../cache/locales.php:469 -msgid "Configuration" -msgstr "Ρύθμιση" - -#: ../cache/locales.php:131 -msgid "Configuration saved" -msgstr "" - -#: ../cache/locales.php:132 -msgid "Subject" -msgstr "" - -#: ../cache/locales.php:133 -msgid "Subject changed" -msgstr "" - -#: ../cache/locales.php:134 -msgid "Open a new conversation by clicking on the plus button bellow" -msgstr "" - -#: ../cache/locales.php:135 -msgid "Chat with a contact" -msgstr "" - -#: ../cache/locales.php:136 +#: [chat]frequent [chats]frequent msgid "Frequent contacts" msgstr "" -#: ../cache/locales.php:137 +#: [chatroom]members +msgid "Members" +msgstr "" + +#: [chatroom]connected [chatrooms]connected +msgid "Connected to the chatroom" +msgstr "" + +#: [chatroom]disconnected [chatrooms]disconnected +msgid "Disconnected from the chatroom" +msgstr "" + +#: [chatroom]config [group]configuration [page]configuration +msgid "Configuration" +msgstr "Ρύθμιση" + +#: [chatroom]config_saved +msgid "Configuration saved" +msgstr "" + +#: [chatroom]subject +msgid "Subject" +msgstr "" + +#: [chatroom]subject_changed +msgid "Subject changed" +msgstr "" + +#: [chats]empty_title +msgid "No chats yet..." +msgstr "" + +#: [chats]empty +msgid "Open a new conversation by clicking on the plus button bellow or visit the Contacts page." +msgstr "" + +#: [chats]add +msgid "Chat with a contact" +msgstr "" + +#: [chats]more msgid "Load more contacts" msgstr "" -#: ../cache/locales.php:140 -msgid "General" -msgstr "" - -#: ../cache/locales.php:141 -msgid "Language" -msgstr "Γλώσσα" - -#: ../cache/locales.php:142 -msgid "Roster display" -msgstr "" - -#: ../cache/locales.php:143 -msgid "Show the offline contacts" -msgstr "" - -#: ../cache/locales.php:144 -msgid "Hide the offline contacts" -msgstr "" - -#: ../cache/locales.php:145 -msgid "Appearence" -msgstr "" - -#: ../cache/locales.php:146 -msgid "This configuration is shared wherever you are connected !" -msgstr "" - -#: ../cache/locales.php:148 -msgid "Notify on incoming message" -msgstr "" - -#: ../cache/locales.php:149 -msgid "Use desktop notifications" -msgstr "" - -#: ../cache/locales.php:150 +#: [title]data msgid "Data" msgstr "" -#: ../cache/locales.php:151 +#: [title]cache msgid "Cache" msgstr "" -#: ../cache/locales.php:152 ../cache/locales.php:218 ../cache/locales.php:466 +#: [title]contacts [menu]contacts [page]contacts msgid "Contacts" msgstr "" -#: ../cache/locales.php:153 ../cache/locales.php:480 +#: [title]posts [page]posts msgid "Posts" msgstr "" -#: ../cache/locales.php:154 +#: [title]messages msgid "Messages" msgstr "" -#: ../cache/locales.php:155 ../cache/locales.php:423 +#: [config]general +msgid "General" +msgstr "" + +#: [config]language +msgid "Language" +msgstr "Γλώσσα" + +#: [config]roster +msgid "Roster display" +msgstr "" + +#: [config]roster_show +msgid "Show the offline contacts" +msgstr "" + +#: [config]roster_hide +msgid "Hide the offline contacts" +msgstr "" + +#: [config]appearence +msgid "Appearence" +msgstr "" + +#: [config]info +msgid "This configuration is shared wherever you are connected" +msgstr "" + +#: [notifications]message +msgid "Notify on incoming message" +msgstr "" + +#: [notifications]desktop +msgid "Use desktop notifications" +msgstr "" + +#: [general]legend [general]general_title msgid "General Informations" msgstr "Γενικές πληροφορίες" -#: ../cache/locales.php:158 ../cache/locales.php:427 +#: [general]name [public_groups]name [chatrooms]name +msgid "Name" +msgstr "Όνομα" + +#: [general]date_of_birth msgid "Date of Birth" msgstr "Ημερομ. γεννήσεως" -#: ../cache/locales.php:159 ../cache/locales.php:428 +#: [general]gender msgid "Gender" msgstr "" -#: ../cache/locales.php:160 ../cache/locales.php:429 +#: [general]marital msgid "Marital Status" msgstr "" -#: ../cache/locales.php:161 ../cache/locales.php:426 +#: [general]email msgid "Email" msgstr "" -#: ../cache/locales.php:162 ../cache/locales.php:430 +#: [general]website msgid "Website" msgstr "Ιστότοπος" -#: ../cache/locales.php:163 ../cache/locales.php:431 +#: [general]about msgid "About Me" msgstr "" -#: ../cache/locales.php:164 +#: [general]accounts msgid "Other Accounts" msgstr "" -#: ../cache/locales.php:165 +#: [general]tune msgid "Is Listening" msgstr "" -#: ../cache/locales.php:166 ../cache/locales.php:432 +#: [position]legend [position]position_title msgid "Geographic Position" msgstr "" -#: ../cache/locales.php:167 ../cache/locales.php:433 +#: [position]locality msgid "Locality" msgstr "" -#: ../cache/locales.php:168 ../cache/locales.php:434 +#: [position]country msgid "Country" msgstr "" -#: ../cache/locales.php:169 +#: [mood]title msgid "Mood" msgstr "" -#: ../cache/locales.php:170 +#: [mood]im msgid "I'm " msgstr "" -#: ../cache/locales.php:171 +#: [listen]title msgid "Listening" msgstr "" -#: ../cache/locales.php:173 +#: [last]title msgid "Last seen" msgstr "" -#: ../cache/locales.php:174 +#: [client]title msgid "Client Informations" msgstr "" -#: ../cache/locales.php:175 +#: [explore]last_registered msgid "Last registered" msgstr "" -#: ../cache/locales.php:176 +#: [explore]explore msgid "Find some new friends" msgstr "" -#: ../cache/locales.php:177 ../cache/locales.php:533 +#: [edit]title [button]edit msgid "Edit" msgstr "" -#: ../cache/locales.php:178 +#: [edit]alias msgid "Alias" msgstr "Ψευδώνυμο" -#: ../cache/locales.php:179 +#: [edit]group msgid "Group" msgstr "" -#: ../cache/locales.php:180 ../cache/locales.php:400 +#: [edit]updated [roster]updated msgid "Contact updated" msgstr "" -#: ../cache/locales.php:181 +#: [delete]title msgid "Are you sure?" msgstr "" -#: ../cache/locales.php:182 -msgid "" -"You are going to delete one of your contacts, please confirm your action" +#: [delete]text +msgid "You are going to delete one of your contacts, please confirm your action" msgstr "" -#: ../cache/locales.php:183 -#, php-format +#: [age]years msgid "%s years" msgstr "" -#: ../cache/locales.php:184 +#: [blog]last msgid "Last public post" msgstr "" -#: ../cache/locales.php:185 +#: [subscription]to +#, fuzzy +msgid "You can see this contact status" +msgstr "Διαγραφή αυτής της επαφής" + +#: [subscription]to_button +msgid "Share my status" +msgstr "" + +#: [subscription]to_text +msgid "But this contact cannot see yours" +msgstr "" + +#: [subscription]from +msgid "You are not subscribed to this contact" +msgstr "" + +#: [subscription]from_button +msgid "Ask to subscribe" +msgstr "" + +#: [subscription]from_text +msgid "But this contact can still see if you are online" +msgstr "" + +#: [subscription]nil +msgid "No subscriptions" +msgstr "" + +#: [subscription]nil_button +msgid "Invite" +msgstr "" + +#: [subscription]nil_text +msgid "This contact is in your contact list but there is no subscriptions between the two accounts" +msgstr "" + +#: [group]subscribe msgid "Subscribe" msgstr "" -#: ../cache/locales.php:186 +#: [group]subscribed msgid "Subscribed" msgstr "" -#: ../cache/locales.php:187 +#: [group]unsubscribe msgid "Unsubscribe" msgstr "" -#: ../cache/locales.php:188 +#: [group]unsubscribe_text msgid "You are going to unsubscribe from this Group" msgstr "" -#: ../cache/locales.php:189 +#: [group]unsubscribed msgid "Unsubscribed" msgstr "" -#: ../cache/locales.php:190 +#: [group]share_label msgid "Make your membership to this group public to your friends" msgstr "" -#: ../cache/locales.php:191 +#: [group]label_label msgid "Give a label for this group" msgstr "" -#: ../cache/locales.php:192 +#: [group]sure msgid "Are you sure ?" msgstr "" -#: ../cache/locales.php:194 +#: [group]empty_text msgid "Discover, follow and share" msgstr "" -#: ../cache/locales.php:195 +#: [group]empty msgid "Something bad happened to this group" msgstr "" -#: ../cache/locales.php:196 +#: [group]config_saved msgid "Group configuration saved" msgstr "" -#: ../cache/locales.php:197 +#: [group]delete_title msgid "Delete the group" msgstr "" -#: ../cache/locales.php:198 -msgid "" -"You are going to delete the following group. Please confirm your action." +#: [group]delete_text +msgid "You are going to delete the following group. Please confirm your action." msgstr "" -#: ../cache/locales.php:199 -msgid "" -"It seems that this group doesn't exists anymore. Do you want to remove it " -"from your subscriptions?" +#: [group]delete_clean_text +msgid "It seems that this group doesn't exists anymore. Do you want to remove it from your subscriptions?" msgstr "" -#: ../cache/locales.php:201 ../cache/locales.php:408 +#: [group]counter +msgid "%s groups on this server" +msgstr "" + +#: [group]subscriptions [statistics]subscriptions msgid "Subscriptions" msgstr "" -#: ../cache/locales.php:202 ../cache/locales.php:290 +#: [group]servers +msgid "Groups servers" +msgstr "" + +#: [group]search_server +msgid "Search for a new server" +msgstr "" + +#: [group]help_info1 +msgid "Groups are the perfect way to share posts about topics that you like with all the other Movim's users." +msgstr "" + +#: [group]help_info2 +msgid "Choose a server and a Group and subscribe to it using the %s button in the header. You can also create a new one using the %s button." +msgstr "" + +#: [group]help_info3 +msgid "Done? You can now publish a new post in the Group by using the %s button." +msgstr "" + +#: [group]help_info4 +msgid "You will find a list of all your subscribed Groups in My Subscriptions and receive instantly all the new incoming posts in the %sNews%s page." +msgstr "" + +#: [groups]empty_title msgid "Hello" msgstr "" -#: ../cache/locales.php:203 ../cache/locales.php:225 ../cache/locales.php:291 +#: [groups]contact_post [hello]contact_post [menu]contact_post msgid "Contact post" msgstr "" -#: ../cache/locales.php:204 -msgid "" -"You don't have any subscriptions yet, select a group server above to start " -"exploring." +#: [groups]empty_text1 +msgid "You don't have any subscriptions yet, select a group server above to start exploring." msgstr "" -#: ../cache/locales.php:205 +#: [groups]empty_text2 msgid "Subscribe to your favorite feeds by bookmarking them." msgstr "" -#: ../cache/locales.php:206 +#: [groups]subscriptions msgid "My Subscriptions" msgstr "" -#: ../cache/locales.php:207 +#: [groups]add msgid "Create a new Group" msgstr "" -#: ../cache/locales.php:208 +#: [groups]name msgid "Group name" msgstr "" -#: ../cache/locales.php:209 +#: [groups]name_example msgid "My Little Pony - Fan Club" msgstr "" -#: ../cache/locales.php:210 +#: [groups]created msgid "Group created successfully" msgstr "" -#: ../cache/locales.php:211 +#: [groups]deleted msgid "Group deleted successfully" msgstr "" -#: ../cache/locales.php:212 +#: [groups]name_error msgid "Please provide a valid group name (4 characters minimum)" msgstr "" -#: ../cache/locales.php:213 +#: [groups]no_creation msgid "You cannot create a new Group on this server" msgstr "" -#: ../cache/locales.php:214 -#, php-format +#: [groups]sub msgid "%s subscribers" msgstr "" -#: ../cache/locales.php:215 -#, php-format +#: [groups]num msgid "%s posts" msgstr "" -#: ../cache/locales.php:216 +#: [groups]disco_error +msgid "This server doesn't exists" +msgstr "" + +#: [menu]all msgid "All" msgstr "" -#: ../cache/locales.php:219 +#: [menu]refresh msgid "Refresh all the streams" msgstr "" -#: ../cache/locales.php:220 ../cache/locales.php:402 -msgid "Search" +#: [roster]search +msgid "Search in your contacts" msgstr "" -#: ../cache/locales.php:221 +#: [hello]active_contacts +msgid "Active contacts" +msgstr "" + +#: [hello]chat msgid "Go on the Chat page" msgstr "" -#: ../cache/locales.php:222 -msgid "Read all theses articles on the News page" -msgstr "" - -#: ../cache/locales.php:223 -msgid "Visit your public blog" -msgstr "" - -#: ../cache/locales.php:224 -msgid "See your public posts and share them with all your contacts" -msgstr "" - -#: ../cache/locales.php:226 -msgid "Universal share button" -msgstr "" - -#: ../cache/locales.php:227 -msgid "" -"Bookmark or drag and drop the following button in your toolbar and use it on " -"all the pages you want to share on Movim" -msgstr "" - -#: ../cache/locales.php:228 -msgid "Share on Movim" -msgstr "" - -#: ../cache/locales.php:229 -msgid "Frequently Asked Questions" -msgstr "" - -#: ../cache/locales.php:230 -msgid "What do the little banners refer to ?" -msgstr "" - -#: ../cache/locales.php:231 -msgid "" -"Thanks to these five little banners, you can quickly identitfy the level of " -"confdentiality applied to the information you provide." -msgstr "" - -#: ../cache/locales.php:232 -msgid "White, only you can see the information" -msgstr "" - -#: ../cache/locales.php:233 -msgid "Green, you have chosen some contacts who can see your information" -msgstr "" - -#: ../cache/locales.php:234 -msgid "Orange, all your contact list can see your information" -msgstr "" - -#: ../cache/locales.php:235 -msgid "Red, everybody in the XMPP network can see your information" -msgstr "" - -#: ../cache/locales.php:236 -msgid "Black, the whole Internet can see your information" -msgstr "" - -#: ../cache/locales.php:237 -msgid "Looking for some documentation ?" -msgstr "" - -#: ../cache/locales.php:238 -msgid "Read the Wiki" -msgstr "" - -#: ../cache/locales.php:239 -msgid "Talk with us by email ?" -msgstr "" - -#: ../cache/locales.php:240 -msgid "Join the Mailing List" -msgstr "" - -#: ../cache/locales.php:241 -msgid "Chat with the team ?" -msgstr "" - -#: ../cache/locales.php:242 -msgid "Join the Chatroom" -msgstr "" - -#: ../cache/locales.php:243 -msgid "Location node created" -msgstr "" - -#: ../cache/locales.php:244 -msgid "Bookmark node created" -msgstr "" - -#: ../cache/locales.php:245 -msgid "Profile node created" -msgstr "" - -#: ../cache/locales.php:246 -msgid "Avatar node created" -msgstr "" - -#: ../cache/locales.php:247 -msgid "Subscriptions node created" -msgstr "" - -#: ../cache/locales.php:248 -msgid "Microblog node created" -msgstr "" - -#: ../cache/locales.php:249 -msgid "Location" -msgstr "" - -#: ../cache/locales.php:250 -msgid "Wrong position" -msgstr "" - -#: ../cache/locales.php:251 -msgid "Location updated" -msgstr "" - -#: ../cache/locales.php:252 -msgid "Update my position" -msgstr "" - -#: ../cache/locales.php:253 -msgid "Wrong username" -msgstr "Λάθος όνομα χρήστη" - -#: ../cache/locales.php:254 -msgid "Invalid JID" -msgstr "" - -#: ../cache/locales.php:255 -msgid "Empty Challenge from the server" -msgstr "" - -#: ../cache/locales.php:256 -msgid "XMPP Domain error, your account is not a correct Jabber ID" -msgstr "" - -#: ../cache/locales.php:257 -msgid "Some data are missing !" -msgstr "Μερικά δεδομένα λείπουν" - -#: ../cache/locales.php:258 -msgid "Wrong password" -msgstr "Λανθασμένος κωδικός" - -#: ../cache/locales.php:259 -msgid "Internal server error" -msgstr "" - -#: ../cache/locales.php:260 -msgid "Session error" -msgstr "" - -#: ../cache/locales.php:261 -msgid "Account successfully created" -msgstr "Ο λογαριασμός δημιουργήθηκε επιτυχώς" - -#: ../cache/locales.php:262 ../cache/locales.php:271 -msgid "Your XMPP server is unauthorized" -msgstr "" - -#: ../cache/locales.php:263 -msgid "The server takes too much time to respond" -msgstr "" - -#: ../cache/locales.php:264 -msgid "Your web browser is too old to use with Movim." -msgstr "Ο περιηγητης σας είναι αρκετά παλιός για να χρησιμοποιηθεί με Movim" - -#: ../cache/locales.php:265 -msgid "" -"Movim cannot talk with the server, please try again later (Websocket " -"connection error)" -msgstr "" - -#: ../cache/locales.php:266 -msgid "Impossible login" -msgstr "" - -#: ../cache/locales.php:267 -msgid "Oops!" -msgstr "" - -#: ../cache/locales.php:268 ../cache/locales.php:449 ../cache/locales.php:455 -msgid "Unknown error" -msgstr "" - -#: ../cache/locales.php:269 -msgid "Invalid username format" -msgstr "" - -#: ../cache/locales.php:270 -msgid "Invalid password format" -msgstr "" - -#: ../cache/locales.php:272 -msgid "A Movim session is already open on an other device" -msgstr "" - -#: ../cache/locales.php:273 -msgid "Movim failed to authenticate. You entered wrong data" -msgstr "" - -#: ../cache/locales.php:274 -msgid "Authentication mechanism not supported by Movim" -msgstr "" - -#: ../cache/locales.php:275 -msgid "The XMPP authentification failed" -msgstr "" - -#: ../cache/locales.php:276 -#, php-format -msgid "" -"You can login with Facebook (chat only) using %syour.id@chat.facebook.com%s " -"and your password" -msgstr "" - -#: ../cache/locales.php:277 -#, php-format -msgid "%sGmail accounts are also compatible%s but are not fully supported" -msgstr "" - -#: ../cache/locales.php:278 -msgid "You can login using your favorite Jabber account" -msgstr "" - -#: ../cache/locales.php:279 -msgid "or with our demonstration account" -msgstr "" - -#: ../cache/locales.php:280 ../cache/locales.php:435 -msgid "Accounts" -msgstr "" - -#: ../cache/locales.php:281 -msgid "My address" -msgstr "Η διεύθυνσή μου" - -#: ../cache/locales.php:283 -msgid "Create one !" -msgstr "" - -#: ../cache/locales.php:284 -msgid "No account yet ?" -msgstr "" - -#: ../cache/locales.php:285 -msgid "Another account" -msgstr "" - -#: ../cache/locales.php:286 -msgid "You can login with accounts from theses servers" -msgstr "" - -#: ../cache/locales.php:287 -msgid "Connected" -msgstr "" - -#: ../cache/locales.php:288 -msgid "Population" -msgstr "" - -#: ../cache/locales.php:289 -msgid "Bad nickname (between 4 and 40 characters)" -msgstr "" - -#: ../cache/locales.php:292 -msgid "" -"Welcome on your news feed, here you will see all the posts published in the " -"groups you have subscribed." -msgstr "" - -#: ../cache/locales.php:293 -msgid "Refreshing all the streams" -msgstr "" - -#: ../cache/locales.php:294 -msgid "This post is public" -msgstr "" - -#: ../cache/locales.php:295 -msgid "Manage your members" -msgstr "" - -#: ../cache/locales.php:296 -msgid "Get the members" -msgstr "" - -#: ../cache/locales.php:297 -msgid "Affiliations saved" -msgstr "" - -#: ../cache/locales.php:298 -msgid "Manage your subscriptions" -msgstr "" - -#: ../cache/locales.php:299 -msgid "Manage the subscriptions" -msgstr "" - -#: ../cache/locales.php:300 -msgid "Get the subscriptions" -msgstr "" - -#: ../cache/locales.php:301 -msgid "Subscriptions saved" -msgstr "" - -#: ../cache/locales.php:302 -msgid "Pending Invitations" -msgstr "" - -#: ../cache/locales.php:303 -#, php-format -msgid "%s wants to talk with you" -msgstr "" - -#: ../cache/locales.php:304 -msgid "Manage" -msgstr "" - -#: ../cache/locales.php:305 ../cache/locales.php:338 -msgid "News Feed" -msgstr "" - -#: ../cache/locales.php:306 ../cache/locales.php:339 -msgid "Discover and register to the groups you are interested in" -msgstr "" - -#: ../cache/locales.php:307 ../cache/locales.php:340 ../cache/locales.php:482 -msgid "Preview" -msgstr "" - -#: ../cache/locales.php:308 ../cache/locales.php:341 ../cache/locales.php:478 -msgid "Help" -msgstr "" - -#: ../cache/locales.php:309 ../cache/locales.php:342 -msgid "More help" -msgstr "" - -#: ../cache/locales.php:310 ../cache/locales.php:343 -msgid "Markdown syntax manual" -msgstr "" - -#: ../cache/locales.php:311 ../cache/locales.php:344 ../cache/locales.php:681 -msgid "Title" -msgstr "" - -#: ../cache/locales.php:312 ../cache/locales.php:345 -msgid "Content" -msgstr "" - -#: ../cache/locales.php:313 ../cache/locales.php:346 -msgid "Link" -msgstr "" - -#: ../cache/locales.php:314 ../cache/locales.php:347 -msgid "Tags" -msgstr "" - -#: ../cache/locales.php:315 ../cache/locales.php:348 -msgid "Please enter a valid url" -msgstr "" - -#: ../cache/locales.php:316 ../cache/locales.php:349 -msgid "No content to preview" -msgstr "" - -#: ../cache/locales.php:317 ../cache/locales.php:350 ../cache/locales.php:687 -msgid "No content" -msgstr "" - -#: ../cache/locales.php:318 ../cache/locales.php:351 -msgid "Post published" -msgstr "" - -#: ../cache/locales.php:319 ../cache/locales.php:352 -msgid "Post deleted" -msgstr "" - -#: ../cache/locales.php:320 ../cache/locales.php:353 -msgid "This picture will be added to your gallery" -msgstr "" - -#: ../cache/locales.php:321 ../cache/locales.php:354 -msgid "What's Hot" -msgstr "" - -#: ../cache/locales.php:322 ../cache/locales.php:355 -msgid "New post" -msgstr "" - -#: ../cache/locales.php:323 ../cache/locales.php:357 -msgid "" -"You can also use services like Imgur or Flickr to host your picture and " -"paste the link here." -msgstr "" - -#: ../cache/locales.php:324 -#, php-format -msgid "This is a re-post from %s" -msgstr "" - -#: ../cache/locales.php:325 -#, php-format -msgid "See %s profile" -msgstr "" - -#: ../cache/locales.php:326 -msgid "Publish this post on your public feed?" -msgstr "" - -#: ../cache/locales.php:327 -msgid "Post published on your blog" -msgstr "" - -#: ../cache/locales.php:328 -msgid "Post removed from your blog" -msgstr "" - -#: ../cache/locales.php:329 ../cache/locales.php:701 -msgid "Delete this post" -msgstr "" - -#: ../cache/locales.php:330 -msgid "You are going to delete this post, please confirm your action" -msgstr "" - -#: ../cache/locales.php:331 -msgid "Comments disabled" -msgstr "" - -#: ../cache/locales.php:332 -msgid "Comment published" -msgstr "" - -#: ../cache/locales.php:333 -msgid "Disconnect" -msgstr "" - -#: ../cache/locales.php:334 -msgid "Your status here !" -msgstr "" - -#: ../cache/locales.php:335 -msgid "Status updated" -msgstr "" - -#: ../cache/locales.php:336 -msgid "Status" -msgstr "" - -#: ../cache/locales.php:337 -msgid "Presence" -msgstr "" - -#: ../cache/locales.php:356 -msgid "Publish" -msgstr "" - -#: ../cache/locales.php:358 -msgid "You cannot publish a post on this Group" -msgstr "" - -#: ../cache/locales.php:359 -msgid "" -"Some fields have been filled in. Do you still want to go back and loose " -"their content?" -msgstr "" - -#: ../cache/locales.php:360 -msgid "Shared" -msgstr "" - -#: ../cache/locales.php:362 -#, php-format -msgid "%s has been added to your public groups" -msgstr "" - -#: ../cache/locales.php:363 -#, php-format -msgid "%s has been removed from your public groups" -msgstr "" - -#: ../cache/locales.php:364 -msgid "Add a chatroom" -msgstr "" - -#: ../cache/locales.php:365 -msgid "You don't have any chatroom yet." -msgstr "" - -#: ../cache/locales.php:366 -msgid "Add one by clicking on the add button in the header." -msgstr "" - -#: ../cache/locales.php:367 -msgid "Chatrooms" -msgstr "" - -#: ../cache/locales.php:370 -msgid "My Favorite Room" -msgstr "" - -#: ../cache/locales.php:374 -msgid "Remove a chatroom" -msgstr "" - -#: ../cache/locales.php:375 -msgid "" -"You are going to remove the following chatroom. Please confirm your action." -msgstr "" - -#: ../cache/locales.php:378 -msgid "Users in the room" -msgstr "" - -#: ../cache/locales.php:379 -msgid "Please enter a correct nickname (6 to 40 characters)" -msgstr "" - -#: ../cache/locales.php:381 -msgid "Public chatroom" -msgstr "" - -#: ../cache/locales.php:382 -msgid "Please provide a room address" -msgstr "" - -#: ../cache/locales.php:383 -msgid "You are currently logued as an anonymous user." -msgstr "" - -#: ../cache/locales.php:384 -msgid "" -"You can join using your own account or create one on the login page by " -"loging out using the cross in the top-right corner." -msgstr "" - -#: ../cache/locales.php:385 -#, php-format -msgid "Login on %s" -msgstr "" - -#: ../cache/locales.php:386 -msgid "Your nickname" -msgstr "" - -#: ../cache/locales.php:387 -msgid "Ungrouped" -msgstr "" - -#: ../cache/locales.php:388 -msgid "Show disconnected contacts" -msgstr "" - -#: ../cache/locales.php:389 -msgid "Hide disconnected contacts" -msgstr "" - -#: ../cache/locales.php:390 -#, php-format -msgid "Show group %s" -msgstr "" - -#: ../cache/locales.php:391 -#, php-format -msgid "Hide group %s" -msgstr "" - -#: ../cache/locales.php:392 -msgid "Please enter a valid Jabber ID" -msgstr "" - -#: ../cache/locales.php:393 -msgid "" -"No contacts ? You can add one using the + button bellow or going to the " -"Explore page" -msgstr "" - -#: ../cache/locales.php:394 -msgid "Show/Hide" -msgstr "" - -#: ../cache/locales.php:395 -msgid "Enter the Jabber ID of your contact." -msgstr "" - -#: ../cache/locales.php:396 -msgid "Press enter to validate." -msgstr "" - -#: ../cache/locales.php:397 -msgid "JID" -msgstr "" - -#: ../cache/locales.php:398 -msgid "Results" -msgstr "" - -#: ../cache/locales.php:399 -msgid "Contact added" -msgstr "" - -#: ../cache/locales.php:401 -msgid "Contact deleted" -msgstr "" - -#: ../cache/locales.php:403 -msgid "This is not a valid url" -msgstr "" - -#: ../cache/locales.php:404 -msgid "Sharing the URL" -msgstr "" - -#: ../cache/locales.php:405 -msgid "Statistics" -msgstr "" - -#: ../cache/locales.php:406 -msgid "Since" -msgstr "" - -#: ../cache/locales.php:407 -msgid "Sessions" -msgstr "" - -#: ../cache/locales.php:409 -msgid "Monthly Subscriptions" -msgstr "" - -#: ../cache/locales.php:410 -msgid "Monthly Subscriptions Cumulated" -msgstr "" - -#: ../cache/locales.php:412 -msgid "" -"Movim is a decentralized social network, before creating a new account you " -"need to choose a server to register." -msgstr "" - -#: ../cache/locales.php:413 -msgid "Your server here ?" -msgstr "" - -#: ../cache/locales.php:414 -msgid "Contact us to add yours to the officially supported servers list" -msgstr "" - -#: ../cache/locales.php:416 -msgid "No public feed for this contact" -msgstr "" - -#: ../cache/locales.php:417 -msgid "No contact specified" -msgstr "" - -#: ../cache/locales.php:418 ../cache/locales.php:473 -msgid "Profile" -msgstr "Προφίλ" - -#: ../cache/locales.php:419 -msgid "Profile Updated" -msgstr "" - -#: ../cache/locales.php:420 -msgid "Profile Not Updated" -msgstr "" - -#: ../cache/locales.php:421 -msgid "Your profile is now public" -msgstr "" - -#: ../cache/locales.php:422 -msgid "Your profile is now restricted" -msgstr "" - -#: ../cache/locales.php:436 -msgid "Twitter" -msgstr "" - -#: ../cache/locales.php:437 -msgid "Skype" -msgstr "" - -#: ../cache/locales.php:438 -msgid "Yahoo" -msgstr "" - -#: ../cache/locales.php:439 -msgid "Privacy Level" -msgstr "" - -#: ../cache/locales.php:440 -msgid "Is this profile public ?" -msgstr "" - -#: ../cache/locales.php:441 -msgid "" -"Please pay attention ! By making your profile public, all the information " -"listed above will be available for all the Movim users and on the whole " -"Internet." -msgstr "" - -#: ../cache/locales.php:442 -msgid "Call" -msgstr "" - -#: ../cache/locales.php:443 -msgid "Hang up" -msgstr "" - -#: ../cache/locales.php:444 -msgid "Connection" -msgstr "" - -#: ../cache/locales.php:445 ../cache/locales.php:451 -msgid "Hung up" -msgstr "" - -#: ../cache/locales.php:446 ../cache/locales.php:452 -msgid "Your contact is busy" -msgstr "" - -#: ../cache/locales.php:447 ../cache/locales.php:453 -msgid "Declined" -msgstr "" - -#: ../cache/locales.php:448 ../cache/locales.php:454 -msgid "Remote application incompatible" -msgstr "" - -#: ../cache/locales.php:450 ../cache/locales.php:456 -msgid "Is calling you" -msgstr "" - -#: ../cache/locales.php:457 -msgid "You don't have javascript enabled. Good luck with that." -msgstr "" - -#: ../cache/locales.php:458 -msgid "" -"Movim is a kickass distributed social networking platform that protect your " -"privacy an comes with a set of awesome features." -msgstr "" - -#: ../cache/locales.php:459 -msgid "Administration" -msgstr "" - -#: ../cache/locales.php:460 -msgid "Home" -msgstr "Αρχική Σελίδα" - -#: ../cache/locales.php:461 -msgid "Discover" -msgstr "" - -#: ../cache/locales.php:462 -msgid "Explore" -msgstr "" - -#: ../cache/locales.php:463 -msgid "Account Creation" -msgstr "Δημιουργία Λογαριασμού" - -#: ../cache/locales.php:464 +#: [hello]news [page]news msgid "News" msgstr "" -#: ../cache/locales.php:465 -msgid "Avatar" -msgstr "Avatar" - -#: ../cache/locales.php:467 -msgid "Chats" +#: [hello]news_page +msgid "Read all theses articles on the News page" msgstr "" -#: ../cache/locales.php:470 -msgid "Server" +#: [hello]blog_title +msgid "Visit your public blog" msgstr "" -#: ../cache/locales.php:471 -msgid "Public Groups" +#: [hello]blog_text +msgid "See your public posts and share them with all your contacts" msgstr "" -#: ../cache/locales.php:472 -msgid "Viewer" +#: [hello]share_title +msgid "Universal share button" msgstr "" -#: ../cache/locales.php:474 -msgid "Media" +#: [hello]share_text +msgid "Bookmark or drag and drop the following button in your toolbar and use it on all the pages you want to share on Movim" msgstr "" -#: ../cache/locales.php:475 -msgid "Blog" +#: [hello]share_button +msgid "Share on Movim" msgstr "" -#: ../cache/locales.php:476 -msgid "About" +#: [help]faq +msgid "Frequently Asked Questions" msgstr "" -#: ../cache/locales.php:477 -msgid "Login" +#: [banner]title +msgid "What do the little banners refer to ?" msgstr "" -#: ../cache/locales.php:479 -msgid "Feed" -msgstr "Feed" - -#: ../cache/locales.php:481 -msgid "Gallery" +#: [banner]info1 +msgid "Thanks to these five little banners, you can quickly identitfy the level of confdentiality applied to the information you provide." msgstr "" -#: ../cache/locales.php:483 -msgid "Visio-conference" +#: [banner]white +msgid "White, only you can see the information" msgstr "" -#: ../cache/locales.php:484 -msgid "Pods" +#: [banner]green +msgid "Green, you have chosen some contacts who can see your information" msgstr "" -#: ../cache/locales.php:485 -msgid "Share" +#: [banner]orange +msgid "Orange, all your contact list can see your information" msgstr "" -#: ../cache/locales.php:486 -msgid "Room" +#: [banner]red +msgid "Red, everybody in the XMPP network can see your information" msgstr "" -#: ../cache/locales.php:487 -#, php-format -msgid "Error: %s" -msgstr "Σφάλμα: %s" - -#: ../cache/locales.php:488 -#, php-format -msgid "Cannot load file '%s'" -msgstr "Αδύνατη η φόρτωση του αρχείου '%s'" - -#: ../cache/locales.php:489 -#, php-format -msgid "Route error, please set all the parameters for the page %s" +#: [banner]black +msgid "Black, the whole Internet can see your information" msgstr "" -#: ../cache/locales.php:490 -#, php-format -msgid "Requested widget '%s' doesn't exist." +#: [wiki]question +msgid "Looking for some documentation ?" msgstr "" -#: ../cache/locales.php:491 -#, php-format -msgid "Requested event '%s' not registered." +#: [wiki]button +msgid "Read the Wiki" msgstr "" -#: ../cache/locales.php:492 -msgid "Whoops!" +#: [ml]question +msgid "Talk with us by email ?" msgstr "" -#: ../cache/locales.php:493 -msgid "It seem that you don't have any pictures here?" +#: [ml]button +msgid "Join the Mailing List" msgstr "" -#: ../cache/locales.php:494 -msgid "You can try to upload a couple by going to the Media page" +#: [chatroom]question +msgid "Chat with the team ?" msgstr "" -#: ../cache/locales.php:495 -#, php-format -msgid "%s - About" +#: [chatroom]button +msgid "Join the Chatroom" msgstr "" -#: ../cache/locales.php:496 -#, php-format -msgid "%s - Account" +#: [init]location +msgid "Location node created" msgstr "" -#: ../cache/locales.php:497 -#, php-format -msgid "%s - Administration Panel" +#: [init]bookmark +msgid "Bookmark node created" msgstr "" -#: ../cache/locales.php:498 -#, php-format -msgid "%s - Blog" +#: [init]vcard4 +msgid "Profile node created" msgstr "" -#: ../cache/locales.php:499 -#, php-format -msgid "%s - Configuration" -msgstr "%s - Ρύθμιση" - -#: ../cache/locales.php:500 -#, php-format -msgid "%s - Discover" +#: [init]avatar +msgid "Avatar node created" msgstr "" -#: ../cache/locales.php:501 -#, php-format -msgid "%s - Explore" +#: [init]subscriptions +msgid "Subscriptions node created" msgstr "" -#: ../cache/locales.php:502 -#, php-format -msgid "%s - Help Page" -msgstr "%s - Σελίδα βοήθειας" - -#: ../cache/locales.php:503 -#, php-format -msgid "%s - Login to Movim" -msgstr "%s - Είσοδος στο Movim" - -#: ../cache/locales.php:504 -#, php-format -msgid "%s - Welcome to Movim" -msgstr "%s - Καλωσήλθατε στο Movim" - -#: ../cache/locales.php:505 -#, php-format -msgid "%s - Media" +#: [init]microblog +msgid "Microblog node created" msgstr "" -#: ../cache/locales.php:506 -#, php-format -msgid "%s - News" +#: [location]title +msgid "Location" msgstr "" -#: ../cache/locales.php:507 -#, php-format -msgid "%s - Group Configuration" +#: [location]wrong_postition +msgid "Wrong position" msgstr "" -#: ../cache/locales.php:508 -#, php-format -msgid "%s - Group" +#: [location]updated +msgid "Location updated" msgstr "" -#: ../cache/locales.php:509 -#, php-format -msgid "%s - 404" +#: [location]update +msgid "Update my position" msgstr "" -#: ../cache/locales.php:510 -#, php-format -msgid "%s - Profile" -msgstr "%s - Προφίλ" - -#: ../cache/locales.php:511 -#, php-format -msgid "%s - Server" +#: [login_anonymous]bad_username +msgid "Bad nickname (between 4 and 40 characters)" msgstr "" -#: ../cache/locales.php:512 -msgid "Validate" +#: [error]username +msgid "Wrong username" +msgstr "Λάθος όνομα χρήστη" + +#: [error]jid +msgid "Invalid JID" msgstr "" -#: ../cache/locales.php:513 -msgid "Refresh" +#: [error]empty_challenge +msgid "Empty Challenge from the server" msgstr "" -#: ../cache/locales.php:514 -msgid "Add" +#: [error]dns +msgid "XMPP Domain error, your account is not a correct Jabber ID" msgstr "" -#: ../cache/locales.php:515 -msgid "Delete" +#: [error]data_missings +msgid "Some data are missing !" +msgstr "Μερικά δεδομένα λείπουν" + +#: [error]wrong_password +msgid "Wrong password" +msgstr "Λανθασμένος κωδικός" + +#: [error]internal +msgid "Internal server error" msgstr "" -#: ../cache/locales.php:516 -msgid "Remove" +#: [error]session +msgid "Session error" msgstr "" -#: ../cache/locales.php:517 -msgid "Cancel" +#: [error]account_created +msgid "Account successfully created" +msgstr "Ο λογαριασμός δημιουργήθηκε επιτυχώς" + +#: [error]xmpp_unauthorized +msgctxt "[error]xmpp_unauthorized" +msgid "Your XMPP server is unauthorized" msgstr "" -#: ../cache/locales.php:518 -msgid "Close" +#: [error]mec_error +msgid "The server takes too much time to respond" msgstr "" -#: ../cache/locales.php:519 -msgid "Update" +#: [error]too_old +msgid "Your web browser is too old to use with Movim." +msgstr "Ο περιηγητης σας είναι αρκετά παλιός για να χρησιμοποιηθεί με Movim" + +#: [error]websocket +msgid "Movim cannot talk with the server, please try again later (Websocket connection error)" msgstr "" -#: ../cache/locales.php:520 -msgid "Updating" +#: [error]impossible +msgid "Impossible login" msgstr "" -#: ../cache/locales.php:521 +#: [error]title +msgid "Oops!" +msgstr "" + +#: [error]default [visio]unknown_error +msgid "Unknown error" +msgstr "" + +#: [error]login_format +msgid "Invalid username format" +msgstr "" + +#: [error]password_format +msgid "Invalid password format" +msgstr "" + +#: [error]unauthorized +msgctxt "[error]unauthorized" +msgid "Your XMPP server is unauthorized" +msgstr "" + +#: [error]conflict +msgid "A Movim session is already open on an other device" +msgstr "" + +#: [error]wrong_account +msgid "Movim failed to authenticate. You entered wrong data" +msgstr "" + +#: [error]mechanism +msgid "Authentication mechanism not supported by Movim" +msgstr "" + +#: [error]fail_auth +msgid "The XMPP authentification failed" +msgstr "" + +#: [account]title [accounts]accounts_title +msgid "Accounts" +msgstr "" + +#: [form]username +msgid "My address" +msgstr "Η διεύθυνσή μου" + +#: [form]create_one +msgid "Create one !" +msgstr "" + +#: [form]another_account +msgid "Another account" +msgstr "" + +#: [form]no_account +msgid "No account yet ?" +msgstr "" + +#: [form]whitelist.info +msgid "You can login with accounts from theses servers" +msgstr "" + +#: [form]connected +msgid "Connected" +msgstr "" + +#: [form]population +msgid "Population" +msgstr "" + +#: [menu]empty_title +msgid "No news yet..." +msgstr "" + +#: [menu]empty +msgid "Welcome on your news feed, here you will see all the posts published by your contacts and in the groups you have subscribed." +msgstr "" + +#: [menu]refresh +msgid "Refreshing all the streams" +msgstr "" + +#: [menu]public +msgid "This post is public" +msgstr "" + +#: [affiliations]title +msgid "Manage your members" +msgstr "" + +#: [affiliations]get +msgid "Get the members" +msgstr "" + +#: [affiliations]saved +msgid "Affiliations saved" +msgstr "" + +#: [subscriptions]title +msgid "Manage your subscriptions" +msgstr "" + +#: [subscriptions]info +msgid "Manage the subscriptions" +msgstr "" + +#: [subscriptions]get +msgid "Get the subscriptions" +msgstr "" + +#: [subscriptions]saved +msgid "Subscriptions saved" +msgstr "" + +#: [notifs]title +msgid "Pending Invitations" +msgstr "" + +#: [notifs]wants_to_talk +msgid "%s wants to talk with you" +msgstr "" + +#: [notifs]manage +msgid "Manage" +msgstr "" + +#: [post]news_feed +msgid "News Feed" +msgstr "" + +#: [post]placeholder +msgid "Discover and register to the groups you are interested in" +msgstr "" + +#: [post]preview [page]preview +msgid "Preview" +msgstr "" + +#: [post]help [page]help +msgid "Help" +msgstr "" + +#: [post]help_more +msgid "More help" +msgstr "" + +#: [post]help_manual +msgid "Markdown syntax manual" +msgstr "" + +#: [post]title +msgid "Title" +msgstr "" + +#: [post]content +msgid "Content" +msgstr "" + +#: [post]link +msgid "Link" +msgstr "" + +#: [post]tags +msgid "Tags" +msgstr "" + +#: [post]valid_url [publish]valid_url +msgid "Please enter a valid url" +msgstr "" + +#: [post]no_content_preview [publish]no_content_preview +msgid "No content to preview" +msgstr "" + +#: [post]no_content [publish]no_content [post]empty +msgid "No content" +msgstr "" + +#: [post]published +msgid "Post published" +msgstr "" + +#: [post]deleted +msgid "Post deleted" +msgstr "" + +#: [post]gallery +msgid "This picture will be added to your gallery" +msgstr "" + +#: [post]hot +msgid "What's Hot" +msgstr "" + +#: [post]hot_text +msgid "Posts recently published in Groups that you are not subscribed (yet)" +msgstr "" + +#: [post]new [publish]new +msgid "New post" +msgstr "" + +#: [post]embed_tip +msgid "You can also use services like Imgur or Flickr to host your picture and paste the link here." +msgstr "" + +#: [post]repost +msgid "This is a re-post from %s" +msgstr "" + +#: [post]repost_profile +msgid "See %s profile" +msgstr "" + +#: [post]public +msgid "Publish this post publicly?" +msgstr "" + +#: [post]blog_add +msgid "Post published on your blog" +msgstr "" + +#: [post]blog_remove +msgid "Post removed from your blog" +msgstr "" + +#: [post]delete_title [post]delete +msgid "Delete this post" +msgstr "" + +#: [post]delete_text +msgid "You are going to delete this post, please confirm your action" +msgstr "" + +#: [post]comments_disabled +msgid "Comments disabled" +msgstr "" + +#: [post]comment_published +msgid "Comment published" +msgstr "" + +#: [status]disconnect +msgid "Disconnect" +msgstr "" + +#: [status]here +msgid "Your status here !" +msgstr "" + +#: [status]updated +msgid "Status updated" +msgstr "" + +#: [status]status +msgid "Status" +msgstr "" + +#: [status]presence +msgid "Presence" +msgstr "" + +#: [status]online +msgid "Online with Movim" +msgstr "" + +#: [publish]title +msgid "Publish" +msgstr "" + +#: [publish]attach +msgid "Add a file or a picture to your post" +msgstr "" + +#: [publish]no_publication +msgid "You cannot publish a post on this Group" +msgstr "" + +#: [publish]form_filled +msgid "Some fields have been filled in. Do you still want to go back and loose their content?" +msgstr "" + +#: [public_groups]shared +msgid "Shared" +msgstr "" + +#: [public_groups]added +msgid "%s has been added to your public groups" +msgstr "" + +#: [rooms]add +msgid "Add a chatroom" +msgstr "" + +#: [rooms]empty_text1 +msgid "You don't have any chatroom yet." +msgstr "" + +#: [rooms]empty_text2 +msgid "Add one by clicking on the add button in the header." +msgstr "" + +#: [chatrooms]title +msgid "Chatrooms" +msgstr "" + +#: [chatrooms]name_placeholder +msgid "My Favorite Room" +msgstr "" + +#: [chatrooms]users +msgid "Users in the room" +msgstr "" + +#: [chatrooms]bad_nickname +msgid "Please enter a correct nickname (2 to 40 characters)" +msgstr "" + +#: [room]anonymous_title +msgid "Public chatroom" +msgstr "" + +#: [room]no_room +msgid "Please provide a room address" +msgstr "" + +#: [room]anonymous_text1 +msgid "You are currently logued as an anonymous user." +msgstr "" + +#: [room]anonymous_text2 +msgid "You can join using your own account or create one on the login page by loging out using the cross in the top-right corner." +msgstr "" + +#: [room]anonymous_login +msgid "Login on %s" +msgstr "" + +#: [room]nick +msgid "Your nickname" +msgstr "" + +#: [roster]ungrouped +msgid "Ungrouped" +msgstr "" + +#: [roster]show_disconnected +msgid "Show disconnected contacts" +msgstr "" + +#: [roster]hide_disconnected +msgid "Hide disconnected contacts" +msgstr "" + +#: [roster]show_group +msgid "Show group %s" +msgstr "" + +#: [roster]hide_group +msgid "Hide group %s" +msgstr "" + +#: [roster]jid_error +msgid "Please enter a valid Jabber ID" +msgstr "" + +#: [roster]no_contacts_title +msgid "No contacts ?" +msgstr "" + +#: [roster]no_contacts_text +msgid "You can add one using the + button bellow" +msgstr "" + +#: [roster]show_hide +msgid "Show/Hide" +msgstr "" + +#: [roster]add_contact_info1 +msgid "Enter the Jabber ID of your contact." +msgstr "" + +#: [roster]add_contact_info2 +msgid "Press enter to validate." +msgstr "" + +#: [roster]jid +msgid "JID" +msgstr "" + +#: [roster]results +msgid "Results" +msgstr "" + +#: [roster]added +msgid "Contact added" +msgstr "" + +#: [roster]deleted +msgid "Contact deleted" +msgstr "" + +#: [roster]search +msgid "Search" +msgstr "" + +#: [share]error +msgid "This is not a valid url" +msgstr "" + +#: [share]success +msgid "Sharing the URL" +msgstr "" + +#: [statistics]title +msgid "Statistics" +msgstr "" + +#: [statistics]since +msgid "Since" +msgstr "" + +#: [statistics]sessions +msgid "Sessions" +msgstr "" + +#: [statistics]monthly_sub +msgid "Monthly Subscriptions" +msgstr "" + +#: [statistics]monthly_sub_cum +msgid "Monthly Subscriptions Cumulated" +msgstr "" + +#: [subscribe]info +msgid "Movim is a decentralized social network, before creating a new account you need to choose a server to register." +msgstr "" + +#: [subscribe]server_question +msgid "Your server here ?" +msgstr "" + +#: [subscribe]server_contact +msgid "Contact us to add yours to the officially supported servers list" +msgstr "" + +#: [feed]nope +msgid "No public feed for this contact" +msgstr "" + +#: [feed]nope_contact +msgid "No contact specified" +msgstr "" + +#: [upload]title +msgid "Upload a file" +msgstr "" + +#: [upload]choose +msgid "Choose a file to upload" +msgstr "" + +#: [vcard]title [page]profile +msgid "Profile" +msgstr "Προφίλ" + +#: [vcard]updated +msgid "Profile Updated" +msgstr "" + +#: [vcard]not_updated +msgid "Profile Not Updated" +msgstr "" + +#: [vcard]public +msgid "Your profile is now public" +msgstr "" + +#: [vcard]restricted +msgid "Your profile is now restricted" +msgstr "" + +#: [general]nickname +#, fuzzy +msgctxt "[general]nickname" +msgid "Nickname" +msgstr "Ψευδώνυμο" + +#: [accounts]twitter +msgid "Twitter" +msgstr "" + +#: [accounts]skype +msgid "Skype" +msgstr "" + +#: [accounts]yahoo +msgid "Yahoo" +msgstr "" + +#: [accounts]accounts_nickname +#, fuzzy +msgctxt "[accounts]accounts_nickname" +msgid "Nickname" +msgstr "Ψευδώνυμο" + +#: [accounts]accounts_yahoo +msgid "Yahoo Account" +msgstr "" + +#: [privacy]privacy_title +msgid "Privacy Level" +msgstr "" + +#: [privacy]privacy_question +msgid "Is this profile public ?" +msgstr "" + +#: [privacy]privacy_info +msgid "Please pay attention ! By making your profile public, all the information listed above will be available for all the Movim users and on the whole Internet." +msgstr "" + +#: [save]submit [button]submit msgid "Submit" msgstr "Υποβολή" -#: ../cache/locales.php:522 -msgid "Submitting" -msgstr "" - -#: ../cache/locales.php:523 +#: [save]reset [button]reset msgid "Reset" msgstr "Επαναφορά" -#: ../cache/locales.php:524 +#: [visio]hung_up +msgid "Hung up" +msgstr "" + +#: [visio]busy +msgid "Your contact is busy" +msgstr "" + +#: [visio]declined +msgid "Declined" +msgstr "" + +#: [visio]calling +msgid "Is calling you" +msgstr "" + +#: [visio]call +msgid "Call" +msgstr "" + +#: [visio]hang_up +msgid "Hang up" +msgstr "" + +#: [visio]connection +msgid "Connection" +msgstr "" + +#: [global]no_js +msgid "You don't have javascript enabled. Good luck with that." +msgstr "" + +#: [global]description +msgid "Movim is a kickass distributed social networking platform that protect your privacy an comes with a set of awesome features." +msgstr "" + +#: [page]administration +msgid "Administration" +msgstr "" + +#: [page]home +msgid "Home" +msgstr "Αρχική Σελίδα" + +#: [page]discover +msgid "Discover" +msgstr "" + +#: [page]explore +msgid "Explore" +msgstr "" + +#: [page]account_creation +msgid "Account Creation" +msgstr "Δημιουργία Λογαριασμού" + +#: [page]avatar +msgid "Avatar" +msgstr "Avatar" + +#: [page]chats +msgid "Chats" +msgstr "" + +#: [page]server +msgid "Server" +msgstr "" + +#: [page]public_groups +msgid "Public Groups" +msgstr "" + +#: [page]viewer +msgid "Viewer" +msgstr "" + +#: [page]media +msgid "Media" +msgstr "" + +#: [page]blog +msgid "Blog" +msgstr "" + +#: [page]about +msgid "About" +msgstr "" + +#: [page]login +msgid "Login" +msgstr "" + +#: [page]feed +msgid "Feed" +msgstr "Feed" + +#: [page]gallery +msgid "Gallery" +msgstr "" + +#: [page]visio +msgid "Visio-conference" +msgstr "" + +#: [page]pods +msgid "Pods" +msgstr "" + +#: [page]share +msgid "Share" +msgstr "" + +#: [page]room +msgid "Room" +msgstr "" + +#: [error]error +msgid "Error: %s" +msgstr "Σφάλμα: %s" + +#: [error]cannot_load_file +msgid "Cannot load file '%s'" +msgstr "Αδύνατη η φόρτωση του αρχείου '%s'" + +#: [error]route +msgid "Route error, please set all the parameters for the page %s" +msgstr "" + +#: [error]widget_load_error +msgid "Requested widget '%s' doesn't exist." +msgstr "" + +#: [error]widget_call_error +msgid "Requested event '%s' not registered." +msgstr "" + +#: [error]whoops +msgid "Whoops!" +msgstr "" + +#: [error]media_not_found +msgid "It seem that you don't have any pictures here?" +msgstr "" + +#: [error]media_ask_upload +msgid "You can try to upload a couple by going to the Media page" +msgstr "" + +#: [title]about +msgid "%s - About" +msgstr "" + +#: [title]account +msgid "%s - Account" +msgstr "" + +#: [title]administration +msgid "%s - Administration Panel" +msgstr "" + +#: [title]blog +msgid "%s - Blog" +msgstr "" + +#: [title]configuration +msgid "%s - Configuration" +msgstr "%s - Ρύθμιση" + +#: [title]discover +msgid "%s - Discover" +msgstr "" + +#: [title]explore +msgid "%s - Explore" +msgstr "" + +#: [title]help +msgid "%s - Help Page" +msgstr "%s - Σελίδα βοήθειας" + +#: [title]login +msgid "%s - Login to Movim" +msgstr "%s - Είσοδος στο Movim" + +#: [title]main +msgid "%s - Welcome to Movim" +msgstr "%s - Καλωσήλθατε στο Movim" + +#: [title]media +msgid "%s - Media" +msgstr "" + +#: [title]news +msgid "%s - News" +msgstr "" + +#: [title]node_configuration +msgid "%s - Group Configuration" +msgstr "" + +#: [title]node +msgid "%s - Group" +msgstr "" + +#: [title]not_found +msgid "%s - 404" +msgstr "" + +#: [title]profile +msgid "%s - Profile" +msgstr "%s - Προφίλ" + +#: [title]server +msgid "%s - Server" +msgstr "" + +#: [button]validate +msgid "Validate" +msgstr "" + +#: [button]refresh +msgid "Refresh" +msgstr "" + +#: [button]add +msgid "Add" +msgstr "" + +#: [button]delete +msgid "Delete" +msgstr "" + +#: [button]cancel +msgid "Cancel" +msgstr "" + +#: [button]close +msgid "Close" +msgstr "" + +#: [button]update +msgid "Update" +msgstr "" + +#: [button]updating +msgid "Updating" +msgstr "" + +#: [button]submitting +msgid "Submitting" +msgstr "" + +#: [button]register msgid "Register" msgstr "" -#: ../cache/locales.php:525 +#: [button]unregister msgid "Unregister" msgstr "" -#: ../cache/locales.php:526 +#: [button]save msgid "Save" msgstr "" -#: ../cache/locales.php:527 +#: [button]clear msgid "Clear" msgstr "" -#: ../cache/locales.php:528 +#: [button]upload msgid "Upload" msgstr "" -#: ../cache/locales.php:529 +#: [button]come_in msgid "Come in!" msgstr "Έλα μέσα!" -#: ../cache/locales.php:530 +#: [button]connecting msgid "Connecting" msgstr "" -#: ../cache/locales.php:531 +#: [button]bool_yes msgid "Yes" msgstr "" -#: ../cache/locales.php:532 +#: [button]bool_no msgid "No" msgstr "" -#: ../cache/locales.php:534 +#: [button]return msgid "Return" msgstr "" -#: ../cache/locales.php:535 +#: [button]accept msgid "Accept" msgstr "Αποδοχή" -#: ../cache/locales.php:536 +#: [button]refuse msgid "Refuse" msgstr "" -#: ../cache/locales.php:537 +#: [button]next msgid "Next" msgstr "" -#: ../cache/locales.php:538 +#: [button]previous msgid "Previous" msgstr "" -#: ../cache/locales.php:539 -#, php-format +#: [step]step msgid "Step %s" msgstr "" -#: ../cache/locales.php:542 +#: [day]title msgid "Day" msgstr "" -#: ../cache/locales.php:543 +#: [day]monday msgid "Monday" msgstr "Δευτέρα" -#: ../cache/locales.php:544 +#: [day]tuesday msgid "Tuesday" msgstr "Τρίτη" -#: ../cache/locales.php:545 +#: [day]wednesday msgid "Wednesday" msgstr "Τετάρτη" -#: ../cache/locales.php:546 +#: [day]thursday msgid "Thursday" msgstr "Πέμπτη" -#: ../cache/locales.php:547 +#: [day]friday msgid "Friday" msgstr "Παρασκευή" -#: ../cache/locales.php:548 +#: [day]saturday msgid "Saturday" msgstr "Σάββατο" -#: ../cache/locales.php:549 +#: [day]sunday msgid "Sunday" msgstr "" -#: ../cache/locales.php:550 ../cache/locales.php:559 +#: [gender]nil +#, fuzzy +msgctxt "[gender]nil" msgid "None" msgstr "Κανένα" -#: ../cache/locales.php:551 +#: [gender]male msgid "Male" msgstr "Άνδρας" -#: ../cache/locales.php:552 +#: [gender]female msgid "Female" msgstr "Γυναίκα" -#: ../cache/locales.php:553 +#: [gender]other msgid "Other" msgstr "Άλλο" -#: ../cache/locales.php:554 +#: [client]bot msgid "Bot" msgstr "" -#: ../cache/locales.php:555 +#: [client]desktop msgid "Desktop" msgstr "" -#: ../cache/locales.php:556 +#: [client]phone msgid "Phone" msgstr "" -#: ../cache/locales.php:557 +#: [client]web msgid "Web" msgstr "" -#: ../cache/locales.php:558 +#: [client]registered msgid "Registered" msgstr "" -#: ../cache/locales.php:560 +#: [marital]nil +#, fuzzy +msgctxt "[marital]nil" +msgid "None" +msgstr "Κανένα" + +#: [marital]single msgid "Single" msgstr "Μόνος/η" -#: ../cache/locales.php:561 +#: [marital]relationship msgid "In a relationship" msgstr "Σε σχέση" -#: ../cache/locales.php:562 +#: [marital]married msgid "Married" msgstr "Παντρεμένος/η" -#: ../cache/locales.php:563 +#: [marital]divorced msgid "Divorced" msgstr "Διαζευγμένος/η" -#: ../cache/locales.php:564 +#: [marital]widowed msgid "Widowed" msgstr "" -#: ../cache/locales.php:565 +#: [marital]cohabiting msgid "Cohabiting" msgstr "" -#: ../cache/locales.php:566 +#: [marital]union msgid "Civil Union" msgstr "" -#: ../cache/locales.php:567 +#: [flag]white msgid "Not shared" msgstr "" -#: ../cache/locales.php:568 +#: [flag]green msgid "Shared with one contact" msgstr "" -#: ../cache/locales.php:569 +#: [flag]orange msgid "Shared with all contacts" msgstr "" -#: ../cache/locales.php:570 +#: [flag]red msgid "Shared with the XMPP network" msgstr "" -#: ../cache/locales.php:571 +#: [flag]black msgid "Shared with the whole Internet" msgstr "" -#: ../cache/locales.php:572 +#: [presence]online msgid "Online" msgstr "Συνδεδεμένος" -#: ../cache/locales.php:573 +#: [presence]away msgid "Away" msgstr "Απών" -#: ../cache/locales.php:574 +#: [presence]dnd msgid "Do Not Disturb" msgstr "Μην Ενοχλείτε" -#: ../cache/locales.php:575 +#: [presence]xa msgid "Extended Away" msgstr "Παρατεταμένη απουσία" -#: ../cache/locales.php:576 +#: [presence]offline msgid "Offline" msgstr "" -#: ../cache/locales.php:577 +#: [presence]error msgid "Error" msgstr "" -#: ../cache/locales.php:578 +#: [mood]afraid msgid "afraid" msgstr "" -#: ../cache/locales.php:579 +#: [mood]amazed msgid "amazed" msgstr "" -#: ../cache/locales.php:580 +#: [mood]amorous msgid "amorous" msgstr "" -#: ../cache/locales.php:581 +#: [mood]angry msgid "angry" msgstr "" -#: ../cache/locales.php:582 +#: [mood]annoyed msgid "annoyed" msgstr "" -#: ../cache/locales.php:583 +#: [mood]anxious msgid "anxious" msgstr "" -#: ../cache/locales.php:584 +#: [mood]aroused msgid "aroused" msgstr "" -#: ../cache/locales.php:585 +#: [mood]ashamed msgid "ashamed" msgstr "" -#: ../cache/locales.php:586 +#: [mood]bored msgid "bored" msgstr "" -#: ../cache/locales.php:587 +#: [mood]brave msgid "brave" msgstr "" -#: ../cache/locales.php:588 +#: [mood]calm msgid "calm" msgstr "" -#: ../cache/locales.php:589 +#: [mood]cautious msgid "cautious" msgstr "" -#: ../cache/locales.php:590 +#: [mood]cold msgid "cold" msgstr "" -#: ../cache/locales.php:591 +#: [mood]confident msgid "confident" msgstr "" -#: ../cache/locales.php:592 +#: [mood]confused msgid "confused" msgstr "" -#: ../cache/locales.php:593 +#: [mood]contemplative msgid "contemplative" msgstr "" -#: ../cache/locales.php:594 +#: [mood]contented msgid "contented" msgstr "" -#: ../cache/locales.php:595 +#: [mood]cranky msgid "cranky" msgstr "" -#: ../cache/locales.php:596 +#: [mood]crazy msgid "crazy" msgstr "" -#: ../cache/locales.php:597 +#: [mood]creative msgid "creative" msgstr "" -#: ../cache/locales.php:598 +#: [mood]curious msgid "curious" msgstr "" -#: ../cache/locales.php:599 +#: [mood]dejected msgid "dejected" msgstr "" -#: ../cache/locales.php:600 +#: [mood]depressed msgid "depressed" msgstr "" -#: ../cache/locales.php:601 +#: [mood]disappointed msgid "disappointed" msgstr "" -#: ../cache/locales.php:602 +#: [mood]disgusted msgid "disgusted" msgstr "" -#: ../cache/locales.php:603 +#: [mood]dismayed msgid "dismayed" msgstr "" -#: ../cache/locales.php:604 +#: [mood]distracted msgid "distracted" msgstr "" -#: ../cache/locales.php:605 +#: [mood]embarrassed msgid "embarrassed" msgstr "" -#: ../cache/locales.php:606 +#: [mood]envious msgid "envious" msgstr "" -#: ../cache/locales.php:607 +#: [mood]excited msgid "excited" msgstr "" -#: ../cache/locales.php:608 +#: [mood]flirtatious msgid "flirtatious" msgstr "" -#: ../cache/locales.php:609 +#: [mood]frustated msgid "frustated" msgstr "" -#: ../cache/locales.php:610 +#: [mood]grateful msgid "grateful" msgstr "" -#: ../cache/locales.php:611 +#: [mood]grieving msgid "grieving" msgstr "" -#: ../cache/locales.php:612 +#: [mood]grumpy msgid "grumpy" msgstr "" -#: ../cache/locales.php:613 +#: [mood]guilty msgid "guilty" msgstr "" -#: ../cache/locales.php:614 +#: [mood]happy msgid "happy" msgstr "" -#: ../cache/locales.php:615 +#: [mood]hopeful msgid "hopeful" msgstr "" -#: ../cache/locales.php:616 +#: [mood]hot msgid "hot" msgstr "" -#: ../cache/locales.php:617 +#: [mood]humbled msgid "humbled" msgstr "" -#: ../cache/locales.php:618 +#: [mood]humiliated msgid "humiliated" msgstr "" -#: ../cache/locales.php:619 +#: [mood]hungry msgid "hungry" msgstr "" -#: ../cache/locales.php:620 +#: [mood]hurt msgid "hurt" msgstr "" -#: ../cache/locales.php:621 +#: [mood]impressed msgid "impressed" msgstr "" -#: ../cache/locales.php:622 +#: [mood]in_awe msgid "in awe" msgstr "" -#: ../cache/locales.php:623 +#: [mood]in_love msgid "in love" msgstr "" -#: ../cache/locales.php:624 +#: [mood]indignant msgid "indignant" msgstr "" -#: ../cache/locales.php:625 +#: [mood]interested msgid "interested" msgstr "" -#: ../cache/locales.php:626 +#: [mood]intoxicated msgid "intoxicated" msgstr "" -#: ../cache/locales.php:627 +#: [mood]invincible msgid "invincible" msgstr "" -#: ../cache/locales.php:628 +#: [mood]jealous msgid "jealous" msgstr "" -#: ../cache/locales.php:629 +#: [mood]lonely msgid "lonely" msgstr "" -#: ../cache/locales.php:630 +#: [mood]lost msgid "lost" msgstr "" -#: ../cache/locales.php:631 +#: [mood]lucky msgid "lucky" msgstr "" -#: ../cache/locales.php:632 +#: [mood]mean msgid "mean" msgstr "" -#: ../cache/locales.php:633 +#: [mood]moody msgid "moody" msgstr "" -#: ../cache/locales.php:634 +#: [mood]nervous msgid "nervous" msgstr "" -#: ../cache/locales.php:635 +#: [mood]neutral msgid "neutral" msgstr "" -#: ../cache/locales.php:636 +#: [mood]offended msgid "offended" msgstr "" -#: ../cache/locales.php:637 +#: [mood]outraged msgid "outraged" msgstr "" -#: ../cache/locales.php:638 +#: [mood]playful msgid "playful" msgstr "" -#: ../cache/locales.php:639 +#: [mood]proud msgid "proud" msgstr "" -#: ../cache/locales.php:640 +#: [mood]relaxed msgid "relaxed" msgstr "" -#: ../cache/locales.php:641 +#: [mood]relieved msgid "relieved" msgstr "" -#: ../cache/locales.php:642 -msgid "remorseful" -msgstr "" - -#: ../cache/locales.php:643 +#: [mood]restless msgid "restless" msgstr "" -#: ../cache/locales.php:644 +#: [mood]sad msgid "sad" msgstr "" -#: ../cache/locales.php:645 +#: [mood]sarcastic msgid "sarcastic" msgstr "" -#: ../cache/locales.php:646 +#: [mood]satisfied msgid "satisfied" msgstr "" -#: ../cache/locales.php:647 +#: [mood]serious msgid "serious" msgstr "" -#: ../cache/locales.php:648 +#: [mood]shocked msgid "shocked" msgstr "" -#: ../cache/locales.php:649 +#: [mood]shy msgid "shy" msgstr "" -#: ../cache/locales.php:650 +#: [mood]sick msgid "sick" msgstr "" -#: ../cache/locales.php:651 +#: [mood]sleepy msgid "sleepy" msgstr "" -#: ../cache/locales.php:652 +#: [mood]spontaneous msgid "spontaneous" msgstr "" -#: ../cache/locales.php:653 +#: [mood]stressed msgid "stressed" msgstr "" -#: ../cache/locales.php:654 +#: [mood]strong msgid "strong" msgstr "" -#: ../cache/locales.php:655 +#: [mood]surprised msgid "surprised" msgstr "" -#: ../cache/locales.php:656 +#: [mood]thankful msgid "thankful" msgstr "" -#: ../cache/locales.php:657 +#: [mood]thirsty msgid "thirsty" msgstr "" -#: ../cache/locales.php:658 +#: [mood]tired msgid "tired" msgstr "" -#: ../cache/locales.php:659 +#: [mood]undefined msgid "undefined" msgstr "" -#: ../cache/locales.php:660 +#: [mood]weak msgid "weak" msgstr "" -#: ../cache/locales.php:661 +#: [mood]worried msgid "worried" msgstr "" -#: ../cache/locales.php:662 +#: [month]title msgid "Month" msgstr "" -#: ../cache/locales.php:663 +#: [month]january msgid "January" msgstr "Ιανουάριος" -#: ../cache/locales.php:664 +#: [month]february msgid "February" msgstr "Φεβρουάριος" -#: ../cache/locales.php:665 +#: [month]march msgid "March" msgstr "Μάρτιος" -#: ../cache/locales.php:666 +#: [month]april msgid "April" msgstr "Απρίλιος" -#: ../cache/locales.php:667 +#: [month]may msgid "May" msgstr "Μάιος" -#: ../cache/locales.php:668 +#: [month]june msgid "June" msgstr "Ιούνιος" -#: ../cache/locales.php:669 +#: [month]july msgid "July" msgstr "Ιούλιος" -#: ../cache/locales.php:670 +#: [month]august msgid "August" msgstr "Αύγουστος" -#: ../cache/locales.php:671 +#: [month]september msgid "September" msgstr "Σεπτέμβριος" -#: ../cache/locales.php:672 +#: [month]october msgid "October" msgstr "Οκτώβριος" -#: ../cache/locales.php:673 +#: [month]november msgid "November" msgstr "Νοέμβριος" -#: ../cache/locales.php:674 +#: [month]december msgid "December" msgstr "Δεκέμβριος" -#: ../cache/locales.php:675 +#: [year]title msgid "Year" msgstr "" -#: ../cache/locales.php:676 +#: [date]today msgid "Today" msgstr "Σήμερα" -#: ../cache/locales.php:677 +#: [date]tomorrow msgid "Tomorrow" msgstr "Αύριο" -#: ../cache/locales.php:678 +#: [date]yesterday msgid "Yesterday" msgstr "Χθες" -#: ../cache/locales.php:679 -#, php-format -msgid " %d days ago" +#: [date]ago +#, fuzzy +msgid "%d days ago" msgstr " %d ημέρες πριν" -#: ../cache/locales.php:680 +#: [date]day msgid "day" msgstr "ημέρα" -#: ../cache/locales.php:682 +#: [post]whats_new msgid "What's new ?" msgstr "" -#: ../cache/locales.php:683 +#: [post]place msgid "Place" msgstr "" -#: ../cache/locales.php:684 +#: [post]by msgid "by" msgstr "" -#: ../cache/locales.php:685 +#: [post]geolocalisation msgid "Geolocalisation" msgstr "" -#: ../cache/locales.php:686 +#: [post]email msgid "email" msgstr "" -#: ../cache/locales.php:688 +#: [post]no_comments msgid "No comments yet" msgstr "" -#: ../cache/locales.php:689 +#: [post]no_comments_stream msgid "No comments stream" msgstr "" -#: ../cache/locales.php:690 +#: [post]no_load msgid "Your feed cannot be loaded." msgstr "" -#: ../cache/locales.php:691 +#: [post]older msgid "Get older posts" msgstr "" -#: ../cache/locales.php:692 -#, php-format +#: [post]new_items msgid "%s new items" msgstr "" -#: ../cache/locales.php:693 +#: [post]comment_error msgid "Comment publication error" msgstr "" -#: ../cache/locales.php:694 +#: [post]comments_older msgid "Show the older comments" msgstr "" -#: ../cache/locales.php:695 -msgid "Loading comments ..." -msgstr "" +#: [post]comments_loading +#, fuzzy +msgid "Loading comments..." +msgstr "Φορτώνεται το contact feed ..." -#: ../cache/locales.php:696 +#: [post]comments_get msgid "Get the comments" msgstr "" -#: ../cache/locales.php:697 +#: [post]comment_add msgid "Add a comment" msgstr "" -#: ../cache/locales.php:698 +#: [post]share msgid "Share with" msgstr "" -#: ../cache/locales.php:699 +#: [post]share_everyone msgid "Everyone" msgstr "" -#: ../cache/locales.php:700 +#: [post]share_your_contacts msgid "Your contacts" msgstr "" -#: ../cache/locales.php:702 +#: [post]updated msgid "Updated" msgstr "" -#: ../cache/locales.php:703 +#: [post]content_not_found msgid "Content not found" msgstr "" -#: ../cache/locales.php:704 +#: [post]default_title msgid "Contact publication" msgstr "" -#: ../cache/locales.php:705 +#: [post]comments msgid "Comments" msgstr "" -#: ../cache/locales.php:706 +#: [api]error msgid "The API is not reachable, try again later" msgstr "" -#: ../cache/locales.php:707 +#: [field]type_here msgid "Type here" msgstr "" #~ msgid "PHP version mismatch. Movim requires PHP 5.3 minimum." -#~ msgstr "" -#~ "Αναντιστοιχία έκδοσης της PHP. Το Movim απαιτεί τουλάχιστον την έκδοση 5.3 " -#~ "της PHP." +#~ msgstr "Αναντιστοιχία έκδοσης της PHP. Το Movim απαιτεί τουλάχιστον την έκδοση 5.3 της PHP." -#, php-format #~ msgid "Movim requires the %s extension." #~ msgstr "Το Movim απαιτεί την %s επέκταση." @@ -2597,23 +2722,17 @@ msgstr "" #~ msgid "Movim Installer" #~ msgstr "Πρόγραμμα εγκατάστασης του Movim" -#, php-format #~ msgid "Couldn't create directory '%s'." #~ msgstr "Αδύνατη η δημιουργία του φακέλλου '%s'." -#, php-format #~ msgid "Couldn't create configuration file '%s'." #~ msgstr "Αδύνατη η δημιουργία του αρχείου ρύθμισης '%s'." #~ msgid "Compatibility Test" #~ msgstr "Δοκιμασία συμβατότητας" -#~ msgid "" -#~ "The following requirements were not met. Please make sure they are all " -#~ "satisfied in order to install Movim." -#~ msgstr "" -#~ "Οι ακόλουθες προϋποθέσεις δεν καλύπτονταν. Παρακαλώ βεβαιωθείτε πως " -#~ "καλύπτονται όλες, για να μπορέσετε να προχωρήσετε στην εγκατάσταση του Movim." +#~ msgid "The following requirements were not met. Please make sure they are all satisfied in order to install Movim." +#~ msgstr "Οι ακόλουθες προϋποθέσεις δεν καλύπτονταν. Παρακαλώ βεβαιωθείτε πως καλύπτονται όλες, για να μπορέσετε να προχωρήσετε στην εγκατάσταση του Movim." #~ msgid "User not logged in." #~ msgstr "Χρήστης μη συνδεδεμένος." @@ -2621,21 +2740,15 @@ msgstr "" #~ msgid "JID not provided." #~ msgstr "Δεν παρέχονται JID (Jabber Identif. Codes)" -#, php-format #~ msgid "jid '%s' is incorrect" #~ msgstr "Ο jid '%s' είναι λανθασμένος" -#, php-format #~ msgid "Cannot open log file '%s'" #~ msgstr "Αδύνατο να ανοίξει το αρχείο καταγραφής '%s'" -#, php-format #~ msgid "%s - Account Creation" #~ msgstr "%s - Δημιουργία Λογαριασμού" -#~ msgid "Remove this contact" -#~ msgstr "Διαγραφή αυτής της επαφής" - #~ msgid "Debug console" #~ msgstr "Κονσόλα αποσφαλμάτωσης" @@ -2648,9 +2761,6 @@ msgstr "" #~ msgid "Decline" #~ msgstr "Απόρριψη" -#~ msgid "Loading the contact feed ..." -#~ msgstr "Φορτώνεται το contact feed ..." - #~ msgid "BOSH Connection Preferences" #~ msgstr "Επιλογές σύνδεσης BOSH" @@ -2684,22 +2794,17 @@ msgstr "" #~ msgid "Actual version : " #~ msgstr "Τρέχουσα έκδοση " -#, php-format #~ msgid "Install the %s package" #~ msgstr "Εγκαταστήστε το %s πακέτο" -#, php-format #~ msgid "Install %s and %s packages" #~ msgstr "Εγκατασταση %s και %s πακέτα" #~ msgid "Update your PHP version or contact your server administrator" -#~ msgstr "" -#~ "Κάντε αναβάθμιση του PHP ή επικοινωνήστε με τον διαχειρηστή του εξυπηρετητή" +#~ msgstr "Κάντε αναβάθμιση του PHP ή επικοινωνήστε με τον διαχειρηστή του εξυπηρετητή" -#~ msgid "" -#~ "Before you enjoy your social network, a few adjustements are required." -#~ msgstr "" -#~ "Πριν απολαύσετε το κοινωνικό σας δίκτυο, απαιτούνται ορισμένες προσαρμογές." +#~ msgid "Before you enjoy your social network, a few adjustements are required." +#~ msgstr "Πριν απολαύσετε το κοινωνικό σας δίκτυο, απαιτούνται ορισμένες προσαρμογές." #~ msgid "Thank you for downloading Movim!" #~ msgstr "Ευχαριστούμε που κατεβάσατε το Movim!" @@ -2716,25 +2821,17 @@ msgstr "" #~ msgid "terse" #~ msgstr "λιτός" -#~ msgid "" -#~ "Some errors were detected. Please correct them for the installation to " -#~ "proceed." -#~ msgstr "" -#~ "Εντοπίστηκαν μερικά σφάλματα. Παρακαλούμε διορθώστε τα για να συνεχίστεί η " -#~ "εγκατάσταση" +#~ msgid "Some errors were detected. Please correct them for the installation to proceed." +#~ msgstr "Εντοπίστηκαν μερικά σφάλματα. Παρακαλούμε διορθώστε τα για να συνεχίστεί η εγκατάσταση" #~ msgid "Valid Bosh" #~ msgstr "Εγκυρο bosh" -#~ msgid "Database Detected" -#~ msgstr "Εντοπίστηκε βάση δεδομένων" - #~ msgid "Make sure your password is safe :" #~ msgstr "Σιγουρευτείτε εαν ο κωδικός σας είναι ασφαλής" #~ msgid "A capital letter, a digit and a special character are recommended" -#~ msgstr "" -#~ "Προτείνεται ένα κεφαλαίο γράμμα, ένα ψηφίο και ένας ειδικός χαρακτήρας" +#~ msgstr "Προτείνεται ένα κεφαλαίο γράμμα, ένα ψηφίο και ένας ειδικός χαρακτήρας" #~ msgid "Could not communicate with the XMPP server" #~ msgstr "Δεν είναι εφικτή η επικοινωνία με τον διακομιστή XMPP" @@ -2742,7 +2839,6 @@ msgstr "" #~ msgid "Could not connect to the XMPP server" #~ msgstr "Δεν είναι εφικτή η σύνδεση στον διακομιστή XMPP" -#, php-format #~ msgid "%s - Add An Account" #~ msgstr "%s - Προσθέστε λογαριασμό" diff --git a/sources/locales/eo.po b/sources/locales/eo.po index e186d05..ff966a1 100644 --- a/sources/locales/eo.po +++ b/sources/locales/eo.po @@ -1,2584 +1,2712 @@ # Esperanto translations for Movim package. # This file is distributed under the same license as the Movim package. # This file was translated from CodingTeam at . +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/About/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Account/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AccountNext/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AdHoc/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AdminDB/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AdminMain/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AdminTest/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Api/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Avatar/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Blog/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Bookmark/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Chat/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Chats/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/ConfigData/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Config/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Contact/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Group/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Groups/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Header/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Hello/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Help/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Init/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Location/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/LoginAnonymous/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Login/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Menu/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/NodeAffiliations/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/NodeSubscriptions/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Notifs/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Post/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Presence/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Publish/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/PubsubSubscriptionConfig/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Rooms/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Roster/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Share/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Statistics/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Subscribe/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Syndication/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Upload/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Vcard4/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/VisioExt/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Visio/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../locales/locales.ini msgid "" msgstr "" "Project-Id-Version: Movim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-06-08 22:06+0200\n" +"POT-Creation-Date: 2015-08-20 15:17+0200\n" "PO-Revision-Date: 2013-05-11 17:33+0000\n" "Last-Translator: Baptiste Darthenay \n" "Language-Team: LANGUAGE \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2015-06-18 21:08+0000\n" "X-Generator: Launchpad (build 17570)\n" -"Language: \n" -#: ../cache/locales.php:2 +#: [about]thanks msgid "Thanks" msgstr "" -#: ../cache/locales.php:3 +#: [about]developers msgid "Developers" msgstr "" -#: ../cache/locales.php:4 +#: [about]translators msgid "Translators" msgstr "" -#: ../cache/locales.php:5 +#: [about]software msgid "Software" msgstr "" -#: ../cache/locales.php:6 +#: [about]resources msgid "Resources" msgstr "" -#: ../cache/locales.php:7 ../cache/locales.php:83 ../cache/locales.php:85 +#: [about]api [schema]api [api]title msgid "API" msgstr "" -#: ../cache/locales.php:8 -msgid "" -"Movim is an XMPP-based communication platform. All the project, except the " -"following software and resources, is under" +#: [about]info +msgid "Movim is an XMPP-based communication platform. All the project, except the following software and resources, is under" msgstr "" -#: ../cache/locales.php:9 +#: [account]title msgid "Account" msgstr "" -#: ../cache/locales.php:10 -msgid "The password has been updated" -msgstr "" +#: [account]password_change_title +#, fuzzy +msgid "Change my password" +msgstr "Malkorekta pasvorto" -#: ../cache/locales.php:11 -msgid "Please provide a valid password (6 characters minimum)" -msgstr "" - -#: ../cache/locales.php:12 -msgid "The provided passwords are not the same" -msgstr "" - -#: ../cache/locales.php:13 -msgid "Delete my account" -msgstr "" - -#: ../cache/locales.php:14 -msgid "" -"You will delete your XMPP account and all the relative information linked to " -"it (profile, contacts and publications)." -msgstr "" - -#: ../cache/locales.php:15 -msgid "Are you sure that you want to delete it ?" -msgstr "" - -#: ../cache/locales.php:16 ../cache/locales.php:411 -msgid "Create a new account" -msgstr "" - -#: ../cache/locales.php:17 -msgid "No account creation form found on the server" -msgstr "" - -#: ../cache/locales.php:18 ../cache/locales.php:172 -msgid "on" -msgstr "" - -#: ../cache/locales.php:19 -msgid "Your acccount has been successfully registered" -msgstr "" - -#: ../cache/locales.php:20 -msgid "Loading" -msgstr "" - -#: ../cache/locales.php:21 -msgid "Not Acceptable" -msgstr "" - -#: ../cache/locales.php:22 -msgid "The registration system of this server is currently unavailable" -msgstr "" - -#: ../cache/locales.php:23 -msgid "" -"This server use an external system for the registration, please click on the " -"following URL." -msgstr "" - -#: ../cache/locales.php:24 -msgid "Actions" -msgstr "" - -#: ../cache/locales.php:25 ../cache/locales.php:82 -msgid "Database" -msgstr "" - -#: ../cache/locales.php:26 -msgid "Modl wasn't able to connect to the database" -msgstr "" - -#: ../cache/locales.php:27 -msgid "Movim is connected to the database" -msgstr "" - -#: ../cache/locales.php:28 -msgid "The database need to be updated" -msgstr "" - -#: ../cache/locales.php:29 -msgid "Movim database is up to date" -msgstr "" - -#: ../cache/locales.php:30 -msgid "Database Type" -msgstr "" - -#: ../cache/locales.php:31 ../cache/locales.php:50 ../cache/locales.php:540 -msgid "Username" -msgstr "" - -#: ../cache/locales.php:32 ../cache/locales.php:51 ../cache/locales.php:282 -#: ../cache/locales.php:541 +#: [account]password [db]password [credentials]password [form]password +#: [input]password msgid "Password" msgstr "Pasvorto" -#: ../cache/locales.php:33 +#: [account]password_confirmation +#, fuzzy +msgid "Password confirmation" +msgstr "%s - Agordaĵoj" + +#: [account]password_changed +msgid "The password has been updated" +msgstr "" + +#: [account]password_not_valid +msgid "Please provide a valid password (6 characters minimum)" +msgstr "" + +#: [account]password_not_same +msgid "The provided passwords are not the same" +msgstr "" + +#: [account]delete_title +msgid "Delete my account" +msgstr "" + +#: [account]delete +msgid "Delete your account" +msgstr "" + +#: [account]delete_text +msgid "You will delete your XMPP account and all the relative information linked to it (profile, contacts and publications)." +msgstr "" + +#: [account]delete_text_confirm +msgid "Are you sure that you want to delete it ?" +msgstr "" + +#: [account]gateway_title +msgid "Gateway" +msgstr "" + +#: [create]title [subscribe]title +msgid "Create a new account" +msgstr "" + +#: [create]notfound +msgid "No account creation form found on the server" +msgstr "" + +#: [create]server_on +msgid "on" +msgstr "" + +#: [create]successfull +msgid "Your acccount has been successfully registered" +msgstr "" + +#: [create]loading +msgid "Loading" +msgstr "" + +#: [error]not_acceptable +msgid "Not Acceptable" +msgstr "" + +#: [error]service_unavailable +msgid "The registration system of this server is currently unavailable" +msgstr "" + +#: [oob]about +msgid "This server use an external system for the registration, please click on the following URL." +msgstr "" + +#: [adhoc]title +msgid "Actions" +msgstr "" + +#: [db]legend [schema]database +msgid "Database" +msgstr "" + +#: [db]connect_error +msgid "Modl wasn't able to connect to the database" +msgstr "" + +#: [db]connect_success +msgid "Movim is connected to the database" +msgstr "" + +#: [db]update +msgid "The database need to be updated" +msgstr "" + +#: [db]up_to_date +msgid "Movim database is up to date" +msgstr "" + +#: [db]type +msgid "Database Type" +msgstr "" + +#: [db]username [credentials]username [input]username +msgid "Username" +msgstr "" + +#: [db]host msgid "Host" msgstr "" -#: ../cache/locales.php:34 +#: [db]port msgid "Port" msgstr "" -#: ../cache/locales.php:35 -msgid "Database Name" -msgstr "" +#: [db]name +#, fuzzy +msgid "Database sName" +msgstr "Datumbazo trovita" -#: ../cache/locales.php:36 +#: [admin]general msgid "General Settings" msgstr "" -#: ../cache/locales.php:37 +#: [general]theme msgid "Theme" msgstr "" -#: ../cache/locales.php:38 +#: [general]language msgid "Default language" msgstr "" -#: ../cache/locales.php:39 -msgid "Environment" -msgstr "" - -#: ../cache/locales.php:40 +#: [general]log_verbosity msgid "Log verbosity" msgstr "" -#: ../cache/locales.php:41 +#: [general]timezone msgid "Server Timezone" msgstr "" -#: ../cache/locales.php:42 +#: [general]limit msgid "User folder size limit (in bytes)" msgstr "" -#: ../cache/locales.php:43 +#: [websocket]title msgid "WebSocket Configuration" msgstr "" -#: ../cache/locales.php:44 +#: [websocket]info msgid "Enter here a valid WebSocket URI in the form" msgstr "" -#: ../cache/locales.php:45 +#: [websocket]label msgid "WebSocket URI" msgstr "" -#: ../cache/locales.php:46 -msgid "" -"If you change the URI, please restart the daemon to reload the configuration" +#: [websocket]save_info +msgid "If you change the URI, please restart the daemon to reload the configuration" msgstr "" -#: ../cache/locales.php:47 +#: [websocket]publics msgid "Public WebSockets" msgstr "" -#: ../cache/locales.php:48 +#: [credentials]title msgid "Administration Credential" msgstr "" -#: ../cache/locales.php:49 +#: [credentials]info msgid "Change the default credentials admin/password" msgstr "" -#: ../cache/locales.php:52 +#: [credentials]re_password msgid "Retype password" msgstr "" -#: ../cache/locales.php:53 +#: [whitelist]title msgid "Whitelist - XMPP Server" msgstr "" -#: ../cache/locales.php:54 -msgid "" -"If you want to specify a list of authorized XMPP servers on your Movim pod " -"and forbid the connection on all the others please put their domain name " -"here, with comma (ex: movim.eu,jabber.fr)" +#: [whitelist]info1 +msgid "If you want to specify a list of authorized XMPP servers on your Movim pod and forbid the connection on all the others please put their domain name here, with comma (ex: movim.eu,jabber.fr)" msgstr "" -#: ../cache/locales.php:55 -msgid "" -"Leave this field blank if you allow the access to all the XMPP accounts." +#: [whitelist]info2 +msgid "Leave this field blank if you allow the access to all the XMPP accounts." msgstr "" -#: ../cache/locales.php:56 +#: [whitelist]label msgid "List of whitelisted XMPP servers" msgstr "" -#: ../cache/locales.php:57 ../cache/locales.php:61 +#: [information]title +#, fuzzy +msgctxt "[information]title" msgid "Information Message" -msgstr "" +msgstr "Generalaj informoj" -#: ../cache/locales.php:58 +#: [information]description msgid "Description" msgstr "" -#: ../cache/locales.php:59 +#: [information]info1 msgid "This message will be displayed on the login page" msgstr "" -#: ../cache/locales.php:60 -msgid "Leave this field blank if you don't want to show any message." +#: [information]info2 +msgid "Leave this field blank if you dont want to show any message." msgstr "" -#: ../cache/locales.php:62 +#: [information]label +#, fuzzy +msgctxt "[information]label" +msgid "Information Message" +msgstr "Generalaj informoj" + +#: [log]empty msgid "Empty" msgstr "" -#: ../cache/locales.php:63 +#: [log]syslog msgid "Syslog" msgstr "" -#: ../cache/locales.php:64 +#: [log]syslog_files msgid "Syslog and files" msgstr "" -#: ../cache/locales.php:65 +#: [rewrite]title msgid "URL Rewriting" msgstr "" -#: ../cache/locales.php:66 +#: [rewrite]info msgid "The URL Rewriting can be enabled" msgstr "" -#: ../cache/locales.php:67 +#: [admin]compatibility msgid "General Overview" msgstr "" -#: ../cache/locales.php:68 -msgid "" -"Movim has found some issues or things that need to be fixed or improved" +#: [compatibility]info +msgid "Movim has found some issues or things that need to be fixed or improved" msgstr "" -#: ../cache/locales.php:69 -#, php-format +#: [compatibility]php1 msgid "Update your PHP-Version: %s" msgstr "" -#: ../cache/locales.php:70 +#: [compatibility]php2 msgid "Required: 5.3.0" msgstr "" -#: ../cache/locales.php:71 +#: [compatibility]curl msgid "Install the php5-curl library" msgstr "" -#: ../cache/locales.php:72 +#: [compatibility]imagick msgid "Install the php5-imagick library" msgstr "" -#: ../cache/locales.php:73 +#: [compatibility]gd msgid "Install the php5-gd library" msgstr "" -#: ../cache/locales.php:74 -msgid "Read and write rights for the webserver in Movim's root directory" -msgstr "" +#: [compatibility]rights +#, fuzzy +msgid "Read and write rights for the webserver in Movims root directory" +msgstr "Ebligi legi kaj skribi rajtojn on la radika dosierujo de Movim" -#: ../cache/locales.php:75 +#: [compatibility]rewrite msgid "The URL Rewriting support is currently disabled" msgstr "" -#: ../cache/locales.php:76 +#: [compatibility]db msgid "The database need to be updated, go to the database panel to fix this" msgstr "" -#: ../cache/locales.php:77 -msgid "" -"WebSocket connection error, check if the Movim Daemon is running and is " -"reacheable" +#: [compatibility]websocket +msgid "WebSocket connection error, check if the Movim Daemon is running and is reachable" msgstr "" -#: ../cache/locales.php:78 -msgid "" -"XMPP Websocket connection error, please check the validity of the URL given " -"in the General Configuration" +#: [compatibility]xmpp_websocket +msgid "XMPP Websocket connection error, please check the validity of the URL given in the General Configuration" msgstr "" -#: ../cache/locales.php:79 +#: [schema]browser msgid "Browser" msgstr "" -#: ../cache/locales.php:80 +#: [schema]movim msgid "Movim Core" msgstr "" -#: ../cache/locales.php:81 +#: [schema]daemon msgid "Movim Daemon" msgstr "" -#: ../cache/locales.php:84 +#: [schema]xmpp msgid "XMPP" msgstr "" -#: ../cache/locales.php:86 -#, php-format -msgid "" -"Here you can register your pod on the official %sMovim API%s and be listed " -"on %sthe pods page%s." +#: [api]info +msgid "Here you can register your pod on the official %sMovim API%s and be listed on %sthe pods page%s." msgstr "" -#: ../cache/locales.php:87 +#: [api]register msgid "Your pod is not registered on the API" msgstr "" -#: ../cache/locales.php:88 +#: [api]registered msgid "Your pod is registered on the API" msgstr "" -#: ../cache/locales.php:89 +#: [api]wait msgid "Your pod is not yet validated" msgstr "" -#: ../cache/locales.php:90 +#: [api]validated msgid "Your pod is validated" msgstr "" -#: ../cache/locales.php:91 -msgid "" -"You asked to be removed from the API, this request will be processed in a " -"couple of hours" +#: [api]unregister +msgid "You asked to be removed from the API, this request will be processed in a couple of hours" msgstr "" -#: ../cache/locales.php:92 ../cache/locales.php:147 +#: [api]conf_updated [config]updated msgid "Configuration updated" msgstr "" -#: ../cache/locales.php:93 +#: [avatar]file msgid "File" msgstr "" -#: ../cache/locales.php:94 +#: [avatar]use_it msgid "Use it" msgstr "" -#: ../cache/locales.php:95 +#: [avatar]webcam msgid "Webcam" msgstr "" -#: ../cache/locales.php:96 +#: [avatar]cheese msgid "Cheese !" msgstr "" -#: ../cache/locales.php:97 +#: [avatar]snapshot msgid "Take a webcam snapshot" msgstr "" -#: ../cache/locales.php:98 +#: [avatar]updated msgid "Avatar Updated" msgstr "" -#: ../cache/locales.php:99 +#: [avatar]not_updated msgid "Avatar Not Updated" msgstr "" -#: ../cache/locales.php:100 ../cache/locales.php:415 -#, php-format +#: [blog]title [feed]title msgid "%s's feed" msgstr "" -#: ../cache/locales.php:101 +#: [blog]empty msgid "This user has not posted anything right now" msgstr "" -#: ../cache/locales.php:102 +#: [title]conferences msgid "Conferences" msgstr "" -#: ../cache/locales.php:103 ../cache/locales.php:193 ../cache/locales.php:217 -#: ../cache/locales.php:468 +#: [title]groups [group]empty_title [menu]groups [page]groups msgid "Groups" msgstr "" -#: ../cache/locales.php:104 +#: [chatroom]add msgid "Add a new Chat Room" msgstr "" -#: ../cache/locales.php:105 ../cache/locales.php:368 +#: [chatroom]id [chatrooms]id msgid "Chat Room ID" msgstr "" -#: ../cache/locales.php:106 ../cache/locales.php:116 ../cache/locales.php:156 -#: ../cache/locales.php:361 ../cache/locales.php:369 ../cache/locales.php:424 +#: [chatroom]name +#, fuzzy +msgctxt "[chatroom]name" msgid "Name" msgstr "Nomo" -#: ../cache/locales.php:107 ../cache/locales.php:157 ../cache/locales.php:371 -#: ../cache/locales.php:425 +#: [chatroom]nickname [general]nickname [chatrooms]nickname msgid "Nickname" msgstr "Kromnomo" -#: ../cache/locales.php:108 +#: [chatroom]autojoin_label msgid "Do you want do join automaticaly this Chat Room ?" msgstr "" -#: ../cache/locales.php:109 ../cache/locales.php:372 +#: [chatroom]bad_id [chatrooms]bad_id msgid "Bad Chatroom ID" msgstr "" -#: ../cache/locales.php:110 ../cache/locales.php:373 +#: [chatroom]empty_name [chatrooms]empty_name msgid "Empty name" msgstr "" -#: ../cache/locales.php:111 ../cache/locales.php:380 +#: [bookmarks]updated msgid "Bookmarks updated" msgstr "" -#: ../cache/locales.php:112 -msgid "An error occured : " +#: [bookmarks]error +msgid "An error occured :" msgstr "" -#: ../cache/locales.php:113 +#: [bookmarks]configure msgid "Configure" msgstr "" -#: ../cache/locales.php:114 +#: [url]add msgid "Add a new URL" msgstr "" -#: ../cache/locales.php:115 +#: [url]url msgid "URL" msgstr "" -#: ../cache/locales.php:117 +#: [url]name +#, fuzzy +msgctxt "[url]name" +msgid "Name" +msgstr "Nomo" + +#: [message]published msgid "Message Published" msgstr "" -#: ../cache/locales.php:118 ../cache/locales.php:138 +#: [message]encrypted msgid "Encrypted message" msgstr "" -#: ../cache/locales.php:119 +#: [message]composing [chats]composing msgid "Composing..." msgstr "" -#: ../cache/locales.php:120 +#: [message]paused [chats]paused msgid "Paused..." msgstr "" -#: ../cache/locales.php:121 +#: [message]gone msgid "Contact gone" msgstr "" -#: ../cache/locales.php:122 -#, php-format +#: [chat]attention msgid "%s needs your attention" msgstr "" -#: ../cache/locales.php:123 +#: [chat]placeholder msgid "Your message here..." msgstr "" -#: ../cache/locales.php:124 +#: [chat]smileys msgid "Smileys" msgstr "" -#: ../cache/locales.php:125 ../cache/locales.php:139 +#: [chat]empty_title [button]chat msgid "Chat" msgstr "Tujmesaĝilo" -#: ../cache/locales.php:126 +#: [chat]empty_text msgid "Discuss with your contacts" msgstr "" -#: ../cache/locales.php:127 -msgid "Members" -msgstr "" - -#: ../cache/locales.php:128 ../cache/locales.php:376 -msgid "Connected to the chatroom" -msgstr "" - -#: ../cache/locales.php:129 ../cache/locales.php:377 -msgid "Disconnected from the chatroom" -msgstr "" - -#: ../cache/locales.php:130 ../cache/locales.php:200 ../cache/locales.php:469 -msgid "Configuration" -msgstr "Agordaĵoj" - -#: ../cache/locales.php:131 -msgid "Configuration saved" -msgstr "" - -#: ../cache/locales.php:132 -msgid "Subject" -msgstr "" - -#: ../cache/locales.php:133 -msgid "Subject changed" -msgstr "" - -#: ../cache/locales.php:134 -msgid "Open a new conversation by clicking on the plus button bellow" -msgstr "" - -#: ../cache/locales.php:135 -msgid "Chat with a contact" -msgstr "" - -#: ../cache/locales.php:136 +#: [chat]frequent [chats]frequent msgid "Frequent contacts" msgstr "" -#: ../cache/locales.php:137 +#: [chatroom]members +msgid "Members" +msgstr "" + +#: [chatroom]connected [chatrooms]connected +msgid "Connected to the chatroom" +msgstr "" + +#: [chatroom]disconnected [chatrooms]disconnected +msgid "Disconnected from the chatroom" +msgstr "" + +#: [chatroom]config [group]configuration [page]configuration +msgid "Configuration" +msgstr "Agordaĵoj" + +#: [chatroom]config_saved +msgid "Configuration saved" +msgstr "" + +#: [chatroom]subject +msgid "Subject" +msgstr "" + +#: [chatroom]subject_changed +msgid "Subject changed" +msgstr "" + +#: [chats]empty_title +msgid "No chats yet..." +msgstr "" + +#: [chats]empty +msgid "Open a new conversation by clicking on the plus button bellow or visit the Contacts page." +msgstr "" + +#: [chats]add +msgid "Chat with a contact" +msgstr "" + +#: [chats]more msgid "Load more contacts" msgstr "" -#: ../cache/locales.php:140 -msgid "General" -msgstr "" - -#: ../cache/locales.php:141 -msgid "Language" -msgstr "Lingvo" - -#: ../cache/locales.php:142 -msgid "Roster display" -msgstr "" - -#: ../cache/locales.php:143 -msgid "Show the offline contacts" -msgstr "" - -#: ../cache/locales.php:144 -msgid "Hide the offline contacts" -msgstr "" - -#: ../cache/locales.php:145 -msgid "Appearence" -msgstr "" - -#: ../cache/locales.php:146 -msgid "This configuration is shared wherever you are connected !" -msgstr "" - -#: ../cache/locales.php:148 -msgid "Notify on incoming message" -msgstr "" - -#: ../cache/locales.php:149 -msgid "Use desktop notifications" -msgstr "" - -#: ../cache/locales.php:150 +#: [title]data msgid "Data" msgstr "" -#: ../cache/locales.php:151 +#: [title]cache msgid "Cache" msgstr "" -#: ../cache/locales.php:152 ../cache/locales.php:218 ../cache/locales.php:466 +#: [title]contacts [menu]contacts [page]contacts msgid "Contacts" msgstr "" -#: ../cache/locales.php:153 ../cache/locales.php:480 +#: [title]posts [page]posts msgid "Posts" msgstr "" -#: ../cache/locales.php:154 +#: [title]messages msgid "Messages" msgstr "" -#: ../cache/locales.php:155 ../cache/locales.php:423 +#: [config]general +msgid "General" +msgstr "" + +#: [config]language +msgid "Language" +msgstr "Lingvo" + +#: [config]roster +msgid "Roster display" +msgstr "" + +#: [config]roster_show +msgid "Show the offline contacts" +msgstr "" + +#: [config]roster_hide +msgid "Hide the offline contacts" +msgstr "" + +#: [config]appearence +msgid "Appearence" +msgstr "" + +#: [config]info +msgid "This configuration is shared wherever you are connected" +msgstr "" + +#: [notifications]message +msgid "Notify on incoming message" +msgstr "" + +#: [notifications]desktop +msgid "Use desktop notifications" +msgstr "" + +#: [general]legend [general]general_title msgid "General Informations" msgstr "Generalaj informoj" -#: ../cache/locales.php:158 ../cache/locales.php:427 +#: [general]name [public_groups]name [chatrooms]name +msgid "Name" +msgstr "Nomo" + +#: [general]date_of_birth msgid "Date of Birth" msgstr "Naskiĝdato" -#: ../cache/locales.php:159 ../cache/locales.php:428 +#: [general]gender msgid "Gender" msgstr "" -#: ../cache/locales.php:160 ../cache/locales.php:429 +#: [general]marital msgid "Marital Status" msgstr "" -#: ../cache/locales.php:161 ../cache/locales.php:426 +#: [general]email msgid "Email" msgstr "" -#: ../cache/locales.php:162 ../cache/locales.php:430 +#: [general]website msgid "Website" msgstr "Retpaĝaro" -#: ../cache/locales.php:163 ../cache/locales.php:431 +#: [general]about msgid "About Me" msgstr "" -#: ../cache/locales.php:164 +#: [general]accounts msgid "Other Accounts" msgstr "" -#: ../cache/locales.php:165 +#: [general]tune msgid "Is Listening" msgstr "" -#: ../cache/locales.php:166 ../cache/locales.php:432 +#: [position]legend [position]position_title msgid "Geographic Position" msgstr "" -#: ../cache/locales.php:167 ../cache/locales.php:433 +#: [position]locality msgid "Locality" msgstr "" -#: ../cache/locales.php:168 ../cache/locales.php:434 +#: [position]country msgid "Country" msgstr "" -#: ../cache/locales.php:169 +#: [mood]title msgid "Mood" msgstr "" -#: ../cache/locales.php:170 +#: [mood]im msgid "I'm " msgstr "" -#: ../cache/locales.php:171 +#: [listen]title msgid "Listening" msgstr "" -#: ../cache/locales.php:173 +#: [last]title msgid "Last seen" msgstr "" -#: ../cache/locales.php:174 +#: [client]title msgid "Client Informations" msgstr "" -#: ../cache/locales.php:175 +#: [explore]last_registered msgid "Last registered" msgstr "" -#: ../cache/locales.php:176 +#: [explore]explore msgid "Find some new friends" msgstr "" -#: ../cache/locales.php:177 ../cache/locales.php:533 +#: [edit]title [button]edit msgid "Edit" msgstr "" -#: ../cache/locales.php:178 +#: [edit]alias msgid "Alias" msgstr "Kromnomo" -#: ../cache/locales.php:179 +#: [edit]group msgid "Group" msgstr "" -#: ../cache/locales.php:180 ../cache/locales.php:400 +#: [edit]updated [roster]updated msgid "Contact updated" msgstr "" -#: ../cache/locales.php:181 +#: [delete]title msgid "Are you sure?" msgstr "" -#: ../cache/locales.php:182 -msgid "" -"You are going to delete one of your contacts, please confirm your action" +#: [delete]text +msgid "You are going to delete one of your contacts, please confirm your action" msgstr "" -#: ../cache/locales.php:183 -#, php-format +#: [age]years msgid "%s years" msgstr "" -#: ../cache/locales.php:184 +#: [blog]last msgid "Last public post" msgstr "" -#: ../cache/locales.php:185 +#: [subscription]to +#, fuzzy +msgid "You can see this contact status" +msgstr "Forigi tiun kontakton" + +#: [subscription]to_button +msgid "Share my status" +msgstr "" + +#: [subscription]to_text +msgid "But this contact cannot see yours" +msgstr "" + +#: [subscription]from +msgid "You are not subscribed to this contact" +msgstr "" + +#: [subscription]from_button +msgid "Ask to subscribe" +msgstr "" + +#: [subscription]from_text +msgid "But this contact can still see if you are online" +msgstr "" + +#: [subscription]nil +msgid "No subscriptions" +msgstr "" + +#: [subscription]nil_button +msgid "Invite" +msgstr "" + +#: [subscription]nil_text +msgid "This contact is in your contact list but there is no subscriptions between the two accounts" +msgstr "" + +#: [group]subscribe msgid "Subscribe" msgstr "" -#: ../cache/locales.php:186 +#: [group]subscribed msgid "Subscribed" msgstr "" -#: ../cache/locales.php:187 +#: [group]unsubscribe msgid "Unsubscribe" msgstr "" -#: ../cache/locales.php:188 +#: [group]unsubscribe_text msgid "You are going to unsubscribe from this Group" msgstr "" -#: ../cache/locales.php:189 +#: [group]unsubscribed msgid "Unsubscribed" msgstr "" -#: ../cache/locales.php:190 +#: [group]share_label msgid "Make your membership to this group public to your friends" msgstr "" -#: ../cache/locales.php:191 +#: [group]label_label msgid "Give a label for this group" msgstr "" -#: ../cache/locales.php:192 +#: [group]sure msgid "Are you sure ?" msgstr "" -#: ../cache/locales.php:194 +#: [group]empty_text msgid "Discover, follow and share" msgstr "" -#: ../cache/locales.php:195 +#: [group]empty msgid "Something bad happened to this group" msgstr "" -#: ../cache/locales.php:196 +#: [group]config_saved msgid "Group configuration saved" msgstr "" -#: ../cache/locales.php:197 +#: [group]delete_title msgid "Delete the group" msgstr "" -#: ../cache/locales.php:198 -msgid "" -"You are going to delete the following group. Please confirm your action." +#: [group]delete_text +msgid "You are going to delete the following group. Please confirm your action." msgstr "" -#: ../cache/locales.php:199 -msgid "" -"It seems that this group doesn't exists anymore. Do you want to remove it " -"from your subscriptions?" +#: [group]delete_clean_text +msgid "It seems that this group doesn't exists anymore. Do you want to remove it from your subscriptions?" msgstr "" -#: ../cache/locales.php:201 ../cache/locales.php:408 +#: [group]counter +msgid "%s groups on this server" +msgstr "" + +#: [group]subscriptions [statistics]subscriptions msgid "Subscriptions" msgstr "" -#: ../cache/locales.php:202 ../cache/locales.php:290 +#: [group]servers +msgid "Groups servers" +msgstr "" + +#: [group]search_server +msgid "Search for a new server" +msgstr "" + +#: [group]help_info1 +msgid "Groups are the perfect way to share posts about topics that you like with all the other Movim's users." +msgstr "" + +#: [group]help_info2 +msgid "Choose a server and a Group and subscribe to it using the %s button in the header. You can also create a new one using the %s button." +msgstr "" + +#: [group]help_info3 +msgid "Done? You can now publish a new post in the Group by using the %s button." +msgstr "" + +#: [group]help_info4 +msgid "You will find a list of all your subscribed Groups in My Subscriptions and receive instantly all the new incoming posts in the %sNews%s page." +msgstr "" + +#: [groups]empty_title msgid "Hello" msgstr "" -#: ../cache/locales.php:203 ../cache/locales.php:225 ../cache/locales.php:291 +#: [groups]contact_post [hello]contact_post [menu]contact_post msgid "Contact post" msgstr "" -#: ../cache/locales.php:204 -msgid "" -"You don't have any subscriptions yet, select a group server above to start " -"exploring." +#: [groups]empty_text1 +msgid "You don't have any subscriptions yet, select a group server above to start exploring." msgstr "" -#: ../cache/locales.php:205 +#: [groups]empty_text2 msgid "Subscribe to your favorite feeds by bookmarking them." msgstr "" -#: ../cache/locales.php:206 +#: [groups]subscriptions msgid "My Subscriptions" msgstr "" -#: ../cache/locales.php:207 +#: [groups]add msgid "Create a new Group" msgstr "" -#: ../cache/locales.php:208 +#: [groups]name msgid "Group name" msgstr "" -#: ../cache/locales.php:209 +#: [groups]name_example msgid "My Little Pony - Fan Club" msgstr "" -#: ../cache/locales.php:210 +#: [groups]created msgid "Group created successfully" msgstr "" -#: ../cache/locales.php:211 +#: [groups]deleted msgid "Group deleted successfully" msgstr "" -#: ../cache/locales.php:212 +#: [groups]name_error msgid "Please provide a valid group name (4 characters minimum)" msgstr "" -#: ../cache/locales.php:213 +#: [groups]no_creation msgid "You cannot create a new Group on this server" msgstr "" -#: ../cache/locales.php:214 -#, php-format +#: [groups]sub msgid "%s subscribers" msgstr "" -#: ../cache/locales.php:215 -#, php-format +#: [groups]num msgid "%s posts" msgstr "" -#: ../cache/locales.php:216 +#: [groups]disco_error +msgid "This server doesn't exists" +msgstr "" + +#: [menu]all msgid "All" msgstr "" -#: ../cache/locales.php:219 +#: [menu]refresh msgid "Refresh all the streams" msgstr "" -#: ../cache/locales.php:220 ../cache/locales.php:402 -msgid "Search" +#: [roster]search +msgid "Search in your contacts" msgstr "" -#: ../cache/locales.php:221 +#: [hello]active_contacts +msgid "Active contacts" +msgstr "" + +#: [hello]chat msgid "Go on the Chat page" msgstr "" -#: ../cache/locales.php:222 -msgid "Read all theses articles on the News page" -msgstr "" - -#: ../cache/locales.php:223 -msgid "Visit your public blog" -msgstr "" - -#: ../cache/locales.php:224 -msgid "See your public posts and share them with all your contacts" -msgstr "" - -#: ../cache/locales.php:226 -msgid "Universal share button" -msgstr "" - -#: ../cache/locales.php:227 -msgid "" -"Bookmark or drag and drop the following button in your toolbar and use it on " -"all the pages you want to share on Movim" -msgstr "" - -#: ../cache/locales.php:228 -msgid "Share on Movim" -msgstr "" - -#: ../cache/locales.php:229 -msgid "Frequently Asked Questions" -msgstr "" - -#: ../cache/locales.php:230 -msgid "What do the little banners refer to ?" -msgstr "" - -#: ../cache/locales.php:231 -msgid "" -"Thanks to these five little banners, you can quickly identitfy the level of " -"confdentiality applied to the information you provide." -msgstr "" - -#: ../cache/locales.php:232 -msgid "White, only you can see the information" -msgstr "" - -#: ../cache/locales.php:233 -msgid "Green, you have chosen some contacts who can see your information" -msgstr "" - -#: ../cache/locales.php:234 -msgid "Orange, all your contact list can see your information" -msgstr "" - -#: ../cache/locales.php:235 -msgid "Red, everybody in the XMPP network can see your information" -msgstr "" - -#: ../cache/locales.php:236 -msgid "Black, the whole Internet can see your information" -msgstr "" - -#: ../cache/locales.php:237 -msgid "Looking for some documentation ?" -msgstr "" - -#: ../cache/locales.php:238 -msgid "Read the Wiki" -msgstr "" - -#: ../cache/locales.php:239 -msgid "Talk with us by email ?" -msgstr "" - -#: ../cache/locales.php:240 -msgid "Join the Mailing List" -msgstr "" - -#: ../cache/locales.php:241 -msgid "Chat with the team ?" -msgstr "" - -#: ../cache/locales.php:242 -msgid "Join the Chatroom" -msgstr "" - -#: ../cache/locales.php:243 -msgid "Location node created" -msgstr "" - -#: ../cache/locales.php:244 -msgid "Bookmark node created" -msgstr "" - -#: ../cache/locales.php:245 -msgid "Profile node created" -msgstr "" - -#: ../cache/locales.php:246 -msgid "Avatar node created" -msgstr "" - -#: ../cache/locales.php:247 -msgid "Subscriptions node created" -msgstr "" - -#: ../cache/locales.php:248 -msgid "Microblog node created" -msgstr "" - -#: ../cache/locales.php:249 -msgid "Location" -msgstr "" - -#: ../cache/locales.php:250 -msgid "Wrong position" -msgstr "" - -#: ../cache/locales.php:251 -msgid "Location updated" -msgstr "" - -#: ../cache/locales.php:252 -msgid "Update my position" -msgstr "" - -#: ../cache/locales.php:253 -msgid "Wrong username" -msgstr "" - -#: ../cache/locales.php:254 -msgid "Invalid JID" -msgstr "" - -#: ../cache/locales.php:255 -msgid "Empty Challenge from the server" -msgstr "" - -#: ../cache/locales.php:256 -msgid "XMPP Domain error, your account is not a correct Jabber ID" -msgstr "" - -#: ../cache/locales.php:257 -msgid "Some data are missing !" -msgstr "" - -#: ../cache/locales.php:258 -msgid "Wrong password" -msgstr "Malkorekta pasvorto" - -#: ../cache/locales.php:259 -msgid "Internal server error" -msgstr "" - -#: ../cache/locales.php:260 -msgid "Session error" -msgstr "" - -#: ../cache/locales.php:261 -msgid "Account successfully created" -msgstr "" - -#: ../cache/locales.php:262 ../cache/locales.php:271 -msgid "Your XMPP server is unauthorized" -msgstr "" - -#: ../cache/locales.php:263 -msgid "The server takes too much time to respond" -msgstr "" - -#: ../cache/locales.php:264 -msgid "Your web browser is too old to use with Movim." -msgstr "" - -#: ../cache/locales.php:265 -msgid "" -"Movim cannot talk with the server, please try again later (Websocket " -"connection error)" -msgstr "" - -#: ../cache/locales.php:266 -msgid "Impossible login" -msgstr "" - -#: ../cache/locales.php:267 -msgid "Oops!" -msgstr "" - -#: ../cache/locales.php:268 ../cache/locales.php:449 ../cache/locales.php:455 -msgid "Unknown error" -msgstr "" - -#: ../cache/locales.php:269 -msgid "Invalid username format" -msgstr "" - -#: ../cache/locales.php:270 -msgid "Invalid password format" -msgstr "" - -#: ../cache/locales.php:272 -msgid "A Movim session is already open on an other device" -msgstr "" - -#: ../cache/locales.php:273 -msgid "Movim failed to authenticate. You entered wrong data" -msgstr "" - -#: ../cache/locales.php:274 -msgid "Authentication mechanism not supported by Movim" -msgstr "" - -#: ../cache/locales.php:275 -msgid "The XMPP authentification failed" -msgstr "" - -#: ../cache/locales.php:276 -#, php-format -msgid "" -"You can login with Facebook (chat only) using %syour.id@chat.facebook.com%s " -"and your password" -msgstr "" - -#: ../cache/locales.php:277 -#, php-format -msgid "%sGmail accounts are also compatible%s but are not fully supported" -msgstr "" - -#: ../cache/locales.php:278 -msgid "You can login using your favorite Jabber account" -msgstr "" - -#: ../cache/locales.php:279 -msgid "or with our demonstration account" -msgstr "" - -#: ../cache/locales.php:280 ../cache/locales.php:435 -msgid "Accounts" -msgstr "" - -#: ../cache/locales.php:281 -msgid "My address" -msgstr "Mia adreso" - -#: ../cache/locales.php:283 -msgid "Create one !" -msgstr "" - -#: ../cache/locales.php:284 -msgid "No account yet ?" -msgstr "" - -#: ../cache/locales.php:285 -msgid "Another account" -msgstr "" - -#: ../cache/locales.php:286 -msgid "You can login with accounts from theses servers" -msgstr "" - -#: ../cache/locales.php:287 -msgid "Connected" -msgstr "" - -#: ../cache/locales.php:288 -msgid "Population" -msgstr "" - -#: ../cache/locales.php:289 -msgid "Bad nickname (between 4 and 40 characters)" -msgstr "" - -#: ../cache/locales.php:292 -msgid "" -"Welcome on your news feed, here you will see all the posts published in the " -"groups you have subscribed." -msgstr "" - -#: ../cache/locales.php:293 -msgid "Refreshing all the streams" -msgstr "" - -#: ../cache/locales.php:294 -msgid "This post is public" -msgstr "" - -#: ../cache/locales.php:295 -msgid "Manage your members" -msgstr "" - -#: ../cache/locales.php:296 -msgid "Get the members" -msgstr "" - -#: ../cache/locales.php:297 -msgid "Affiliations saved" -msgstr "" - -#: ../cache/locales.php:298 -msgid "Manage your subscriptions" -msgstr "" - -#: ../cache/locales.php:299 -msgid "Manage the subscriptions" -msgstr "" - -#: ../cache/locales.php:300 -msgid "Get the subscriptions" -msgstr "" - -#: ../cache/locales.php:301 -msgid "Subscriptions saved" -msgstr "" - -#: ../cache/locales.php:302 -msgid "Pending Invitations" -msgstr "" - -#: ../cache/locales.php:303 -#, php-format -msgid "%s wants to talk with you" -msgstr "" - -#: ../cache/locales.php:304 -msgid "Manage" -msgstr "" - -#: ../cache/locales.php:305 ../cache/locales.php:338 -msgid "News Feed" -msgstr "" - -#: ../cache/locales.php:306 ../cache/locales.php:339 -msgid "Discover and register to the groups you are interested in" -msgstr "" - -#: ../cache/locales.php:307 ../cache/locales.php:340 ../cache/locales.php:482 -msgid "Preview" -msgstr "" - -#: ../cache/locales.php:308 ../cache/locales.php:341 ../cache/locales.php:478 -msgid "Help" -msgstr "Helpo" - -#: ../cache/locales.php:309 ../cache/locales.php:342 -msgid "More help" -msgstr "" - -#: ../cache/locales.php:310 ../cache/locales.php:343 -msgid "Markdown syntax manual" -msgstr "" - -#: ../cache/locales.php:311 ../cache/locales.php:344 ../cache/locales.php:681 -msgid "Title" -msgstr "" - -#: ../cache/locales.php:312 ../cache/locales.php:345 -msgid "Content" -msgstr "" - -#: ../cache/locales.php:313 ../cache/locales.php:346 -msgid "Link" -msgstr "" - -#: ../cache/locales.php:314 ../cache/locales.php:347 -msgid "Tags" -msgstr "" - -#: ../cache/locales.php:315 ../cache/locales.php:348 -msgid "Please enter a valid url" -msgstr "" - -#: ../cache/locales.php:316 ../cache/locales.php:349 -msgid "No content to preview" -msgstr "" - -#: ../cache/locales.php:317 ../cache/locales.php:350 ../cache/locales.php:687 -msgid "No content" -msgstr "" - -#: ../cache/locales.php:318 ../cache/locales.php:351 -msgid "Post published" -msgstr "" - -#: ../cache/locales.php:319 ../cache/locales.php:352 -msgid "Post deleted" -msgstr "" - -#: ../cache/locales.php:320 ../cache/locales.php:353 -msgid "This picture will be added to your gallery" -msgstr "" - -#: ../cache/locales.php:321 ../cache/locales.php:354 -msgid "What's Hot" -msgstr "" - -#: ../cache/locales.php:322 ../cache/locales.php:355 -msgid "New post" -msgstr "" - -#: ../cache/locales.php:323 ../cache/locales.php:357 -msgid "" -"You can also use services like Imgur or Flickr to host your picture and " -"paste the link here." -msgstr "" - -#: ../cache/locales.php:324 -#, php-format -msgid "This is a re-post from %s" -msgstr "" - -#: ../cache/locales.php:325 -#, php-format -msgid "See %s profile" -msgstr "" - -#: ../cache/locales.php:326 -msgid "Publish this post on your public feed?" -msgstr "" - -#: ../cache/locales.php:327 -msgid "Post published on your blog" -msgstr "" - -#: ../cache/locales.php:328 -msgid "Post removed from your blog" -msgstr "" - -#: ../cache/locales.php:329 ../cache/locales.php:701 -msgid "Delete this post" -msgstr "" - -#: ../cache/locales.php:330 -msgid "You are going to delete this post, please confirm your action" -msgstr "" - -#: ../cache/locales.php:331 -msgid "Comments disabled" -msgstr "" - -#: ../cache/locales.php:332 -msgid "Comment published" -msgstr "" - -#: ../cache/locales.php:333 -msgid "Disconnect" -msgstr "" - -#: ../cache/locales.php:334 -msgid "Your status here !" -msgstr "" - -#: ../cache/locales.php:335 -msgid "Status updated" -msgstr "" - -#: ../cache/locales.php:336 -msgid "Status" -msgstr "" - -#: ../cache/locales.php:337 -msgid "Presence" -msgstr "" - -#: ../cache/locales.php:356 -msgid "Publish" -msgstr "" - -#: ../cache/locales.php:358 -msgid "You cannot publish a post on this Group" -msgstr "" - -#: ../cache/locales.php:359 -msgid "" -"Some fields have been filled in. Do you still want to go back and loose " -"their content?" -msgstr "" - -#: ../cache/locales.php:360 -msgid "Shared" -msgstr "" - -#: ../cache/locales.php:362 -#, php-format -msgid "%s has been added to your public groups" -msgstr "" - -#: ../cache/locales.php:363 -#, php-format -msgid "%s has been removed from your public groups" -msgstr "" - -#: ../cache/locales.php:364 -msgid "Add a chatroom" -msgstr "" - -#: ../cache/locales.php:365 -msgid "You don't have any chatroom yet." -msgstr "" - -#: ../cache/locales.php:366 -msgid "Add one by clicking on the add button in the header." -msgstr "" - -#: ../cache/locales.php:367 -msgid "Chatrooms" -msgstr "" - -#: ../cache/locales.php:370 -msgid "My Favorite Room" -msgstr "" - -#: ../cache/locales.php:374 -msgid "Remove a chatroom" -msgstr "" - -#: ../cache/locales.php:375 -msgid "" -"You are going to remove the following chatroom. Please confirm your action." -msgstr "" - -#: ../cache/locales.php:378 -msgid "Users in the room" -msgstr "" - -#: ../cache/locales.php:379 -msgid "Please enter a correct nickname (6 to 40 characters)" -msgstr "" - -#: ../cache/locales.php:381 -msgid "Public chatroom" -msgstr "" - -#: ../cache/locales.php:382 -msgid "Please provide a room address" -msgstr "" - -#: ../cache/locales.php:383 -msgid "You are currently logued as an anonymous user." -msgstr "" - -#: ../cache/locales.php:384 -msgid "" -"You can join using your own account or create one on the login page by " -"loging out using the cross in the top-right corner." -msgstr "" - -#: ../cache/locales.php:385 -#, php-format -msgid "Login on %s" -msgstr "" - -#: ../cache/locales.php:386 -msgid "Your nickname" -msgstr "" - -#: ../cache/locales.php:387 -msgid "Ungrouped" -msgstr "" - -#: ../cache/locales.php:388 -msgid "Show disconnected contacts" -msgstr "" - -#: ../cache/locales.php:389 -msgid "Hide disconnected contacts" -msgstr "" - -#: ../cache/locales.php:390 -#, php-format -msgid "Show group %s" -msgstr "" - -#: ../cache/locales.php:391 -#, php-format -msgid "Hide group %s" -msgstr "" - -#: ../cache/locales.php:392 -msgid "Please enter a valid Jabber ID" -msgstr "" - -#: ../cache/locales.php:393 -msgid "" -"No contacts ? You can add one using the + button bellow or going to the " -"Explore page" -msgstr "" - -#: ../cache/locales.php:394 -msgid "Show/Hide" -msgstr "" - -#: ../cache/locales.php:395 -msgid "Enter the Jabber ID of your contact." -msgstr "" - -#: ../cache/locales.php:396 -msgid "Press enter to validate." -msgstr "" - -#: ../cache/locales.php:397 -msgid "JID" -msgstr "" - -#: ../cache/locales.php:398 -msgid "Results" -msgstr "" - -#: ../cache/locales.php:399 -msgid "Contact added" -msgstr "" - -#: ../cache/locales.php:401 -msgid "Contact deleted" -msgstr "" - -#: ../cache/locales.php:403 -msgid "This is not a valid url" -msgstr "" - -#: ../cache/locales.php:404 -msgid "Sharing the URL" -msgstr "" - -#: ../cache/locales.php:405 -msgid "Statistics" -msgstr "" - -#: ../cache/locales.php:406 -msgid "Since" -msgstr "" - -#: ../cache/locales.php:407 -msgid "Sessions" -msgstr "" - -#: ../cache/locales.php:409 -msgid "Monthly Subscriptions" -msgstr "" - -#: ../cache/locales.php:410 -msgid "Monthly Subscriptions Cumulated" -msgstr "" - -#: ../cache/locales.php:412 -msgid "" -"Movim is a decentralized social network, before creating a new account you " -"need to choose a server to register." -msgstr "" - -#: ../cache/locales.php:413 -msgid "Your server here ?" -msgstr "" - -#: ../cache/locales.php:414 -msgid "Contact us to add yours to the officially supported servers list" -msgstr "" - -#: ../cache/locales.php:416 -msgid "No public feed for this contact" -msgstr "" - -#: ../cache/locales.php:417 -msgid "No contact specified" -msgstr "" - -#: ../cache/locales.php:418 ../cache/locales.php:473 -msgid "Profile" -msgstr "Profilo" - -#: ../cache/locales.php:419 -msgid "Profile Updated" -msgstr "" - -#: ../cache/locales.php:420 -msgid "Profile Not Updated" -msgstr "" - -#: ../cache/locales.php:421 -msgid "Your profile is now public" -msgstr "" - -#: ../cache/locales.php:422 -msgid "Your profile is now restricted" -msgstr "" - -#: ../cache/locales.php:436 -msgid "Twitter" -msgstr "" - -#: ../cache/locales.php:437 -msgid "Skype" -msgstr "" - -#: ../cache/locales.php:438 -msgid "Yahoo" -msgstr "" - -#: ../cache/locales.php:439 -msgid "Privacy Level" -msgstr "" - -#: ../cache/locales.php:440 -msgid "Is this profile public ?" -msgstr "" - -#: ../cache/locales.php:441 -msgid "" -"Please pay attention ! By making your profile public, all the information " -"listed above will be available for all the Movim users and on the whole " -"Internet." -msgstr "" - -#: ../cache/locales.php:442 -msgid "Call" -msgstr "" - -#: ../cache/locales.php:443 -msgid "Hang up" -msgstr "" - -#: ../cache/locales.php:444 -msgid "Connection" -msgstr "" - -#: ../cache/locales.php:445 ../cache/locales.php:451 -msgid "Hung up" -msgstr "" - -#: ../cache/locales.php:446 ../cache/locales.php:452 -msgid "Your contact is busy" -msgstr "" - -#: ../cache/locales.php:447 ../cache/locales.php:453 -msgid "Declined" -msgstr "" - -#: ../cache/locales.php:448 ../cache/locales.php:454 -msgid "Remote application incompatible" -msgstr "" - -#: ../cache/locales.php:450 ../cache/locales.php:456 -msgid "Is calling you" -msgstr "" - -#: ../cache/locales.php:457 -msgid "You don't have javascript enabled. Good luck with that." -msgstr "" - -#: ../cache/locales.php:458 -msgid "" -"Movim is a kickass distributed social networking platform that protect your " -"privacy an comes with a set of awesome features." -msgstr "" - -#: ../cache/locales.php:459 -msgid "Administration" -msgstr "" - -#: ../cache/locales.php:460 -msgid "Home" -msgstr "Ĉefpaĝo" - -#: ../cache/locales.php:461 -msgid "Discover" -msgstr "" - -#: ../cache/locales.php:462 -msgid "Explore" -msgstr "" - -#: ../cache/locales.php:463 -msgid "Account Creation" -msgstr "Kreado de konto" - -#: ../cache/locales.php:464 +#: [hello]news [page]news msgid "News" msgstr "" -#: ../cache/locales.php:465 -msgid "Avatar" -msgstr "Avataro" - -#: ../cache/locales.php:467 -msgid "Chats" +#: [hello]news_page +msgid "Read all theses articles on the News page" msgstr "" -#: ../cache/locales.php:470 -msgid "Server" +#: [hello]blog_title +msgid "Visit your public blog" msgstr "" -#: ../cache/locales.php:471 -msgid "Public Groups" +#: [hello]blog_text +msgid "See your public posts and share them with all your contacts" msgstr "" -#: ../cache/locales.php:472 -msgid "Viewer" +#: [hello]share_title +msgid "Universal share button" msgstr "" -#: ../cache/locales.php:474 -msgid "Media" +#: [hello]share_text +msgid "Bookmark or drag and drop the following button in your toolbar and use it on all the pages you want to share on Movim" msgstr "" -#: ../cache/locales.php:475 -msgid "Blog" +#: [hello]share_button +msgid "Share on Movim" msgstr "" -#: ../cache/locales.php:476 -msgid "About" +#: [help]faq +msgid "Frequently Asked Questions" msgstr "" -#: ../cache/locales.php:477 -msgid "Login" +#: [banner]title +msgid "What do the little banners refer to ?" msgstr "" -#: ../cache/locales.php:479 -msgid "Feed" -msgstr "Fluo" - -#: ../cache/locales.php:481 -msgid "Gallery" +#: [banner]info1 +msgid "Thanks to these five little banners, you can quickly identitfy the level of confdentiality applied to the information you provide." msgstr "" -#: ../cache/locales.php:483 -msgid "Visio-conference" +#: [banner]white +msgid "White, only you can see the information" msgstr "" -#: ../cache/locales.php:484 -msgid "Pods" +#: [banner]green +msgid "Green, you have chosen some contacts who can see your information" msgstr "" -#: ../cache/locales.php:485 -msgid "Share" +#: [banner]orange +msgid "Orange, all your contact list can see your information" msgstr "" -#: ../cache/locales.php:486 -msgid "Room" +#: [banner]red +msgid "Red, everybody in the XMPP network can see your information" msgstr "" -#: ../cache/locales.php:487 -#, php-format -msgid "Error: %s" -msgstr "Eraro: %s" - -#: ../cache/locales.php:488 -#, php-format -msgid "Cannot load file '%s'" -msgstr "Ne povas ŝargi dosieron “%s”." - -#: ../cache/locales.php:489 -#, php-format -msgid "Route error, please set all the parameters for the page %s" +#: [banner]black +msgid "Black, the whole Internet can see your information" msgstr "" -#: ../cache/locales.php:490 -#, php-format -msgid "Requested widget '%s' doesn't exist." +#: [wiki]question +msgid "Looking for some documentation ?" msgstr "" -#: ../cache/locales.php:491 -#, php-format -msgid "Requested event '%s' not registered." +#: [wiki]button +msgid "Read the Wiki" msgstr "" -#: ../cache/locales.php:492 -msgid "Whoops!" +#: [ml]question +msgid "Talk with us by email ?" msgstr "" -#: ../cache/locales.php:493 -msgid "It seem that you don't have any pictures here?" +#: [ml]button +msgid "Join the Mailing List" msgstr "" -#: ../cache/locales.php:494 -msgid "You can try to upload a couple by going to the Media page" +#: [chatroom]question +msgid "Chat with the team ?" msgstr "" -#: ../cache/locales.php:495 -#, php-format -msgid "%s - About" +#: [chatroom]button +msgid "Join the Chatroom" msgstr "" -#: ../cache/locales.php:496 -#, php-format -msgid "%s - Account" +#: [init]location +msgid "Location node created" msgstr "" -#: ../cache/locales.php:497 -#, php-format -msgid "%s - Administration Panel" +#: [init]bookmark +msgid "Bookmark node created" msgstr "" -#: ../cache/locales.php:498 -#, php-format -msgid "%s - Blog" +#: [init]vcard4 +msgid "Profile node created" msgstr "" -#: ../cache/locales.php:499 -#, php-format -msgid "%s - Configuration" -msgstr "%s - Agordaĵoj" - -#: ../cache/locales.php:500 -#, php-format -msgid "%s - Discover" +#: [init]avatar +msgid "Avatar node created" msgstr "" -#: ../cache/locales.php:501 -#, php-format -msgid "%s - Explore" +#: [init]subscriptions +msgid "Subscriptions node created" msgstr "" -#: ../cache/locales.php:502 -#, php-format -msgid "%s - Help Page" -msgstr "%s - Helppaĝo" - -#: ../cache/locales.php:503 -#, php-format -msgid "%s - Login to Movim" -msgstr "%s - Ensaluti al Movim" - -#: ../cache/locales.php:504 -#, php-format -msgid "%s - Welcome to Movim" -msgstr "%s - Bonvenon al Movim" - -#: ../cache/locales.php:505 -#, php-format -msgid "%s - Media" +#: [init]microblog +msgid "Microblog node created" msgstr "" -#: ../cache/locales.php:506 -#, php-format -msgid "%s - News" +#: [location]title +msgid "Location" msgstr "" -#: ../cache/locales.php:507 -#, php-format -msgid "%s - Group Configuration" +#: [location]wrong_postition +msgid "Wrong position" msgstr "" -#: ../cache/locales.php:508 -#, php-format -msgid "%s - Group" +#: [location]updated +msgid "Location updated" msgstr "" -#: ../cache/locales.php:509 -#, php-format -msgid "%s - 404" +#: [location]update +msgid "Update my position" msgstr "" -#: ../cache/locales.php:510 -#, php-format -msgid "%s - Profile" -msgstr "%s - Profilo" - -#: ../cache/locales.php:511 -#, php-format -msgid "%s - Server" +#: [login_anonymous]bad_username +msgid "Bad nickname (between 4 and 40 characters)" msgstr "" -#: ../cache/locales.php:512 -msgid "Validate" +#: [error]username +msgid "Wrong username" msgstr "" -#: ../cache/locales.php:513 -msgid "Refresh" +#: [error]jid +msgid "Invalid JID" msgstr "" -#: ../cache/locales.php:514 -msgid "Add" -msgstr "Aldoni" - -#: ../cache/locales.php:515 -msgid "Delete" +#: [error]empty_challenge +msgid "Empty Challenge from the server" msgstr "" -#: ../cache/locales.php:516 -msgid "Remove" +#: [error]dns +msgid "XMPP Domain error, your account is not a correct Jabber ID" msgstr "" -#: ../cache/locales.php:517 -msgid "Cancel" +#: [error]data_missings +msgid "Some data are missing !" msgstr "" -#: ../cache/locales.php:518 -msgid "Close" +#: [error]wrong_password +msgid "Wrong password" +msgstr "Malkorekta pasvorto" + +#: [error]internal +msgid "Internal server error" msgstr "" -#: ../cache/locales.php:519 -msgid "Update" +#: [error]session +msgid "Session error" msgstr "" -#: ../cache/locales.php:520 -msgid "Updating" +#: [error]account_created +msgid "Account successfully created" msgstr "" -#: ../cache/locales.php:521 +#: [error]xmpp_unauthorized +msgctxt "[error]xmpp_unauthorized" +msgid "Your XMPP server is unauthorized" +msgstr "" + +#: [error]mec_error +msgid "The server takes too much time to respond" +msgstr "" + +#: [error]too_old +msgid "Your web browser is too old to use with Movim." +msgstr "" + +#: [error]websocket +msgid "Movim cannot talk with the server, please try again later (Websocket connection error)" +msgstr "" + +#: [error]impossible +msgid "Impossible login" +msgstr "" + +#: [error]title +msgid "Oops!" +msgstr "" + +#: [error]default [visio]unknown_error +msgid "Unknown error" +msgstr "" + +#: [error]login_format +msgid "Invalid username format" +msgstr "" + +#: [error]password_format +msgid "Invalid password format" +msgstr "" + +#: [error]unauthorized +msgctxt "[error]unauthorized" +msgid "Your XMPP server is unauthorized" +msgstr "" + +#: [error]conflict +msgid "A Movim session is already open on an other device" +msgstr "" + +#: [error]wrong_account +msgid "Movim failed to authenticate. You entered wrong data" +msgstr "" + +#: [error]mechanism +msgid "Authentication mechanism not supported by Movim" +msgstr "" + +#: [error]fail_auth +msgid "The XMPP authentification failed" +msgstr "" + +#: [account]title [accounts]accounts_title +msgid "Accounts" +msgstr "" + +#: [form]username +msgid "My address" +msgstr "Mia adreso" + +#: [form]create_one +msgid "Create one !" +msgstr "" + +#: [form]another_account +msgid "Another account" +msgstr "" + +#: [form]no_account +msgid "No account yet ?" +msgstr "" + +#: [form]whitelist.info +msgid "You can login with accounts from theses servers" +msgstr "" + +#: [form]connected +msgid "Connected" +msgstr "" + +#: [form]population +msgid "Population" +msgstr "" + +#: [menu]empty_title +msgid "No news yet..." +msgstr "" + +#: [menu]empty +msgid "Welcome on your news feed, here you will see all the posts published by your contacts and in the groups you have subscribed." +msgstr "" + +#: [menu]refresh +msgid "Refreshing all the streams" +msgstr "" + +#: [menu]public +msgid "This post is public" +msgstr "" + +#: [affiliations]title +msgid "Manage your members" +msgstr "" + +#: [affiliations]get +msgid "Get the members" +msgstr "" + +#: [affiliations]saved +msgid "Affiliations saved" +msgstr "" + +#: [subscriptions]title +msgid "Manage your subscriptions" +msgstr "" + +#: [subscriptions]info +msgid "Manage the subscriptions" +msgstr "" + +#: [subscriptions]get +msgid "Get the subscriptions" +msgstr "" + +#: [subscriptions]saved +msgid "Subscriptions saved" +msgstr "" + +#: [notifs]title +msgid "Pending Invitations" +msgstr "" + +#: [notifs]wants_to_talk +msgid "%s wants to talk with you" +msgstr "" + +#: [notifs]manage +msgid "Manage" +msgstr "" + +#: [post]news_feed +msgid "News Feed" +msgstr "" + +#: [post]placeholder +msgid "Discover and register to the groups you are interested in" +msgstr "" + +#: [post]preview [page]preview +msgid "Preview" +msgstr "" + +#: [post]help [page]help +msgid "Help" +msgstr "Helpo" + +#: [post]help_more +msgid "More help" +msgstr "" + +#: [post]help_manual +msgid "Markdown syntax manual" +msgstr "" + +#: [post]title +msgid "Title" +msgstr "" + +#: [post]content +msgid "Content" +msgstr "" + +#: [post]link +msgid "Link" +msgstr "" + +#: [post]tags +msgid "Tags" +msgstr "" + +#: [post]valid_url [publish]valid_url +msgid "Please enter a valid url" +msgstr "" + +#: [post]no_content_preview [publish]no_content_preview +msgid "No content to preview" +msgstr "" + +#: [post]no_content [publish]no_content [post]empty +msgid "No content" +msgstr "" + +#: [post]published +msgid "Post published" +msgstr "" + +#: [post]deleted +msgid "Post deleted" +msgstr "" + +#: [post]gallery +msgid "This picture will be added to your gallery" +msgstr "" + +#: [post]hot +msgid "What's Hot" +msgstr "" + +#: [post]hot_text +msgid "Posts recently published in Groups that you are not subscribed (yet)" +msgstr "" + +#: [post]new [publish]new +msgid "New post" +msgstr "" + +#: [post]embed_tip +msgid "You can also use services like Imgur or Flickr to host your picture and paste the link here." +msgstr "" + +#: [post]repost +msgid "This is a re-post from %s" +msgstr "" + +#: [post]repost_profile +msgid "See %s profile" +msgstr "" + +#: [post]public +msgid "Publish this post publicly?" +msgstr "" + +#: [post]blog_add +msgid "Post published on your blog" +msgstr "" + +#: [post]blog_remove +msgid "Post removed from your blog" +msgstr "" + +#: [post]delete_title [post]delete +msgid "Delete this post" +msgstr "" + +#: [post]delete_text +msgid "You are going to delete this post, please confirm your action" +msgstr "" + +#: [post]comments_disabled +msgid "Comments disabled" +msgstr "" + +#: [post]comment_published +msgid "Comment published" +msgstr "" + +#: [status]disconnect +msgid "Disconnect" +msgstr "" + +#: [status]here +msgid "Your status here !" +msgstr "" + +#: [status]updated +msgid "Status updated" +msgstr "" + +#: [status]status +msgid "Status" +msgstr "" + +#: [status]presence +msgid "Presence" +msgstr "" + +#: [status]online +msgid "Online with Movim" +msgstr "" + +#: [publish]title +msgid "Publish" +msgstr "" + +#: [publish]attach +msgid "Add a file or a picture to your post" +msgstr "" + +#: [publish]no_publication +msgid "You cannot publish a post on this Group" +msgstr "" + +#: [publish]form_filled +msgid "Some fields have been filled in. Do you still want to go back and loose their content?" +msgstr "" + +#: [public_groups]shared +msgid "Shared" +msgstr "" + +#: [public_groups]added +msgid "%s has been added to your public groups" +msgstr "" + +#: [rooms]add +msgid "Add a chatroom" +msgstr "" + +#: [rooms]empty_text1 +msgid "You don't have any chatroom yet." +msgstr "" + +#: [rooms]empty_text2 +msgid "Add one by clicking on the add button in the header." +msgstr "" + +#: [chatrooms]title +msgid "Chatrooms" +msgstr "" + +#: [chatrooms]name_placeholder +msgid "My Favorite Room" +msgstr "" + +#: [chatrooms]users +msgid "Users in the room" +msgstr "" + +#: [chatrooms]bad_nickname +msgid "Please enter a correct nickname (2 to 40 characters)" +msgstr "" + +#: [room]anonymous_title +msgid "Public chatroom" +msgstr "" + +#: [room]no_room +msgid "Please provide a room address" +msgstr "" + +#: [room]anonymous_text1 +msgid "You are currently logued as an anonymous user." +msgstr "" + +#: [room]anonymous_text2 +msgid "You can join using your own account or create one on the login page by loging out using the cross in the top-right corner." +msgstr "" + +#: [room]anonymous_login +msgid "Login on %s" +msgstr "" + +#: [room]nick +msgid "Your nickname" +msgstr "" + +#: [roster]ungrouped +msgid "Ungrouped" +msgstr "" + +#: [roster]show_disconnected +msgid "Show disconnected contacts" +msgstr "" + +#: [roster]hide_disconnected +msgid "Hide disconnected contacts" +msgstr "" + +#: [roster]show_group +msgid "Show group %s" +msgstr "" + +#: [roster]hide_group +msgid "Hide group %s" +msgstr "" + +#: [roster]jid_error +msgid "Please enter a valid Jabber ID" +msgstr "" + +#: [roster]no_contacts_title +msgid "No contacts ?" +msgstr "" + +#: [roster]no_contacts_text +msgid "You can add one using the + button bellow" +msgstr "" + +#: [roster]show_hide +msgid "Show/Hide" +msgstr "" + +#: [roster]add_contact_info1 +msgid "Enter the Jabber ID of your contact." +msgstr "" + +#: [roster]add_contact_info2 +msgid "Press enter to validate." +msgstr "" + +#: [roster]jid +msgid "JID" +msgstr "" + +#: [roster]results +msgid "Results" +msgstr "" + +#: [roster]added +msgid "Contact added" +msgstr "" + +#: [roster]deleted +msgid "Contact deleted" +msgstr "" + +#: [roster]search +msgid "Search" +msgstr "" + +#: [share]error +msgid "This is not a valid url" +msgstr "" + +#: [share]success +msgid "Sharing the URL" +msgstr "" + +#: [statistics]title +msgid "Statistics" +msgstr "" + +#: [statistics]since +msgid "Since" +msgstr "" + +#: [statistics]sessions +msgid "Sessions" +msgstr "" + +#: [statistics]monthly_sub +msgid "Monthly Subscriptions" +msgstr "" + +#: [statistics]monthly_sub_cum +msgid "Monthly Subscriptions Cumulated" +msgstr "" + +#: [subscribe]info +msgid "Movim is a decentralized social network, before creating a new account you need to choose a server to register." +msgstr "" + +#: [subscribe]server_question +msgid "Your server here ?" +msgstr "" + +#: [subscribe]server_contact +msgid "Contact us to add yours to the officially supported servers list" +msgstr "" + +#: [feed]nope +msgid "No public feed for this contact" +msgstr "" + +#: [feed]nope_contact +msgid "No contact specified" +msgstr "" + +#: [upload]title +msgid "Upload a file" +msgstr "" + +#: [upload]choose +msgid "Choose a file to upload" +msgstr "" + +#: [vcard]title [page]profile +msgid "Profile" +msgstr "Profilo" + +#: [vcard]updated +msgid "Profile Updated" +msgstr "" + +#: [vcard]not_updated +msgid "Profile Not Updated" +msgstr "" + +#: [vcard]public +msgid "Your profile is now public" +msgstr "" + +#: [vcard]restricted +msgid "Your profile is now restricted" +msgstr "" + +#: [general]nickname +#, fuzzy +msgctxt "[general]nickname" +msgid "Nickname" +msgstr "Kromnomo" + +#: [accounts]twitter +msgid "Twitter" +msgstr "" + +#: [accounts]skype +msgid "Skype" +msgstr "" + +#: [accounts]yahoo +msgid "Yahoo" +msgstr "" + +#: [accounts]accounts_nickname +#, fuzzy +msgctxt "[accounts]accounts_nickname" +msgid "Nickname" +msgstr "Kromnomo" + +#: [accounts]accounts_yahoo +msgid "Yahoo Account" +msgstr "" + +#: [privacy]privacy_title +msgid "Privacy Level" +msgstr "" + +#: [privacy]privacy_question +msgid "Is this profile public ?" +msgstr "" + +#: [privacy]privacy_info +msgid "Please pay attention ! By making your profile public, all the information listed above will be available for all the Movim users and on the whole Internet." +msgstr "" + +#: [save]submit [button]submit msgid "Submit" msgstr "Sendi" -#: ../cache/locales.php:522 -msgid "Submitting" -msgstr "" - -#: ../cache/locales.php:523 +#: [save]reset [button]reset msgid "Reset" msgstr "Nuligi" -#: ../cache/locales.php:524 +#: [visio]hung_up +msgid "Hung up" +msgstr "" + +#: [visio]busy +msgid "Your contact is busy" +msgstr "" + +#: [visio]declined +msgid "Declined" +msgstr "" + +#: [visio]calling +msgid "Is calling you" +msgstr "" + +#: [visio]call +msgid "Call" +msgstr "" + +#: [visio]hang_up +msgid "Hang up" +msgstr "" + +#: [visio]connection +msgid "Connection" +msgstr "" + +#: [global]no_js +msgid "You don't have javascript enabled. Good luck with that." +msgstr "" + +#: [global]description +msgid "Movim is a kickass distributed social networking platform that protect your privacy an comes with a set of awesome features." +msgstr "" + +#: [page]administration +msgid "Administration" +msgstr "" + +#: [page]home +msgid "Home" +msgstr "Ĉefpaĝo" + +#: [page]discover +msgid "Discover" +msgstr "" + +#: [page]explore +msgid "Explore" +msgstr "" + +#: [page]account_creation +msgid "Account Creation" +msgstr "Kreado de konto" + +#: [page]avatar +msgid "Avatar" +msgstr "Avataro" + +#: [page]chats +msgid "Chats" +msgstr "" + +#: [page]server +msgid "Server" +msgstr "" + +#: [page]public_groups +msgid "Public Groups" +msgstr "" + +#: [page]viewer +msgid "Viewer" +msgstr "" + +#: [page]media +msgid "Media" +msgstr "" + +#: [page]blog +msgid "Blog" +msgstr "" + +#: [page]about +msgid "About" +msgstr "" + +#: [page]login +msgid "Login" +msgstr "" + +#: [page]feed +msgid "Feed" +msgstr "Fluo" + +#: [page]gallery +msgid "Gallery" +msgstr "" + +#: [page]visio +msgid "Visio-conference" +msgstr "" + +#: [page]pods +msgid "Pods" +msgstr "" + +#: [page]share +msgid "Share" +msgstr "" + +#: [page]room +msgid "Room" +msgstr "" + +#: [error]error +msgid "Error: %s" +msgstr "Eraro: %s" + +#: [error]cannot_load_file +msgid "Cannot load file '%s'" +msgstr "Ne povas ŝargi dosieron “%s”." + +#: [error]route +msgid "Route error, please set all the parameters for the page %s" +msgstr "" + +#: [error]widget_load_error +msgid "Requested widget '%s' doesn't exist." +msgstr "" + +#: [error]widget_call_error +msgid "Requested event '%s' not registered." +msgstr "" + +#: [error]whoops +msgid "Whoops!" +msgstr "" + +#: [error]media_not_found +msgid "It seem that you don't have any pictures here?" +msgstr "" + +#: [error]media_ask_upload +msgid "You can try to upload a couple by going to the Media page" +msgstr "" + +#: [title]about +msgid "%s - About" +msgstr "" + +#: [title]account +msgid "%s - Account" +msgstr "" + +#: [title]administration +msgid "%s - Administration Panel" +msgstr "" + +#: [title]blog +msgid "%s - Blog" +msgstr "" + +#: [title]configuration +msgid "%s - Configuration" +msgstr "%s - Agordaĵoj" + +#: [title]discover +msgid "%s - Discover" +msgstr "" + +#: [title]explore +msgid "%s - Explore" +msgstr "" + +#: [title]help +msgid "%s - Help Page" +msgstr "%s - Helppaĝo" + +#: [title]login +msgid "%s - Login to Movim" +msgstr "%s - Ensaluti al Movim" + +#: [title]main +msgid "%s - Welcome to Movim" +msgstr "%s - Bonvenon al Movim" + +#: [title]media +msgid "%s - Media" +msgstr "" + +#: [title]news +msgid "%s - News" +msgstr "" + +#: [title]node_configuration +msgid "%s - Group Configuration" +msgstr "" + +#: [title]node +msgid "%s - Group" +msgstr "" + +#: [title]not_found +msgid "%s - 404" +msgstr "" + +#: [title]profile +msgid "%s - Profile" +msgstr "%s - Profilo" + +#: [title]server +msgid "%s - Server" +msgstr "" + +#: [button]validate +msgid "Validate" +msgstr "" + +#: [button]refresh +msgid "Refresh" +msgstr "" + +#: [button]add +msgid "Add" +msgstr "Aldoni" + +#: [button]delete +msgid "Delete" +msgstr "" + +#: [button]cancel +msgid "Cancel" +msgstr "" + +#: [button]close +msgid "Close" +msgstr "" + +#: [button]update +msgid "Update" +msgstr "" + +#: [button]updating +msgid "Updating" +msgstr "" + +#: [button]submitting +msgid "Submitting" +msgstr "" + +#: [button]register msgid "Register" msgstr "" -#: ../cache/locales.php:525 +#: [button]unregister msgid "Unregister" msgstr "" -#: ../cache/locales.php:526 +#: [button]save msgid "Save" msgstr "" -#: ../cache/locales.php:527 +#: [button]clear msgid "Clear" msgstr "" -#: ../cache/locales.php:528 +#: [button]upload msgid "Upload" msgstr "" -#: ../cache/locales.php:529 +#: [button]come_in msgid "Come in!" msgstr "Envenu!" -#: ../cache/locales.php:530 +#: [button]connecting msgid "Connecting" msgstr "" -#: ../cache/locales.php:531 +#: [button]bool_yes msgid "Yes" msgstr "" -#: ../cache/locales.php:532 +#: [button]bool_no msgid "No" msgstr "" -#: ../cache/locales.php:534 +#: [button]return msgid "Return" msgstr "" -#: ../cache/locales.php:535 +#: [button]accept msgid "Accept" msgstr "Akcepti" -#: ../cache/locales.php:536 +#: [button]refuse msgid "Refuse" msgstr "" -#: ../cache/locales.php:537 +#: [button]next msgid "Next" msgstr "" -#: ../cache/locales.php:538 +#: [button]previous msgid "Previous" msgstr "" -#: ../cache/locales.php:539 -#, php-format +#: [step]step msgid "Step %s" msgstr "" -#: ../cache/locales.php:542 +#: [day]title msgid "Day" msgstr "" -#: ../cache/locales.php:543 +#: [day]monday msgid "Monday" msgstr "Lundo" -#: ../cache/locales.php:544 +#: [day]tuesday msgid "Tuesday" msgstr "Mardo" -#: ../cache/locales.php:545 +#: [day]wednesday msgid "Wednesday" msgstr "Merkredo" -#: ../cache/locales.php:546 +#: [day]thursday msgid "Thursday" msgstr "Ĵaŭdo" -#: ../cache/locales.php:547 +#: [day]friday msgid "Friday" msgstr "Vendredo" -#: ../cache/locales.php:548 +#: [day]saturday msgid "Saturday" msgstr "Sabato" -#: ../cache/locales.php:549 +#: [day]sunday msgid "Sunday" msgstr "" -#: ../cache/locales.php:550 ../cache/locales.php:559 +#: [gender]nil +#, fuzzy +msgctxt "[gender]nil" msgid "None" msgstr "Neniu" -#: ../cache/locales.php:551 +#: [gender]male msgid "Male" msgstr "Malina" -#: ../cache/locales.php:552 +#: [gender]female msgid "Female" msgstr "Ina" -#: ../cache/locales.php:553 +#: [gender]other msgid "Other" msgstr "Alia" -#: ../cache/locales.php:554 +#: [client]bot msgid "Bot" msgstr "" -#: ../cache/locales.php:555 +#: [client]desktop msgid "Desktop" msgstr "" -#: ../cache/locales.php:556 +#: [client]phone msgid "Phone" msgstr "" -#: ../cache/locales.php:557 +#: [client]web msgid "Web" msgstr "" -#: ../cache/locales.php:558 +#: [client]registered msgid "Registered" msgstr "" -#: ../cache/locales.php:560 +#: [marital]nil +#, fuzzy +msgctxt "[marital]nil" +msgid "None" +msgstr "Neniu" + +#: [marital]single msgid "Single" msgstr "Unuope" -#: ../cache/locales.php:561 +#: [marital]relationship msgid "In a relationship" msgstr "" -#: ../cache/locales.php:562 +#: [marital]married msgid "Married" msgstr "Edz(in)iĝinta" -#: ../cache/locales.php:563 +#: [marital]divorced msgid "Divorced" msgstr "" -#: ../cache/locales.php:564 +#: [marital]widowed msgid "Widowed" msgstr "" -#: ../cache/locales.php:565 +#: [marital]cohabiting msgid "Cohabiting" msgstr "" -#: ../cache/locales.php:566 +#: [marital]union msgid "Civil Union" msgstr "" -#: ../cache/locales.php:567 +#: [flag]white msgid "Not shared" msgstr "" -#: ../cache/locales.php:568 +#: [flag]green msgid "Shared with one contact" msgstr "" -#: ../cache/locales.php:569 +#: [flag]orange msgid "Shared with all contacts" msgstr "" -#: ../cache/locales.php:570 +#: [flag]red msgid "Shared with the XMPP network" msgstr "" -#: ../cache/locales.php:571 +#: [flag]black msgid "Shared with the whole Internet" msgstr "" -#: ../cache/locales.php:572 +#: [presence]online msgid "Online" msgstr "Enrete" -#: ../cache/locales.php:573 +#: [presence]away msgid "Away" msgstr "For" -#: ../cache/locales.php:574 +#: [presence]dnd msgid "Do Not Disturb" msgstr "Ne ĝenu" -#: ../cache/locales.php:575 +#: [presence]xa msgid "Extended Away" msgstr "" -#: ../cache/locales.php:576 +#: [presence]offline msgid "Offline" msgstr "" -#: ../cache/locales.php:577 +#: [presence]error msgid "Error" msgstr "" -#: ../cache/locales.php:578 +#: [mood]afraid msgid "afraid" msgstr "" -#: ../cache/locales.php:579 +#: [mood]amazed msgid "amazed" msgstr "" -#: ../cache/locales.php:580 +#: [mood]amorous msgid "amorous" msgstr "" -#: ../cache/locales.php:581 +#: [mood]angry msgid "angry" msgstr "" -#: ../cache/locales.php:582 +#: [mood]annoyed msgid "annoyed" msgstr "" -#: ../cache/locales.php:583 +#: [mood]anxious msgid "anxious" msgstr "" -#: ../cache/locales.php:584 +#: [mood]aroused msgid "aroused" msgstr "" -#: ../cache/locales.php:585 +#: [mood]ashamed msgid "ashamed" msgstr "" -#: ../cache/locales.php:586 +#: [mood]bored msgid "bored" msgstr "" -#: ../cache/locales.php:587 +#: [mood]brave msgid "brave" msgstr "" -#: ../cache/locales.php:588 +#: [mood]calm msgid "calm" msgstr "" -#: ../cache/locales.php:589 +#: [mood]cautious msgid "cautious" msgstr "" -#: ../cache/locales.php:590 +#: [mood]cold msgid "cold" msgstr "" -#: ../cache/locales.php:591 +#: [mood]confident msgid "confident" msgstr "" -#: ../cache/locales.php:592 +#: [mood]confused msgid "confused" msgstr "" -#: ../cache/locales.php:593 +#: [mood]contemplative msgid "contemplative" msgstr "" -#: ../cache/locales.php:594 +#: [mood]contented msgid "contented" msgstr "" -#: ../cache/locales.php:595 +#: [mood]cranky msgid "cranky" msgstr "" -#: ../cache/locales.php:596 +#: [mood]crazy msgid "crazy" msgstr "" -#: ../cache/locales.php:597 +#: [mood]creative msgid "creative" msgstr "" -#: ../cache/locales.php:598 +#: [mood]curious msgid "curious" msgstr "" -#: ../cache/locales.php:599 +#: [mood]dejected msgid "dejected" msgstr "" -#: ../cache/locales.php:600 +#: [mood]depressed msgid "depressed" msgstr "" -#: ../cache/locales.php:601 +#: [mood]disappointed msgid "disappointed" msgstr "" -#: ../cache/locales.php:602 +#: [mood]disgusted msgid "disgusted" msgstr "" -#: ../cache/locales.php:603 +#: [mood]dismayed msgid "dismayed" msgstr "" -#: ../cache/locales.php:604 +#: [mood]distracted msgid "distracted" msgstr "" -#: ../cache/locales.php:605 +#: [mood]embarrassed msgid "embarrassed" msgstr "" -#: ../cache/locales.php:606 +#: [mood]envious msgid "envious" msgstr "" -#: ../cache/locales.php:607 +#: [mood]excited msgid "excited" msgstr "" -#: ../cache/locales.php:608 +#: [mood]flirtatious msgid "flirtatious" msgstr "" -#: ../cache/locales.php:609 +#: [mood]frustated msgid "frustated" msgstr "" -#: ../cache/locales.php:610 +#: [mood]grateful msgid "grateful" msgstr "" -#: ../cache/locales.php:611 +#: [mood]grieving msgid "grieving" msgstr "" -#: ../cache/locales.php:612 +#: [mood]grumpy msgid "grumpy" msgstr "" -#: ../cache/locales.php:613 +#: [mood]guilty msgid "guilty" msgstr "" -#: ../cache/locales.php:614 +#: [mood]happy msgid "happy" msgstr "" -#: ../cache/locales.php:615 +#: [mood]hopeful msgid "hopeful" msgstr "" -#: ../cache/locales.php:616 +#: [mood]hot msgid "hot" msgstr "" -#: ../cache/locales.php:617 +#: [mood]humbled msgid "humbled" msgstr "" -#: ../cache/locales.php:618 +#: [mood]humiliated msgid "humiliated" msgstr "" -#: ../cache/locales.php:619 +#: [mood]hungry msgid "hungry" msgstr "" -#: ../cache/locales.php:620 +#: [mood]hurt msgid "hurt" msgstr "" -#: ../cache/locales.php:621 +#: [mood]impressed msgid "impressed" msgstr "" -#: ../cache/locales.php:622 +#: [mood]in_awe msgid "in awe" msgstr "" -#: ../cache/locales.php:623 +#: [mood]in_love msgid "in love" msgstr "" -#: ../cache/locales.php:624 +#: [mood]indignant msgid "indignant" msgstr "" -#: ../cache/locales.php:625 +#: [mood]interested msgid "interested" msgstr "" -#: ../cache/locales.php:626 +#: [mood]intoxicated msgid "intoxicated" msgstr "" -#: ../cache/locales.php:627 +#: [mood]invincible msgid "invincible" msgstr "" -#: ../cache/locales.php:628 +#: [mood]jealous msgid "jealous" msgstr "" -#: ../cache/locales.php:629 +#: [mood]lonely msgid "lonely" msgstr "" -#: ../cache/locales.php:630 +#: [mood]lost msgid "lost" msgstr "" -#: ../cache/locales.php:631 +#: [mood]lucky msgid "lucky" msgstr "" -#: ../cache/locales.php:632 +#: [mood]mean msgid "mean" msgstr "" -#: ../cache/locales.php:633 +#: [mood]moody msgid "moody" msgstr "" -#: ../cache/locales.php:634 +#: [mood]nervous msgid "nervous" msgstr "" -#: ../cache/locales.php:635 +#: [mood]neutral msgid "neutral" msgstr "" -#: ../cache/locales.php:636 +#: [mood]offended msgid "offended" msgstr "" -#: ../cache/locales.php:637 +#: [mood]outraged msgid "outraged" msgstr "" -#: ../cache/locales.php:638 +#: [mood]playful msgid "playful" msgstr "" -#: ../cache/locales.php:639 +#: [mood]proud msgid "proud" msgstr "" -#: ../cache/locales.php:640 +#: [mood]relaxed msgid "relaxed" msgstr "" -#: ../cache/locales.php:641 +#: [mood]relieved msgid "relieved" msgstr "" -#: ../cache/locales.php:642 -msgid "remorseful" -msgstr "" - -#: ../cache/locales.php:643 +#: [mood]restless msgid "restless" msgstr "" -#: ../cache/locales.php:644 +#: [mood]sad msgid "sad" msgstr "" -#: ../cache/locales.php:645 +#: [mood]sarcastic msgid "sarcastic" msgstr "" -#: ../cache/locales.php:646 +#: [mood]satisfied msgid "satisfied" msgstr "" -#: ../cache/locales.php:647 +#: [mood]serious msgid "serious" msgstr "" -#: ../cache/locales.php:648 +#: [mood]shocked msgid "shocked" msgstr "" -#: ../cache/locales.php:649 +#: [mood]shy msgid "shy" msgstr "" -#: ../cache/locales.php:650 +#: [mood]sick msgid "sick" msgstr "" -#: ../cache/locales.php:651 +#: [mood]sleepy msgid "sleepy" msgstr "" -#: ../cache/locales.php:652 +#: [mood]spontaneous msgid "spontaneous" msgstr "" -#: ../cache/locales.php:653 +#: [mood]stressed msgid "stressed" msgstr "" -#: ../cache/locales.php:654 +#: [mood]strong msgid "strong" msgstr "" -#: ../cache/locales.php:655 +#: [mood]surprised msgid "surprised" msgstr "" -#: ../cache/locales.php:656 +#: [mood]thankful msgid "thankful" msgstr "" -#: ../cache/locales.php:657 +#: [mood]thirsty msgid "thirsty" msgstr "" -#: ../cache/locales.php:658 +#: [mood]tired msgid "tired" msgstr "" -#: ../cache/locales.php:659 +#: [mood]undefined msgid "undefined" msgstr "" -#: ../cache/locales.php:660 +#: [mood]weak msgid "weak" msgstr "" -#: ../cache/locales.php:661 +#: [mood]worried msgid "worried" msgstr "" -#: ../cache/locales.php:662 +#: [month]title msgid "Month" msgstr "" -#: ../cache/locales.php:663 +#: [month]january msgid "January" msgstr "Januaro" -#: ../cache/locales.php:664 +#: [month]february msgid "February" msgstr "Februaro" -#: ../cache/locales.php:665 +#: [month]march msgid "March" msgstr "Marto" -#: ../cache/locales.php:666 +#: [month]april msgid "April" msgstr "Aprilo" -#: ../cache/locales.php:667 +#: [month]may msgid "May" msgstr "Majo" -#: ../cache/locales.php:668 +#: [month]june msgid "June" msgstr "Junio" -#: ../cache/locales.php:669 +#: [month]july msgid "July" msgstr "Julio" -#: ../cache/locales.php:670 +#: [month]august msgid "August" msgstr "Aŭgusto" -#: ../cache/locales.php:671 +#: [month]september msgid "September" msgstr "Septembro" -#: ../cache/locales.php:672 +#: [month]october msgid "October" msgstr "Oktobro" -#: ../cache/locales.php:673 +#: [month]november msgid "November" msgstr "Novembro" -#: ../cache/locales.php:674 +#: [month]december msgid "December" msgstr "Decembro" -#: ../cache/locales.php:675 +#: [year]title msgid "Year" msgstr "" -#: ../cache/locales.php:676 +#: [date]today msgid "Today" msgstr "Hodiaŭ" -#: ../cache/locales.php:677 +#: [date]tomorrow msgid "Tomorrow" msgstr "Morgaŭ" -#: ../cache/locales.php:678 +#: [date]yesterday msgid "Yesterday" msgstr "Hieraŭ" -#: ../cache/locales.php:679 -#, php-format -msgid " %d days ago" +#: [date]ago +#, fuzzy +msgid "%d days ago" msgstr " Antaŭ %d tagoj" -#: ../cache/locales.php:680 +#: [date]day msgid "day" msgstr "tago" -#: ../cache/locales.php:682 +#: [post]whats_new msgid "What's new ?" msgstr "" -#: ../cache/locales.php:683 +#: [post]place msgid "Place" msgstr "" -#: ../cache/locales.php:684 +#: [post]by msgid "by" msgstr "" -#: ../cache/locales.php:685 +#: [post]geolocalisation msgid "Geolocalisation" msgstr "" -#: ../cache/locales.php:686 +#: [post]email msgid "email" msgstr "" -#: ../cache/locales.php:688 +#: [post]no_comments msgid "No comments yet" msgstr "" -#: ../cache/locales.php:689 +#: [post]no_comments_stream msgid "No comments stream" msgstr "" -#: ../cache/locales.php:690 +#: [post]no_load msgid "Your feed cannot be loaded." msgstr "" -#: ../cache/locales.php:691 +#: [post]older msgid "Get older posts" msgstr "" -#: ../cache/locales.php:692 -#, php-format +#: [post]new_items msgid "%s new items" msgstr "" -#: ../cache/locales.php:693 +#: [post]comment_error msgid "Comment publication error" msgstr "" -#: ../cache/locales.php:694 +#: [post]comments_older msgid "Show the older comments" msgstr "" -#: ../cache/locales.php:695 -msgid "Loading comments ..." -msgstr "" +#: [post]comments_loading +#, fuzzy +msgid "Loading comments..." +msgstr "Ŝarĝante la kontakta fluo…" -#: ../cache/locales.php:696 +#: [post]comments_get msgid "Get the comments" msgstr "" -#: ../cache/locales.php:697 +#: [post]comment_add msgid "Add a comment" msgstr "" -#: ../cache/locales.php:698 +#: [post]share msgid "Share with" msgstr "" -#: ../cache/locales.php:699 +#: [post]share_everyone msgid "Everyone" msgstr "" -#: ../cache/locales.php:700 +#: [post]share_your_contacts msgid "Your contacts" msgstr "" -#: ../cache/locales.php:702 +#: [post]updated msgid "Updated" msgstr "" -#: ../cache/locales.php:703 +#: [post]content_not_found msgid "Content not found" msgstr "" -#: ../cache/locales.php:704 +#: [post]default_title msgid "Contact publication" msgstr "" -#: ../cache/locales.php:705 +#: [post]comments msgid "Comments" msgstr "" -#: ../cache/locales.php:706 +#: [api]error msgid "The API is not reachable, try again later" msgstr "" -#: ../cache/locales.php:707 +#: [field]type_here msgid "Type here" msgstr "" @@ -2591,12 +2719,8 @@ msgstr "" #~ msgid "Compatibility Test" #~ msgstr "Kongrueca testo" -#~ msgid "" -#~ "The following requirements were not met. Please make sure they are all " -#~ "satisfied in order to install Movim." -#~ msgstr "" -#~ "La sekvaj elementoj ne estis trovita. Bonvolu kontroli ke ĉiuj estas " -#~ "disponeblaj por instali Movim-on." +#~ msgid "The following requirements were not met. Please make sure they are all satisfied in order to install Movim." +#~ msgstr "La sekvaj elementoj ne estis trovita. Bonvolu kontroli ke ĉiuj estas disponeblaj por instali Movim-on." #~ msgid "User not logged in." #~ msgstr "Uzanto ne ensalutita." @@ -2604,17 +2728,12 @@ msgstr "" #~ msgid "JID not provided." #~ msgstr "JID maldisponebla" -#, php-format #~ msgid "jid '%s' is incorrect" #~ msgstr "JID “%s” malkorekta" -#, php-format #~ msgid "%s - Account Creation" #~ msgstr "%s - Kreado de konto" -#~ msgid "Remove this contact" -#~ msgstr "Forigi tiun kontakton" - #~ msgid "Debug console" #~ msgstr "Sencimiga konzolo" @@ -2627,25 +2746,18 @@ msgstr "" #~ msgid "Decline" #~ msgstr "Malakcepti" -#~ msgid "Loading the contact feed ..." -#~ msgstr "Ŝarĝante la kontakta fluo…" - #~ msgid "PHP version mismatch. Movim requires PHP 5.3 minimum." #~ msgstr "Nekongrua versio de PHP. Movim necesas PHP 5.3 minimume." -#, php-format #~ msgid "Movim requires the %s extension." #~ msgstr "Movim necesas la kromaĵon %s." -#, php-format #~ msgid "Couldn't create directory '%s'." #~ msgstr "Ne povas krei dosierujon “%s”." -#, php-format #~ msgid "Couldn't create configuration file '%s'." #~ msgstr "Ne povas krei agorddosieron “%s”." -#, php-format #~ msgid "Cannot open log file '%s'" #~ msgstr "Ne povas malfermi protokolan dosieron '%s'" @@ -2656,10 +2768,8 @@ msgstr "" #~ msgstr "Actuala versio: " #~ msgid "Update your PHP version or contact your server administrator" -#~ msgstr "" -#~ "Ĝisdatigu vian PHP-an version aŭ kontaktu vian servilan administranton" +#~ msgstr "Ĝisdatigu vian PHP-an version aŭ kontaktu vian servilan administranton" -#, php-format #~ msgid "Install %s and %s packages" #~ msgstr "Instali %s kaj %s pakaĵojn" @@ -2675,20 +2785,12 @@ msgstr "" #~ msgid "XMPP Connection Preferences" #~ msgstr "Agordoj de XMPP-konektado" -#~ msgid "Enable read and write rights on Movim's root folder" -#~ msgstr "Ebligi legi kaj skribi rajtojn on la radika dosierujo de Movim" - -#, php-format #~ msgid "You can now access your shiny Movim instance %sJump In !%s" #~ msgstr "Nun, vi povas aliri vian Movim-instancon %sEk en!%s" #~ msgid "Database Movim schema installed" #~ msgstr "Skemo de Movim-datumbazo instalita" -#~ msgid "Database Detected" -#~ msgstr "Datumbazo trovita" - -#, php-format #~ msgid "Install the %s package" #~ msgstr "Intali la pakaĵon \"%s\"" @@ -2713,6 +2815,5 @@ msgstr "" #~ msgid "normal" #~ msgstr "normala" -#, php-format #~ msgid "Cannot load element value '%s'" #~ msgstr "Ne eblas ŝarĝi elementvaloro '%s'" diff --git a/sources/locales/es.po b/sources/locales/es.po index 4815ec9..48b88f0 100644 --- a/sources/locales/es.po +++ b/sources/locales/es.po @@ -1,2612 +1,2745 @@ # Spanish translations for Movim package. # This file is distributed under the same license as the Movim package. # This file was translated from CodingTeam at . +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/About/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Account/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AccountNext/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AdHoc/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AdminDB/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AdminMain/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AdminTest/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Api/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Avatar/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Blog/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Bookmark/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Chat/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Chats/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/ConfigData/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Config/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Contact/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Group/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Groups/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Header/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Hello/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Help/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Init/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Location/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/LoginAnonymous/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Login/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Menu/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/NodeAffiliations/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/NodeSubscriptions/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Notifs/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Post/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Presence/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Publish/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/PubsubSubscriptionConfig/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Rooms/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Roster/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Share/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Statistics/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Subscribe/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Syndication/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Upload/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Vcard4/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/VisioExt/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Visio/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../locales/locales.ini msgid "" msgstr "" "Project-Id-Version: Movim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-06-08 22:06+0200\n" +"POT-Creation-Date: 2015-08-20 15:17+0200\n" "PO-Revision-Date: 2015-06-09 12:20+0000\n" "Last-Translator: Jorge Cantero \n" "Language-Team: LANGUAGE \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2015-06-18 21:08+0000\n" "X-Generator: Launchpad (build 17570)\n" -"Language: \n" -#: ../cache/locales.php:2 +#: [about]thanks msgid "Thanks" msgstr "Agradecimientos" -#: ../cache/locales.php:3 +#: [about]developers msgid "Developers" msgstr "Desarrolladores" -#: ../cache/locales.php:4 +#: [about]translators msgid "Translators" msgstr "Traductores" -#: ../cache/locales.php:5 +#: [about]software msgid "Software" msgstr "Software" -#: ../cache/locales.php:6 +#: [about]resources msgid "Resources" msgstr "Recursos" -#: ../cache/locales.php:7 ../cache/locales.php:83 ../cache/locales.php:85 +#: [about]api [schema]api [api]title msgid "API" msgstr "API" -#: ../cache/locales.php:8 -msgid "" -"Movim is an XMPP-based communication platform. All the project, except the " -"following software and resources, is under" -msgstr "" -"Movim es una plataforma de comunicación que se basa en la tecnología XMPP. " -"Todo el proyecto, excepto los recursos y software siguientes, están " -"disponibles bajo la" +#: [about]info +msgid "Movim is an XMPP-based communication platform. All the project, except the following software and resources, is under" +msgstr "Movim es una plataforma de comunicación que se basa en la tecnología XMPP. Todo el proyecto, excepto los recursos y software siguientes, están disponibles bajo la" -#: ../cache/locales.php:9 +#: [account]title msgid "Account" msgstr "" -#: ../cache/locales.php:10 -msgid "The password has been updated" -msgstr "" +#: [account]password_change_title +#, fuzzy +msgid "Change my password" +msgstr "Contraseña incorrecta" -#: ../cache/locales.php:11 -msgid "Please provide a valid password (6 characters minimum)" -msgstr "" - -#: ../cache/locales.php:12 -msgid "The provided passwords are not the same" -msgstr "" - -#: ../cache/locales.php:13 -msgid "Delete my account" -msgstr "" - -#: ../cache/locales.php:14 -msgid "" -"You will delete your XMPP account and all the relative information linked to " -"it (profile, contacts and publications)." -msgstr "" - -#: ../cache/locales.php:15 -msgid "Are you sure that you want to delete it ?" -msgstr "" - -#: ../cache/locales.php:16 ../cache/locales.php:411 -msgid "Create a new account" -msgstr "Crear una cuenta nueva" - -#: ../cache/locales.php:17 -msgid "No account creation form found on the server" -msgstr "No hemos encontrado una cuenta creada en el servidor" - -#: ../cache/locales.php:18 ../cache/locales.php:172 -msgid "on" -msgstr "activado" - -#: ../cache/locales.php:19 -msgid "Your acccount has been successfully registered" -msgstr "" - -#: ../cache/locales.php:20 -msgid "Loading" -msgstr "Cargando" - -#: ../cache/locales.php:21 -msgid "Not Acceptable" -msgstr "" - -#: ../cache/locales.php:22 -msgid "The registration system of this server is currently unavailable" -msgstr "" - -#: ../cache/locales.php:23 -msgid "" -"This server use an external system for the registration, please click on the " -"following URL." -msgstr "" - -#: ../cache/locales.php:24 -msgid "Actions" -msgstr "Acciones" - -#: ../cache/locales.php:25 ../cache/locales.php:82 -msgid "Database" -msgstr "" - -#: ../cache/locales.php:26 -msgid "Modl wasn't able to connect to the database" -msgstr "Modl no se pudo conectar con la base de datos" - -#: ../cache/locales.php:27 -msgid "Movim is connected to the database" -msgstr "Movim está conectado con la base de datos" - -#: ../cache/locales.php:28 -msgid "The database need to be updated" -msgstr "La base de datos necesita ser actualizada" - -#: ../cache/locales.php:29 -msgid "Movim database is up to date" -msgstr "La base de datos de Movim está actualizada" - -#: ../cache/locales.php:30 -msgid "Database Type" -msgstr "Tipo de la base de datos" - -#: ../cache/locales.php:31 ../cache/locales.php:50 ../cache/locales.php:540 -msgid "Username" -msgstr "Nombre de usuario" - -#: ../cache/locales.php:32 ../cache/locales.php:51 ../cache/locales.php:282 -#: ../cache/locales.php:541 +#: [account]password [db]password [credentials]password [form]password +#: [input]password msgid "Password" msgstr "Contraseña" -#: ../cache/locales.php:33 +#: [account]password_confirmation +#, fuzzy +msgid "Password confirmation" +msgstr "%s - Configuración" + +#: [account]password_changed +msgid "The password has been updated" +msgstr "" + +#: [account]password_not_valid +msgid "Please provide a valid password (6 characters minimum)" +msgstr "" + +#: [account]password_not_same +msgid "The provided passwords are not the same" +msgstr "" + +#: [account]delete_title +msgid "Delete my account" +msgstr "" + +#: [account]delete +#, fuzzy +msgid "Delete your account" +msgstr "Crear una cuenta nueva" + +#: [account]delete_text +msgid "You will delete your XMPP account and all the relative information linked to it (profile, contacts and publications)." +msgstr "" + +#: [account]delete_text_confirm +msgid "Are you sure that you want to delete it ?" +msgstr "" + +#: [account]gateway_title +msgid "Gateway" +msgstr "" + +#: [create]title [subscribe]title +msgid "Create a new account" +msgstr "Crear una cuenta nueva" + +#: [create]notfound +msgid "No account creation form found on the server" +msgstr "No hemos encontrado una cuenta creada en el servidor" + +#: [create]server_on +msgid "on" +msgstr "activado" + +#: [create]successfull +msgid "Your acccount has been successfully registered" +msgstr "" + +#: [create]loading +msgid "Loading" +msgstr "Cargando" + +#: [error]not_acceptable +msgid "Not Acceptable" +msgstr "" + +#: [error]service_unavailable +msgid "The registration system of this server is currently unavailable" +msgstr "" + +#: [oob]about +msgid "This server use an external system for the registration, please click on the following URL." +msgstr "" + +#: [adhoc]title +msgid "Actions" +msgstr "Acciones" + +#: [db]legend [schema]database +msgid "Database" +msgstr "" + +#: [db]connect_error +msgid "Modl wasn't able to connect to the database" +msgstr "Modl no se pudo conectar con la base de datos" + +#: [db]connect_success +msgid "Movim is connected to the database" +msgstr "Movim está conectado con la base de datos" + +#: [db]update +msgid "The database need to be updated" +msgstr "La base de datos necesita ser actualizada" + +#: [db]up_to_date +msgid "Movim database is up to date" +msgstr "La base de datos de Movim está actualizada" + +#: [db]type +msgid "Database Type" +msgstr "Tipo de la base de datos" + +#: [db]username [credentials]username [input]username +msgid "Username" +msgstr "Nombre de usuario" + +#: [db]host msgid "Host" msgstr "Servidor" -#: ../cache/locales.php:34 +#: [db]port msgid "Port" msgstr "Puerto" -#: ../cache/locales.php:35 -msgid "Database Name" +#: [db]name +#, fuzzy +msgid "Database sName" msgstr "Nombre de la base de datos" -#: ../cache/locales.php:36 +#: [admin]general msgid "General Settings" msgstr "Opciones generales" -#: ../cache/locales.php:37 +#: [general]theme msgid "Theme" msgstr "Tema" -#: ../cache/locales.php:38 +#: [general]language msgid "Default language" msgstr "Idioma predeterminado" -#: ../cache/locales.php:39 -msgid "Environment" -msgstr "Entorno" - -#: ../cache/locales.php:40 +#: [general]log_verbosity msgid "Log verbosity" msgstr "Detalle de registro" -#: ../cache/locales.php:41 +#: [general]timezone msgid "Server Timezone" msgstr "Zona horaria del servidor" -#: ../cache/locales.php:42 +#: [general]limit msgid "User folder size limit (in bytes)" msgstr "Límite de tamaño de carpeta de usuario (en bytes)" -#: ../cache/locales.php:43 +#: [websocket]title msgid "WebSocket Configuration" msgstr "" -#: ../cache/locales.php:44 +#: [websocket]info msgid "Enter here a valid WebSocket URI in the form" msgstr "" -#: ../cache/locales.php:45 +#: [websocket]label msgid "WebSocket URI" msgstr "" -#: ../cache/locales.php:46 -msgid "" -"If you change the URI, please restart the daemon to reload the configuration" +#: [websocket]save_info +msgid "If you change the URI, please restart the daemon to reload the configuration" msgstr "" -#: ../cache/locales.php:47 +#: [websocket]publics msgid "Public WebSockets" msgstr "" -#: ../cache/locales.php:48 +#: [credentials]title msgid "Administration Credential" msgstr "Credenciales de administración" -#: ../cache/locales.php:49 +#: [credentials]info msgid "Change the default credentials admin/password" msgstr "Cambie las credenciales predeterminadas administrador/contraseña" -#: ../cache/locales.php:52 +#: [credentials]re_password msgid "Retype password" msgstr "Escriba la contraseña de nuevo" -#: ../cache/locales.php:53 +#: [whitelist]title msgid "Whitelist - XMPP Server" msgstr "Lista blanca - Servidor XMPP" -#: ../cache/locales.php:54 -msgid "" -"If you want to specify a list of authorized XMPP servers on your Movim pod " -"and forbid the connection on all the others please put their domain name " -"here, with comma (ex: movim.eu,jabber.fr)" -msgstr "" -"Si quieres especificar una lista de servidores autorizados XMPP en tu pod de " -"Movim y prohibir la conexión a todos los demás pon sus dominios aquí, " -"separado por comas (ej: movim.eu,jabber.fr)" +#: [whitelist]info1 +msgid "If you want to specify a list of authorized XMPP servers on your Movim pod and forbid the connection on all the others please put their domain name here, with comma (ex: movim.eu,jabber.fr)" +msgstr "Si quieres especificar una lista de servidores autorizados XMPP en tu pod de Movim y prohibir la conexión a todos los demás pon sus dominios aquí, separado por comas (ej: movim.eu,jabber.fr)" -#: ../cache/locales.php:55 -msgid "" -"Leave this field blank if you allow the access to all the XMPP accounts." -msgstr "" -"Deja este campo en blanco si quieres permitir el acceso a todas las cuentas " -"XMPP." +#: [whitelist]info2 +msgid "Leave this field blank if you allow the access to all the XMPP accounts." +msgstr "Deja este campo en blanco si quieres permitir el acceso a todas las cuentas XMPP." -#: ../cache/locales.php:56 +#: [whitelist]label msgid "List of whitelisted XMPP servers" msgstr "Lista de listas blancas de servidores XMPP" -#: ../cache/locales.php:57 ../cache/locales.php:61 +#: [information]title +#, fuzzy +msgctxt "[information]title" msgid "Information Message" msgstr "Información" -#: ../cache/locales.php:58 +#: [information]description msgid "Description" msgstr "Descripción" -#: ../cache/locales.php:59 +#: [information]info1 msgid "This message will be displayed on the login page" msgstr "Este mensaje se mostrará en la página de inicio" -#: ../cache/locales.php:60 -msgid "Leave this field blank if you don't want to show any message." +#: [information]info2 +#, fuzzy +msgid "Leave this field blank if you dont want to show any message." msgstr "Deja este espacio en blanco si no quieres mostar ningun mensaje" -#: ../cache/locales.php:62 +#: [information]label +#, fuzzy +msgctxt "[information]label" +msgid "Information Message" +msgstr "Información" + +#: [log]empty msgid "Empty" msgstr "" -#: ../cache/locales.php:63 +#: [log]syslog msgid "Syslog" msgstr "" -#: ../cache/locales.php:64 +#: [log]syslog_files msgid "Syslog and files" msgstr "" -#: ../cache/locales.php:65 +#: [rewrite]title msgid "URL Rewriting" msgstr "" -#: ../cache/locales.php:66 +#: [rewrite]info msgid "The URL Rewriting can be enabled" msgstr "" -#: ../cache/locales.php:67 +#: [admin]compatibility msgid "General Overview" msgstr "" -#: ../cache/locales.php:68 -msgid "" -"Movim has found some issues or things that need to be fixed or improved" +#: [compatibility]info +msgid "Movim has found some issues or things that need to be fixed or improved" msgstr "" -#: ../cache/locales.php:69 -#, php-format +#: [compatibility]php1 msgid "Update your PHP-Version: %s" msgstr "" -#: ../cache/locales.php:70 +#: [compatibility]php2 msgid "Required: 5.3.0" msgstr "" -#: ../cache/locales.php:71 +#: [compatibility]curl msgid "Install the php5-curl library" msgstr "" -#: ../cache/locales.php:72 +#: [compatibility]imagick msgid "Install the php5-imagick library" msgstr "" -#: ../cache/locales.php:73 +#: [compatibility]gd msgid "Install the php5-gd library" msgstr "" -#: ../cache/locales.php:74 -msgid "Read and write rights for the webserver in Movim's root directory" -msgstr "" -"Derechos de escritura y lectura para el servidor web en el directorio raíz " -"de Movim" +#: [compatibility]rights +#, fuzzy +msgid "Read and write rights for the webserver in Movims root directory" +msgstr "Derechos de escritura y lectura para el servidor web en el directorio raíz de Movim" -#: ../cache/locales.php:75 +#: [compatibility]rewrite msgid "The URL Rewriting support is currently disabled" msgstr "" -#: ../cache/locales.php:76 +#: [compatibility]db msgid "The database need to be updated, go to the database panel to fix this" msgstr "" -#: ../cache/locales.php:77 -msgid "" -"WebSocket connection error, check if the Movim Daemon is running and is " -"reacheable" +#: [compatibility]websocket +msgid "WebSocket connection error, check if the Movim Daemon is running and is reachable" msgstr "" -#: ../cache/locales.php:78 -msgid "" -"XMPP Websocket connection error, please check the validity of the URL given " -"in the General Configuration" +#: [compatibility]xmpp_websocket +msgid "XMPP Websocket connection error, please check the validity of the URL given in the General Configuration" msgstr "" -#: ../cache/locales.php:79 +#: [schema]browser msgid "Browser" msgstr "" -#: ../cache/locales.php:80 +#: [schema]movim msgid "Movim Core" msgstr "" -#: ../cache/locales.php:81 +#: [schema]daemon msgid "Movim Daemon" msgstr "" -#: ../cache/locales.php:84 +#: [schema]xmpp msgid "XMPP" msgstr "" -#: ../cache/locales.php:86 -#, php-format -msgid "" -"Here you can register your pod on the official %sMovim API%s and be listed " -"on %sthe pods page%s." +#: [api]info +msgid "Here you can register your pod on the official %sMovim API%s and be listed on %sthe pods page%s." msgstr "" -#: ../cache/locales.php:87 +#: [api]register msgid "Your pod is not registered on the API" msgstr "" -#: ../cache/locales.php:88 +#: [api]registered msgid "Your pod is registered on the API" msgstr "" -#: ../cache/locales.php:89 +#: [api]wait msgid "Your pod is not yet validated" msgstr "" -#: ../cache/locales.php:90 +#: [api]validated msgid "Your pod is validated" msgstr "" -#: ../cache/locales.php:91 -msgid "" -"You asked to be removed from the API, this request will be processed in a " -"couple of hours" -msgstr "" -"Solicitó su eliminación de la API; la petición se procesará en un par de " -"horas" +#: [api]unregister +msgid "You asked to be removed from the API, this request will be processed in a couple of hours" +msgstr "Solicitó su eliminación de la API; la petición se procesará en un par de horas" -#: ../cache/locales.php:92 ../cache/locales.php:147 +#: [api]conf_updated [config]updated msgid "Configuration updated" msgstr "" -#: ../cache/locales.php:93 +#: [avatar]file msgid "File" msgstr "" -#: ../cache/locales.php:94 +#: [avatar]use_it msgid "Use it" msgstr "" -#: ../cache/locales.php:95 +#: [avatar]webcam msgid "Webcam" msgstr "Webcam" -#: ../cache/locales.php:96 +#: [avatar]cheese msgid "Cheese !" msgstr "¡ Sonría !" -#: ../cache/locales.php:97 +#: [avatar]snapshot msgid "Take a webcam snapshot" msgstr "Tomar una instantánea con la webcam" -#: ../cache/locales.php:98 +#: [avatar]updated msgid "Avatar Updated" msgstr "" -#: ../cache/locales.php:99 +#: [avatar]not_updated msgid "Avatar Not Updated" msgstr "" -#: ../cache/locales.php:100 ../cache/locales.php:415 -#, php-format +#: [blog]title [feed]title msgid "%s's feed" msgstr "" -#: ../cache/locales.php:101 +#: [blog]empty msgid "This user has not posted anything right now" msgstr "" -#: ../cache/locales.php:102 +#: [title]conferences msgid "Conferences" msgstr "Conferencias" -#: ../cache/locales.php:103 ../cache/locales.php:193 ../cache/locales.php:217 -#: ../cache/locales.php:468 +#: [title]groups [group]empty_title [menu]groups [page]groups msgid "Groups" msgstr "Grupos" -#: ../cache/locales.php:104 +#: [chatroom]add msgid "Add a new Chat Room" msgstr "" -#: ../cache/locales.php:105 ../cache/locales.php:368 +#: [chatroom]id [chatrooms]id msgid "Chat Room ID" msgstr "Id. de la sala de chat" -#: ../cache/locales.php:106 ../cache/locales.php:116 ../cache/locales.php:156 -#: ../cache/locales.php:361 ../cache/locales.php:369 ../cache/locales.php:424 +#: [chatroom]name +#, fuzzy +msgctxt "[chatroom]name" msgid "Name" msgstr "Nombre" -#: ../cache/locales.php:107 ../cache/locales.php:157 ../cache/locales.php:371 -#: ../cache/locales.php:425 +#: [chatroom]nickname [general]nickname [chatrooms]nickname msgid "Nickname" msgstr "Apodo" -#: ../cache/locales.php:108 +#: [chatroom]autojoin_label msgid "Do you want do join automaticaly this Chat Room ?" msgstr "" -#: ../cache/locales.php:109 ../cache/locales.php:372 +#: [chatroom]bad_id [chatrooms]bad_id msgid "Bad Chatroom ID" msgstr "ID de la Chatroom incorrecto" -#: ../cache/locales.php:110 ../cache/locales.php:373 +#: [chatroom]empty_name [chatrooms]empty_name msgid "Empty name" msgstr "Nombre vacío" -#: ../cache/locales.php:111 ../cache/locales.php:380 +#: [bookmarks]updated msgid "Bookmarks updated" msgstr "Marcadores actualizados" -#: ../cache/locales.php:112 -msgid "An error occured : " +#: [bookmarks]error +#, fuzzy +msgid "An error occured :" msgstr "Sucedió un error : " -#: ../cache/locales.php:113 +#: [bookmarks]configure msgid "Configure" msgstr "" -#: ../cache/locales.php:114 +#: [url]add msgid "Add a new URL" msgstr "" -#: ../cache/locales.php:115 +#: [url]url msgid "URL" msgstr "" -#: ../cache/locales.php:117 +#: [url]name +#, fuzzy +msgctxt "[url]name" +msgid "Name" +msgstr "Nombre" + +#: [message]published msgid "Message Published" msgstr "Mensaje publicado" -#: ../cache/locales.php:118 ../cache/locales.php:138 +#: [message]encrypted msgid "Encrypted message" msgstr "" -#: ../cache/locales.php:119 +#: [message]composing [chats]composing msgid "Composing..." msgstr "Componiendo..." -#: ../cache/locales.php:120 +#: [message]paused [chats]paused msgid "Paused..." msgstr "" -#: ../cache/locales.php:121 +#: [message]gone msgid "Contact gone" msgstr "" -#: ../cache/locales.php:122 -#, php-format +#: [chat]attention msgid "%s needs your attention" msgstr "%s necesita tu atención" -#: ../cache/locales.php:123 +#: [chat]placeholder msgid "Your message here..." msgstr "" -#: ../cache/locales.php:124 +#: [chat]smileys msgid "Smileys" msgstr "" -#: ../cache/locales.php:125 ../cache/locales.php:139 +#: [chat]empty_title [button]chat msgid "Chat" msgstr "Chat" -#: ../cache/locales.php:126 +#: [chat]empty_text msgid "Discuss with your contacts" msgstr "" -#: ../cache/locales.php:127 -msgid "Members" -msgstr "" - -#: ../cache/locales.php:128 ../cache/locales.php:376 -msgid "Connected to the chatroom" -msgstr "" - -#: ../cache/locales.php:129 ../cache/locales.php:377 -msgid "Disconnected from the chatroom" -msgstr "" - -#: ../cache/locales.php:130 ../cache/locales.php:200 ../cache/locales.php:469 -msgid "Configuration" -msgstr "Configuración" - -#: ../cache/locales.php:131 -msgid "Configuration saved" -msgstr "" - -#: ../cache/locales.php:132 -msgid "Subject" -msgstr "" - -#: ../cache/locales.php:133 -msgid "Subject changed" -msgstr "" - -#: ../cache/locales.php:134 -msgid "Open a new conversation by clicking on the plus button bellow" -msgstr "" - -#: ../cache/locales.php:135 -msgid "Chat with a contact" -msgstr "" - -#: ../cache/locales.php:136 +#: [chat]frequent [chats]frequent msgid "Frequent contacts" msgstr "" -#: ../cache/locales.php:137 +#: [chatroom]members +msgid "Members" +msgstr "" + +#: [chatroom]connected [chatrooms]connected +msgid "Connected to the chatroom" +msgstr "" + +#: [chatroom]disconnected [chatrooms]disconnected +msgid "Disconnected from the chatroom" +msgstr "" + +#: [chatroom]config [group]configuration [page]configuration +msgid "Configuration" +msgstr "Configuración" + +#: [chatroom]config_saved +msgid "Configuration saved" +msgstr "" + +#: [chatroom]subject +msgid "Subject" +msgstr "" + +#: [chatroom]subject_changed +msgid "Subject changed" +msgstr "" + +#: [chats]empty_title +msgid "No chats yet..." +msgstr "" + +#: [chats]empty +msgid "Open a new conversation by clicking on the plus button bellow or visit the Contacts page." +msgstr "" + +#: [chats]add +msgid "Chat with a contact" +msgstr "" + +#: [chats]more msgid "Load more contacts" msgstr "" -#: ../cache/locales.php:140 -msgid "General" -msgstr "" - -#: ../cache/locales.php:141 -msgid "Language" -msgstr "Idioma" - -#: ../cache/locales.php:142 -msgid "Roster display" -msgstr "" - -#: ../cache/locales.php:143 -msgid "Show the offline contacts" -msgstr "" - -#: ../cache/locales.php:144 -msgid "Hide the offline contacts" -msgstr "" - -#: ../cache/locales.php:145 -msgid "Appearence" -msgstr "" - -#: ../cache/locales.php:146 -msgid "This configuration is shared wherever you are connected !" -msgstr "" - -#: ../cache/locales.php:148 -msgid "Notify on incoming message" -msgstr "" - -#: ../cache/locales.php:149 -msgid "Use desktop notifications" -msgstr "" - -#: ../cache/locales.php:150 +#: [title]data msgid "Data" msgstr "" -#: ../cache/locales.php:151 +#: [title]cache msgid "Cache" msgstr "" -#: ../cache/locales.php:152 ../cache/locales.php:218 ../cache/locales.php:466 +#: [title]contacts [menu]contacts [page]contacts msgid "Contacts" msgstr "" -#: ../cache/locales.php:153 ../cache/locales.php:480 +#: [title]posts [page]posts msgid "Posts" msgstr "" -#: ../cache/locales.php:154 +#: [title]messages msgid "Messages" msgstr "" -#: ../cache/locales.php:155 ../cache/locales.php:423 +#: [config]general +msgid "General" +msgstr "" + +#: [config]language +msgid "Language" +msgstr "Idioma" + +#: [config]roster +msgid "Roster display" +msgstr "" + +#: [config]roster_show +msgid "Show the offline contacts" +msgstr "" + +#: [config]roster_hide +msgid "Hide the offline contacts" +msgstr "" + +#: [config]appearence +msgid "Appearence" +msgstr "" + +#: [config]info +msgid "This configuration is shared wherever you are connected" +msgstr "" + +#: [notifications]message +msgid "Notify on incoming message" +msgstr "" + +#: [notifications]desktop +msgid "Use desktop notifications" +msgstr "" + +#: [general]legend [general]general_title msgid "General Informations" msgstr "Informaciones generales" -#: ../cache/locales.php:158 ../cache/locales.php:427 +#: [general]name [public_groups]name [chatrooms]name +msgid "Name" +msgstr "Nombre" + +#: [general]date_of_birth msgid "Date of Birth" msgstr "Fecha de nacimiento" -#: ../cache/locales.php:159 ../cache/locales.php:428 +#: [general]gender msgid "Gender" msgstr "Género" -#: ../cache/locales.php:160 ../cache/locales.php:429 +#: [general]marital msgid "Marital Status" msgstr "Estado civil" -#: ../cache/locales.php:161 ../cache/locales.php:426 +#: [general]email msgid "Email" msgstr "Correo electrónico" -#: ../cache/locales.php:162 ../cache/locales.php:430 +#: [general]website msgid "Website" msgstr "Página web" -#: ../cache/locales.php:163 ../cache/locales.php:431 +#: [general]about msgid "About Me" msgstr "Acerca de mí" -#: ../cache/locales.php:164 +#: [general]accounts msgid "Other Accounts" msgstr "" -#: ../cache/locales.php:165 +#: [general]tune msgid "Is Listening" msgstr "" -#: ../cache/locales.php:166 ../cache/locales.php:432 +#: [position]legend [position]position_title msgid "Geographic Position" msgstr "Posición geográfica" -#: ../cache/locales.php:167 ../cache/locales.php:433 +#: [position]locality msgid "Locality" msgstr "Localidad" -#: ../cache/locales.php:168 ../cache/locales.php:434 +#: [position]country msgid "Country" msgstr "País" -#: ../cache/locales.php:169 +#: [mood]title msgid "Mood" msgstr "Estado de ánimo" -#: ../cache/locales.php:170 +#: [mood]im msgid "I'm " msgstr "Soy " -#: ../cache/locales.php:171 +#: [listen]title msgid "Listening" msgstr "Escuchando" -#: ../cache/locales.php:173 +#: [last]title msgid "Last seen" msgstr "Visto por última vez" -#: ../cache/locales.php:174 +#: [client]title msgid "Client Informations" msgstr "Información del Cliente" -#: ../cache/locales.php:175 +#: [explore]last_registered msgid "Last registered" msgstr "Último registrado" -#: ../cache/locales.php:176 +#: [explore]explore msgid "Find some new friends" msgstr "" -#: ../cache/locales.php:177 ../cache/locales.php:533 +#: [edit]title [button]edit msgid "Edit" msgstr "" -#: ../cache/locales.php:178 +#: [edit]alias msgid "Alias" msgstr "Apodo" -#: ../cache/locales.php:179 +#: [edit]group msgid "Group" msgstr "Grupo" -#: ../cache/locales.php:180 ../cache/locales.php:400 +#: [edit]updated [roster]updated msgid "Contact updated" msgstr "Contacto actualizado" -#: ../cache/locales.php:181 +#: [delete]title msgid "Are you sure?" msgstr "" -#: ../cache/locales.php:182 -msgid "" -"You are going to delete one of your contacts, please confirm your action" +#: [delete]text +msgid "You are going to delete one of your contacts, please confirm your action" msgstr "" -#: ../cache/locales.php:183 -#, php-format +#: [age]years msgid "%s years" msgstr "" -#: ../cache/locales.php:184 +#: [blog]last msgid "Last public post" msgstr "" -#: ../cache/locales.php:185 +#: [subscription]to +#, fuzzy +msgid "You can see this contact status" +msgstr "Borrar contacto" + +#: [subscription]to_button +msgid "Share my status" +msgstr "" + +#: [subscription]to_text +msgid "But this contact cannot see yours" +msgstr "" + +#: [subscription]from +msgid "You are not subscribed to this contact" +msgstr "" + +#: [subscription]from_button +#, fuzzy +msgid "Ask to subscribe" +msgstr "Suscribirse" + +#: [subscription]from_text +msgid "But this contact can still see if you are online" +msgstr "" + +#: [subscription]nil +#, fuzzy +msgid "No subscriptions" +msgstr "Recibe suscripciones" + +#: [subscription]nil_button +msgid "Invite" +msgstr "" + +#: [subscription]nil_text +msgid "This contact is in your contact list but there is no subscriptions between the two accounts" +msgstr "" + +#: [group]subscribe msgid "Subscribe" msgstr "" -#: ../cache/locales.php:186 +#: [group]subscribed msgid "Subscribed" msgstr "Suscribirse" -#: ../cache/locales.php:187 +#: [group]unsubscribe msgid "Unsubscribe" msgstr "" -#: ../cache/locales.php:188 +#: [group]unsubscribe_text msgid "You are going to unsubscribe from this Group" msgstr "" -#: ../cache/locales.php:189 +#: [group]unsubscribed msgid "Unsubscribed" msgstr "" -#: ../cache/locales.php:190 +#: [group]share_label msgid "Make your membership to this group public to your friends" msgstr "" -#: ../cache/locales.php:191 +#: [group]label_label msgid "Give a label for this group" msgstr "" -#: ../cache/locales.php:192 +#: [group]sure msgid "Are you sure ?" msgstr "" -#: ../cache/locales.php:194 +#: [group]empty_text msgid "Discover, follow and share" msgstr "" -#: ../cache/locales.php:195 +#: [group]empty msgid "Something bad happened to this group" msgstr "" -#: ../cache/locales.php:196 +#: [group]config_saved msgid "Group configuration saved" msgstr "Configuración de grupo guardada" -#: ../cache/locales.php:197 +#: [group]delete_title msgid "Delete the group" msgstr "" -#: ../cache/locales.php:198 -msgid "" -"You are going to delete the following group. Please confirm your action." +#: [group]delete_text +msgid "You are going to delete the following group. Please confirm your action." msgstr "" -#: ../cache/locales.php:199 -msgid "" -"It seems that this group doesn't exists anymore. Do you want to remove it " -"from your subscriptions?" +#: [group]delete_clean_text +msgid "It seems that this group doesn't exists anymore. Do you want to remove it from your subscriptions?" msgstr "" -#: ../cache/locales.php:201 ../cache/locales.php:408 +#: [group]counter +msgid "%s groups on this server" +msgstr "" + +#: [group]subscriptions [statistics]subscriptions msgid "Subscriptions" msgstr "" -#: ../cache/locales.php:202 ../cache/locales.php:290 +#: [group]servers +#, fuzzy +msgid "Groups servers" +msgstr "Grupos" + +#: [group]search_server +msgid "Search for a new server" +msgstr "" + +#: [group]help_info1 +msgid "Groups are the perfect way to share posts about topics that you like with all the other Movim's users." +msgstr "" + +#: [group]help_info2 +msgid "Choose a server and a Group and subscribe to it using the %s button in the header. You can also create a new one using the %s button." +msgstr "" + +#: [group]help_info3 +msgid "Done? You can now publish a new post in the Group by using the %s button." +msgstr "" + +#: [group]help_info4 +msgid "You will find a list of all your subscribed Groups in My Subscriptions and receive instantly all the new incoming posts in the %sNews%s page." +msgstr "" + +#: [groups]empty_title msgid "Hello" msgstr "" -#: ../cache/locales.php:203 ../cache/locales.php:225 ../cache/locales.php:291 +#: [groups]contact_post [hello]contact_post [menu]contact_post msgid "Contact post" msgstr "" -#: ../cache/locales.php:204 -msgid "" -"You don't have any subscriptions yet, select a group server above to start " -"exploring." +#: [groups]empty_text1 +msgid "You don't have any subscriptions yet, select a group server above to start exploring." msgstr "" -#: ../cache/locales.php:205 +#: [groups]empty_text2 msgid "Subscribe to your favorite feeds by bookmarking them." msgstr "" -#: ../cache/locales.php:206 +#: [groups]subscriptions msgid "My Subscriptions" msgstr "" -#: ../cache/locales.php:207 +#: [groups]add msgid "Create a new Group" msgstr "" -#: ../cache/locales.php:208 +#: [groups]name msgid "Group name" msgstr "" -#: ../cache/locales.php:209 +#: [groups]name_example msgid "My Little Pony - Fan Club" msgstr "Mi pequeño pony - Club de fans" -#: ../cache/locales.php:210 +#: [groups]created msgid "Group created successfully" msgstr "" -#: ../cache/locales.php:211 +#: [groups]deleted msgid "Group deleted successfully" msgstr "" -#: ../cache/locales.php:212 +#: [groups]name_error msgid "Please provide a valid group name (4 characters minimum)" msgstr "" -#: ../cache/locales.php:213 +#: [groups]no_creation msgid "You cannot create a new Group on this server" msgstr "" -#: ../cache/locales.php:214 -#, php-format +#: [groups]sub msgid "%s subscribers" msgstr "" -#: ../cache/locales.php:215 -#, php-format +#: [groups]num msgid "%s posts" msgstr "" -#: ../cache/locales.php:216 +#: [groups]disco_error +#, fuzzy +msgid "This server doesn't exists" +msgstr "Este servidor cuenta %s cuentas" + +#: [menu]all msgid "All" msgstr "Todos" -#: ../cache/locales.php:219 +#: [menu]refresh msgid "Refresh all the streams" msgstr "" -#: ../cache/locales.php:220 ../cache/locales.php:402 -msgid "Search" -msgstr "Buscar" +#: [roster]search +#, fuzzy +msgid "Search in your contacts" +msgstr "Compartir con un contacto" -#: ../cache/locales.php:221 +#: [hello]active_contacts +#, fuzzy +msgid "Active contacts" +msgstr "Acciones" + +#: [hello]chat msgid "Go on the Chat page" msgstr "" -#: ../cache/locales.php:222 -msgid "Read all theses articles on the News page" -msgstr "" - -#: ../cache/locales.php:223 -msgid "Visit your public blog" -msgstr "" - -#: ../cache/locales.php:224 -msgid "See your public posts and share them with all your contacts" -msgstr "" - -#: ../cache/locales.php:226 -msgid "Universal share button" -msgstr "" - -#: ../cache/locales.php:227 -msgid "" -"Bookmark or drag and drop the following button in your toolbar and use it on " -"all the pages you want to share on Movim" -msgstr "" - -#: ../cache/locales.php:228 -msgid "Share on Movim" -msgstr "" - -#: ../cache/locales.php:229 -msgid "Frequently Asked Questions" -msgstr "" - -#: ../cache/locales.php:230 -msgid "What do the little banners refer to ?" -msgstr "¿A que hacen referencia las pequeñas banderitas?" - -#: ../cache/locales.php:231 -msgid "" -"Thanks to these five little banners, you can quickly identitfy the level of " -"confdentiality applied to the information you provide." -msgstr "" -"Gracias a estas cinco pequeñas banderas, usted puede identificar el nivel de " -"confidencialidad aplicado a la información que usted proporcione." - -#: ../cache/locales.php:232 -msgid "White, only you can see the information" -msgstr "Blanco, sólo usted puede ver la información" - -#: ../cache/locales.php:233 -msgid "Green, you have chosen some contacts who can see your information" -msgstr "Verde, ha elegido que algunos contactos puedan ver su información" - -#: ../cache/locales.php:234 -msgid "Orange, all your contact list can see your information" -msgstr "Anaranjado, toda su lista de contactos puede ver su información" - -#: ../cache/locales.php:235 -msgid "Red, everybody in the XMPP network can see your information" -msgstr "Rojo, todos en la red XMPP pueden ver su información" - -#: ../cache/locales.php:236 -msgid "Black, the whole Internet can see your information" -msgstr "Negro, toda la Internet puede ver su información" - -#: ../cache/locales.php:237 -msgid "Looking for some documentation ?" -msgstr "" - -#: ../cache/locales.php:238 -msgid "Read the Wiki" -msgstr "" - -#: ../cache/locales.php:239 -msgid "Talk with us by email ?" -msgstr "" - -#: ../cache/locales.php:240 -msgid "Join the Mailing List" -msgstr "" - -#: ../cache/locales.php:241 -msgid "Chat with the team ?" -msgstr "" - -#: ../cache/locales.php:242 -msgid "Join the Chatroom" -msgstr "" - -#: ../cache/locales.php:243 -msgid "Location node created" -msgstr "" - -#: ../cache/locales.php:244 -msgid "Bookmark node created" -msgstr "" - -#: ../cache/locales.php:245 -msgid "Profile node created" -msgstr "" - -#: ../cache/locales.php:246 -msgid "Avatar node created" -msgstr "" - -#: ../cache/locales.php:247 -msgid "Subscriptions node created" -msgstr "" - -#: ../cache/locales.php:248 -msgid "Microblog node created" -msgstr "" - -#: ../cache/locales.php:249 -msgid "Location" -msgstr "Ubicación" - -#: ../cache/locales.php:250 -msgid "Wrong position" -msgstr "Posición errónea" - -#: ../cache/locales.php:251 -msgid "Location updated" -msgstr "Ubicación actualizada" - -#: ../cache/locales.php:252 -msgid "Update my position" -msgstr "" - -#: ../cache/locales.php:253 -msgid "Wrong username" -msgstr "Nombre de usuario incorrecto" - -#: ../cache/locales.php:254 -msgid "Invalid JID" -msgstr "Identificación de Jabber no válida" - -#: ../cache/locales.php:255 -msgid "Empty Challenge from the server" -msgstr "Desafío vacío del servidor" - -#: ../cache/locales.php:256 -msgid "XMPP Domain error, your account is not a correct Jabber ID" -msgstr "Error de dominio XMPP, su cuenta no es un Jabber ID correcto" - -#: ../cache/locales.php:257 -msgid "Some data are missing !" -msgstr "¡Algunos datos están incompletos!" - -#: ../cache/locales.php:258 -msgid "Wrong password" -msgstr "Contraseña incorrecta" - -#: ../cache/locales.php:259 -msgid "Internal server error" -msgstr "Error interno del servidor" - -#: ../cache/locales.php:260 -msgid "Session error" -msgstr "Error en la sesión" - -#: ../cache/locales.php:261 -msgid "Account successfully created" -msgstr "La cuenta ha sido creada exitosamente" - -#: ../cache/locales.php:262 ../cache/locales.php:271 -msgid "Your XMPP server is unauthorized" -msgstr "Tu servidor de XMPP no está autorizado" - -#: ../cache/locales.php:263 -msgid "The server takes too much time to respond" -msgstr "El servidor está tardando demasiado en responder" - -#: ../cache/locales.php:264 -msgid "Your web browser is too old to use with Movim." -msgstr "Tu navegador web es demasiado antiguo para usar Movim" - -#: ../cache/locales.php:265 -msgid "" -"Movim cannot talk with the server, please try again later (Websocket " -"connection error)" -msgstr "" - -#: ../cache/locales.php:266 -msgid "Impossible login" -msgstr "" - -#: ../cache/locales.php:267 -msgid "Oops!" -msgstr "" - -#: ../cache/locales.php:268 ../cache/locales.php:449 ../cache/locales.php:455 -msgid "Unknown error" -msgstr "Error desconocido" - -#: ../cache/locales.php:269 -msgid "Invalid username format" -msgstr "" - -#: ../cache/locales.php:270 -msgid "Invalid password format" -msgstr "" - -#: ../cache/locales.php:272 -msgid "A Movim session is already open on an other device" -msgstr "" - -#: ../cache/locales.php:273 -msgid "Movim failed to authenticate. You entered wrong data" -msgstr "Movim no ha podido autenticar. Ha introducido datos erróneos" - -#: ../cache/locales.php:274 -msgid "Authentication mechanism not supported by Movim" -msgstr "El mecanismo de autenticación no está soportado por Movim" - -#: ../cache/locales.php:275 -msgid "The XMPP authentification failed" -msgstr "La autentificación de XMPP ha fallado" - -#: ../cache/locales.php:276 -#, php-format -msgid "" -"You can login with Facebook (chat only) using %syour.id@chat.facebook.com%s " -"and your password" -msgstr "" -"Puedes loguearte con tu cuenta de Facebook (solo chat) usando " -"%stu.usuario@chat.facebook.com%s y tu contraseña" - -#: ../cache/locales.php:277 -#, php-format -msgid "%sGmail accounts are also compatible%s but are not fully supported" -msgstr "" -"%s Las cuentas de Gmail también son compatibles %s pero no están totalmente " -"soportadas" - -#: ../cache/locales.php:278 -msgid "You can login using your favorite Jabber account" -msgstr "" - -#: ../cache/locales.php:279 -msgid "or with our demonstration account" -msgstr "" - -#: ../cache/locales.php:280 ../cache/locales.php:435 -msgid "Accounts" -msgstr "" - -#: ../cache/locales.php:281 -msgid "My address" -msgstr "Mi dirección" - -#: ../cache/locales.php:283 -msgid "Create one !" -msgstr "" - -#: ../cache/locales.php:284 -msgid "No account yet ?" -msgstr "" - -#: ../cache/locales.php:285 -msgid "Another account" -msgstr "" - -#: ../cache/locales.php:286 -msgid "You can login with accounts from theses servers" -msgstr "" - -#: ../cache/locales.php:287 -msgid "Connected" -msgstr "" - -#: ../cache/locales.php:288 -msgid "Population" -msgstr "" - -#: ../cache/locales.php:289 -msgid "Bad nickname (between 4 and 40 characters)" -msgstr "" - -#: ../cache/locales.php:292 -msgid "" -"Welcome on your news feed, here you will see all the posts published in the " -"groups you have subscribed." -msgstr "" - -#: ../cache/locales.php:293 -msgid "Refreshing all the streams" -msgstr "" - -#: ../cache/locales.php:294 -msgid "This post is public" -msgstr "" - -#: ../cache/locales.php:295 -msgid "Manage your members" -msgstr "Gestionar miembros" - -#: ../cache/locales.php:296 -msgid "Get the members" -msgstr "Obtener miembros" - -#: ../cache/locales.php:297 -msgid "Affiliations saved" -msgstr "Afiliaciones guardadas" - -#: ../cache/locales.php:298 -msgid "Manage your subscriptions" -msgstr "Administrar tus subscripciones" - -#: ../cache/locales.php:299 -msgid "Manage the subscriptions" -msgstr "Administar las subscripciones" - -#: ../cache/locales.php:300 -msgid "Get the subscriptions" -msgstr "Recibe suscripciones" - -#: ../cache/locales.php:301 -msgid "Subscriptions saved" -msgstr "" - -#: ../cache/locales.php:302 -msgid "Pending Invitations" -msgstr "" - -#: ../cache/locales.php:303 -#, php-format -msgid "%s wants to talk with you" -msgstr "" - -#: ../cache/locales.php:304 -msgid "Manage" -msgstr "Administrar" - -#: ../cache/locales.php:305 ../cache/locales.php:338 -msgid "News Feed" -msgstr "" - -#: ../cache/locales.php:306 ../cache/locales.php:339 -msgid "Discover and register to the groups you are interested in" -msgstr "" - -#: ../cache/locales.php:307 ../cache/locales.php:340 ../cache/locales.php:482 -msgid "Preview" -msgstr "" - -#: ../cache/locales.php:308 ../cache/locales.php:341 ../cache/locales.php:478 -msgid "Help" -msgstr "Ayuda" - -#: ../cache/locales.php:309 ../cache/locales.php:342 -msgid "More help" -msgstr "" - -#: ../cache/locales.php:310 ../cache/locales.php:343 -msgid "Markdown syntax manual" -msgstr "" - -#: ../cache/locales.php:311 ../cache/locales.php:344 ../cache/locales.php:681 -msgid "Title" -msgstr "" - -#: ../cache/locales.php:312 ../cache/locales.php:345 -msgid "Content" -msgstr "" - -#: ../cache/locales.php:313 ../cache/locales.php:346 -msgid "Link" -msgstr "Enlace" - -#: ../cache/locales.php:314 ../cache/locales.php:347 -msgid "Tags" -msgstr "" - -#: ../cache/locales.php:315 ../cache/locales.php:348 -msgid "Please enter a valid url" -msgstr "" - -#: ../cache/locales.php:316 ../cache/locales.php:349 -msgid "No content to preview" -msgstr "" - -#: ../cache/locales.php:317 ../cache/locales.php:350 ../cache/locales.php:687 -msgid "No content" -msgstr "No hay contenido" - -#: ../cache/locales.php:318 ../cache/locales.php:351 -msgid "Post published" -msgstr "" - -#: ../cache/locales.php:319 ../cache/locales.php:352 -msgid "Post deleted" -msgstr "" - -#: ../cache/locales.php:320 ../cache/locales.php:353 -msgid "This picture will be added to your gallery" -msgstr "" - -#: ../cache/locales.php:321 ../cache/locales.php:354 -msgid "What's Hot" -msgstr "" - -#: ../cache/locales.php:322 ../cache/locales.php:355 -msgid "New post" -msgstr "" - -#: ../cache/locales.php:323 ../cache/locales.php:357 -msgid "" -"You can also use services like Imgur or Flickr to host your picture and " -"paste the link here." -msgstr "" - -#: ../cache/locales.php:324 -#, php-format -msgid "This is a re-post from %s" -msgstr "" - -#: ../cache/locales.php:325 -#, php-format -msgid "See %s profile" -msgstr "" - -#: ../cache/locales.php:326 -msgid "Publish this post on your public feed?" -msgstr "" - -#: ../cache/locales.php:327 -msgid "Post published on your blog" -msgstr "" - -#: ../cache/locales.php:328 -msgid "Post removed from your blog" -msgstr "" - -#: ../cache/locales.php:329 ../cache/locales.php:701 -msgid "Delete this post" -msgstr "" - -#: ../cache/locales.php:330 -msgid "You are going to delete this post, please confirm your action" -msgstr "" - -#: ../cache/locales.php:331 -msgid "Comments disabled" -msgstr "" - -#: ../cache/locales.php:332 -msgid "Comment published" -msgstr "" - -#: ../cache/locales.php:333 -msgid "Disconnect" -msgstr "" - -#: ../cache/locales.php:334 -msgid "Your status here !" -msgstr "" - -#: ../cache/locales.php:335 -msgid "Status updated" -msgstr "Actualizar estado" - -#: ../cache/locales.php:336 -msgid "Status" -msgstr "" - -#: ../cache/locales.php:337 -msgid "Presence" -msgstr "" - -#: ../cache/locales.php:356 -msgid "Publish" -msgstr "" - -#: ../cache/locales.php:358 -msgid "You cannot publish a post on this Group" -msgstr "" - -#: ../cache/locales.php:359 -msgid "" -"Some fields have been filled in. Do you still want to go back and loose " -"their content?" -msgstr "" - -#: ../cache/locales.php:360 -msgid "Shared" -msgstr "" - -#: ../cache/locales.php:362 -#, php-format -msgid "%s has been added to your public groups" -msgstr "" - -#: ../cache/locales.php:363 -#, php-format -msgid "%s has been removed from your public groups" -msgstr "%s ha sido eliminado de tus grupos públicos" - -#: ../cache/locales.php:364 -msgid "Add a chatroom" -msgstr "" - -#: ../cache/locales.php:365 -msgid "You don't have any chatroom yet." -msgstr "" - -#: ../cache/locales.php:366 -msgid "Add one by clicking on the add button in the header." -msgstr "" - -#: ../cache/locales.php:367 -msgid "Chatrooms" -msgstr "" - -#: ../cache/locales.php:370 -msgid "My Favorite Room" -msgstr "" - -#: ../cache/locales.php:374 -msgid "Remove a chatroom" -msgstr "" - -#: ../cache/locales.php:375 -msgid "" -"You are going to remove the following chatroom. Please confirm your action." -msgstr "" - -#: ../cache/locales.php:378 -msgid "Users in the room" -msgstr "" - -#: ../cache/locales.php:379 -msgid "Please enter a correct nickname (6 to 40 characters)" -msgstr "" - -#: ../cache/locales.php:381 -msgid "Public chatroom" -msgstr "" - -#: ../cache/locales.php:382 -msgid "Please provide a room address" -msgstr "" - -#: ../cache/locales.php:383 -msgid "You are currently logued as an anonymous user." -msgstr "" - -#: ../cache/locales.php:384 -msgid "" -"You can join using your own account or create one on the login page by " -"loging out using the cross in the top-right corner." -msgstr "" - -#: ../cache/locales.php:385 -#, php-format -msgid "Login on %s" -msgstr "" - -#: ../cache/locales.php:386 -msgid "Your nickname" -msgstr "" - -#: ../cache/locales.php:387 -msgid "Ungrouped" -msgstr "Sin grupo" - -#: ../cache/locales.php:388 -msgid "Show disconnected contacts" -msgstr "" - -#: ../cache/locales.php:389 -msgid "Hide disconnected contacts" -msgstr "" - -#: ../cache/locales.php:390 -#, php-format -msgid "Show group %s" -msgstr "" - -#: ../cache/locales.php:391 -#, php-format -msgid "Hide group %s" -msgstr "" - -#: ../cache/locales.php:392 -msgid "Please enter a valid Jabber ID" -msgstr "Por favor, ingresa un Jabber ID válido" - -#: ../cache/locales.php:393 -msgid "" -"No contacts ? You can add one using the + button bellow or going to the " -"Explore page" -msgstr "" - -#: ../cache/locales.php:394 -msgid "Show/Hide" -msgstr "" - -#: ../cache/locales.php:395 -msgid "Enter the Jabber ID of your contact." -msgstr "" - -#: ../cache/locales.php:396 -msgid "Press enter to validate." -msgstr "" - -#: ../cache/locales.php:397 -msgid "JID" -msgstr "" - -#: ../cache/locales.php:398 -msgid "Results" -msgstr "" - -#: ../cache/locales.php:399 -msgid "Contact added" -msgstr "" - -#: ../cache/locales.php:401 -msgid "Contact deleted" -msgstr "" - -#: ../cache/locales.php:403 -msgid "This is not a valid url" -msgstr "" - -#: ../cache/locales.php:404 -msgid "Sharing the URL" -msgstr "" - -#: ../cache/locales.php:405 -msgid "Statistics" -msgstr "" - -#: ../cache/locales.php:406 -msgid "Since" -msgstr "" - -#: ../cache/locales.php:407 -msgid "Sessions" -msgstr "" - -#: ../cache/locales.php:409 -msgid "Monthly Subscriptions" -msgstr "" - -#: ../cache/locales.php:410 -msgid "Monthly Subscriptions Cumulated" -msgstr "" - -#: ../cache/locales.php:412 -msgid "" -"Movim is a decentralized social network, before creating a new account you " -"need to choose a server to register." -msgstr "" -"Movim es una red social descentralizada, antes de crear una cuenta nueva " -"necesita elegir un servidor para registrarse." - -#: ../cache/locales.php:413 -msgid "Your server here ?" -msgstr "" - -#: ../cache/locales.php:414 -msgid "Contact us to add yours to the officially supported servers list" -msgstr "" - -#: ../cache/locales.php:416 -msgid "No public feed for this contact" -msgstr "" - -#: ../cache/locales.php:417 -msgid "No contact specified" -msgstr "" - -#: ../cache/locales.php:418 ../cache/locales.php:473 -msgid "Profile" -msgstr "Perfil" - -#: ../cache/locales.php:419 -msgid "Profile Updated" -msgstr "Perfil actualizado" - -#: ../cache/locales.php:420 -msgid "Profile Not Updated" -msgstr "" - -#: ../cache/locales.php:421 -msgid "Your profile is now public" -msgstr "" - -#: ../cache/locales.php:422 -msgid "Your profile is now restricted" -msgstr "" - -#: ../cache/locales.php:436 -msgid "Twitter" -msgstr "" - -#: ../cache/locales.php:437 -msgid "Skype" -msgstr "" - -#: ../cache/locales.php:438 -msgid "Yahoo" -msgstr "" - -#: ../cache/locales.php:439 -msgid "Privacy Level" -msgstr "Nivel de privacidad" - -#: ../cache/locales.php:440 -msgid "Is this profile public ?" -msgstr "¿ Es público este perfil ?" - -#: ../cache/locales.php:441 -msgid "" -"Please pay attention ! By making your profile public, all the information " -"listed above will be available for all the Movim users and on the whole " -"Internet." -msgstr "" -"¡ Por favor preste atención ! Haciendo público su perfil, toda la " -"información listada encima estará disponible para todos los usuarios de " -"Movim y para todo internet." - -#: ../cache/locales.php:442 -msgid "Call" -msgstr "" - -#: ../cache/locales.php:443 -msgid "Hang up" -msgstr "" - -#: ../cache/locales.php:444 -msgid "Connection" -msgstr "" - -#: ../cache/locales.php:445 ../cache/locales.php:451 -msgid "Hung up" -msgstr "" - -#: ../cache/locales.php:446 ../cache/locales.php:452 -msgid "Your contact is busy" -msgstr "" - -#: ../cache/locales.php:447 ../cache/locales.php:453 -msgid "Declined" -msgstr "" - -#: ../cache/locales.php:448 ../cache/locales.php:454 -msgid "Remote application incompatible" -msgstr "" - -#: ../cache/locales.php:450 ../cache/locales.php:456 -msgid "Is calling you" -msgstr "" - -#: ../cache/locales.php:457 -msgid "You don't have javascript enabled. Good luck with that." -msgstr "" - -#: ../cache/locales.php:458 -msgid "" -"Movim is a kickass distributed social networking platform that protect your " -"privacy an comes with a set of awesome features." -msgstr "" - -#: ../cache/locales.php:459 -msgid "Administration" -msgstr "Administración" - -#: ../cache/locales.php:460 -msgid "Home" -msgstr "Inicio" - -#: ../cache/locales.php:461 -msgid "Discover" -msgstr "Descubrir" - -#: ../cache/locales.php:462 -msgid "Explore" -msgstr "Explorar" - -#: ../cache/locales.php:463 -msgid "Account Creation" -msgstr "Crear cuenta" - -#: ../cache/locales.php:464 +#: [hello]news [page]news msgid "News" msgstr "Novedades" -#: ../cache/locales.php:465 -msgid "Avatar" -msgstr "Imagen de perfil" - -#: ../cache/locales.php:467 -msgid "Chats" +#: [hello]news_page +msgid "Read all theses articles on the News page" msgstr "" -#: ../cache/locales.php:470 -msgid "Server" -msgstr "Servidor" - -#: ../cache/locales.php:471 -msgid "Public Groups" -msgstr "Grupos públicos" - -#: ../cache/locales.php:472 -msgid "Viewer" -msgstr "Visor" - -#: ../cache/locales.php:474 -msgid "Media" -msgstr "Multimedia" - -#: ../cache/locales.php:475 -msgid "Blog" -msgstr "Blog" - -#: ../cache/locales.php:476 -msgid "About" -msgstr "Acerca de" - -#: ../cache/locales.php:477 -msgid "Login" +#: [hello]blog_title +msgid "Visit your public blog" msgstr "" -#: ../cache/locales.php:479 -msgid "Feed" -msgstr "Canal" - -#: ../cache/locales.php:481 -msgid "Gallery" +#: [hello]blog_text +msgid "See your public posts and share them with all your contacts" msgstr "" -#: ../cache/locales.php:483 -msgid "Visio-conference" +#: [hello]share_title +msgid "Universal share button" msgstr "" -#: ../cache/locales.php:484 -msgid "Pods" +#: [hello]share_text +msgid "Bookmark or drag and drop the following button in your toolbar and use it on all the pages you want to share on Movim" msgstr "" -#: ../cache/locales.php:485 -msgid "Share" +#: [hello]share_button +msgid "Share on Movim" msgstr "" -#: ../cache/locales.php:486 -msgid "Room" +#: [help]faq +msgid "Frequently Asked Questions" msgstr "" -#: ../cache/locales.php:487 -#, php-format -msgid "Error: %s" -msgstr "Error: %s" +#: [banner]title +msgid "What do the little banners refer to ?" +msgstr "¿A que hacen referencia las pequeñas banderitas?" -#: ../cache/locales.php:488 -#, php-format -msgid "Cannot load file '%s'" -msgstr "No se pudo cargar el archivo '%s'" +#: [banner]info1 +msgid "Thanks to these five little banners, you can quickly identitfy the level of confdentiality applied to the information you provide." +msgstr "Gracias a estas cinco pequeñas banderas, usted puede identificar el nivel de confidencialidad aplicado a la información que usted proporcione." -#: ../cache/locales.php:489 -#, php-format -msgid "Route error, please set all the parameters for the page %s" -msgstr "" -"Error de ruta, por favor establezca todos los parámetros para la página %s" +#: [banner]white +msgid "White, only you can see the information" +msgstr "Blanco, sólo usted puede ver la información" -#: ../cache/locales.php:490 -#, php-format -msgid "Requested widget '%s' doesn't exist." +#: [banner]green +msgid "Green, you have chosen some contacts who can see your information" +msgstr "Verde, ha elegido que algunos contactos puedan ver su información" + +#: [banner]orange +msgid "Orange, all your contact list can see your information" +msgstr "Anaranjado, toda su lista de contactos puede ver su información" + +#: [banner]red +msgid "Red, everybody in the XMPP network can see your information" +msgstr "Rojo, todos en la red XMPP pueden ver su información" + +#: [banner]black +msgid "Black, the whole Internet can see your information" +msgstr "Negro, toda la Internet puede ver su información" + +#: [wiki]question +msgid "Looking for some documentation ?" msgstr "" -#: ../cache/locales.php:491 -#, php-format -msgid "Requested event '%s' not registered." +#: [wiki]button +msgid "Read the Wiki" msgstr "" -#: ../cache/locales.php:492 -msgid "Whoops!" +#: [ml]question +msgid "Talk with us by email ?" msgstr "" -#: ../cache/locales.php:493 -msgid "It seem that you don't have any pictures here?" +#: [ml]button +msgid "Join the Mailing List" msgstr "" -#: ../cache/locales.php:494 -msgid "You can try to upload a couple by going to the Media page" +#: [chatroom]question +msgid "Chat with the team ?" msgstr "" -#: ../cache/locales.php:495 -#, php-format -msgid "%s - About" -msgstr "%s - Acerca de" +#: [chatroom]button +msgid "Join the Chatroom" +msgstr "" -#: ../cache/locales.php:496 -#, php-format -msgid "%s - Account" +#: [init]location +msgid "Location node created" +msgstr "" + +#: [init]bookmark +msgid "Bookmark node created" +msgstr "" + +#: [init]vcard4 +msgid "Profile node created" +msgstr "" + +#: [init]avatar +msgid "Avatar node created" +msgstr "" + +#: [init]subscriptions +msgid "Subscriptions node created" +msgstr "" + +#: [init]microblog +msgid "Microblog node created" +msgstr "" + +#: [location]title +msgid "Location" +msgstr "Ubicación" + +#: [location]wrong_postition +msgid "Wrong position" +msgstr "Posición errónea" + +#: [location]updated +msgid "Location updated" +msgstr "Ubicación actualizada" + +#: [location]update +msgid "Update my position" +msgstr "" + +#: [login_anonymous]bad_username +msgid "Bad nickname (between 4 and 40 characters)" +msgstr "" + +#: [error]username +msgid "Wrong username" +msgstr "Nombre de usuario incorrecto" + +#: [error]jid +msgid "Invalid JID" +msgstr "Identificación de Jabber no válida" + +#: [error]empty_challenge +msgid "Empty Challenge from the server" +msgstr "Desafío vacío del servidor" + +#: [error]dns +msgid "XMPP Domain error, your account is not a correct Jabber ID" +msgstr "Error de dominio XMPP, su cuenta no es un Jabber ID correcto" + +#: [error]data_missings +msgid "Some data are missing !" +msgstr "¡Algunos datos están incompletos!" + +#: [error]wrong_password +msgid "Wrong password" +msgstr "Contraseña incorrecta" + +#: [error]internal +msgid "Internal server error" +msgstr "Error interno del servidor" + +#: [error]session +msgid "Session error" +msgstr "Error en la sesión" + +#: [error]account_created +msgid "Account successfully created" +msgstr "La cuenta ha sido creada exitosamente" + +#: [error]xmpp_unauthorized +#, fuzzy +msgctxt "[error]xmpp_unauthorized" +msgid "Your XMPP server is unauthorized" +msgstr "Tu servidor de XMPP no está autorizado" + +#: [error]mec_error +msgid "The server takes too much time to respond" +msgstr "El servidor está tardando demasiado en responder" + +#: [error]too_old +msgid "Your web browser is too old to use with Movim." +msgstr "Tu navegador web es demasiado antiguo para usar Movim" + +#: [error]websocket +msgid "Movim cannot talk with the server, please try again later (Websocket connection error)" +msgstr "" + +#: [error]impossible +msgid "Impossible login" +msgstr "" + +#: [error]title +msgid "Oops!" +msgstr "" + +#: [error]default [visio]unknown_error +msgid "Unknown error" +msgstr "Error desconocido" + +#: [error]login_format +msgid "Invalid username format" +msgstr "" + +#: [error]password_format +msgid "Invalid password format" +msgstr "" + +#: [error]unauthorized +#, fuzzy +msgctxt "[error]unauthorized" +msgid "Your XMPP server is unauthorized" +msgstr "Tu servidor de XMPP no está autorizado" + +#: [error]conflict +msgid "A Movim session is already open on an other device" +msgstr "" + +#: [error]wrong_account +msgid "Movim failed to authenticate. You entered wrong data" +msgstr "Movim no ha podido autenticar. Ha introducido datos erróneos" + +#: [error]mechanism +msgid "Authentication mechanism not supported by Movim" +msgstr "El mecanismo de autenticación no está soportado por Movim" + +#: [error]fail_auth +msgid "The XMPP authentification failed" +msgstr "La autentificación de XMPP ha fallado" + +#: [account]title [accounts]accounts_title +msgid "Accounts" +msgstr "" + +#: [form]username +msgid "My address" +msgstr "Mi dirección" + +#: [form]create_one +msgid "Create one !" +msgstr "" + +#: [form]another_account +msgid "Another account" +msgstr "" + +#: [form]no_account +msgid "No account yet ?" +msgstr "" + +#: [form]whitelist.info +msgid "You can login with accounts from theses servers" +msgstr "" + +#: [form]connected +msgid "Connected" +msgstr "" + +#: [form]population +msgid "Population" +msgstr "" + +#: [menu]empty_title +msgid "No news yet..." +msgstr "" + +#: [menu]empty +msgid "Welcome on your news feed, here you will see all the posts published by your contacts and in the groups you have subscribed." +msgstr "" + +#: [menu]refresh +msgid "Refreshing all the streams" +msgstr "" + +#: [menu]public +msgid "This post is public" +msgstr "" + +#: [affiliations]title +msgid "Manage your members" +msgstr "Gestionar miembros" + +#: [affiliations]get +msgid "Get the members" +msgstr "Obtener miembros" + +#: [affiliations]saved +msgid "Affiliations saved" +msgstr "Afiliaciones guardadas" + +#: [subscriptions]title +msgid "Manage your subscriptions" +msgstr "Administrar tus subscripciones" + +#: [subscriptions]info +msgid "Manage the subscriptions" +msgstr "Administar las subscripciones" + +#: [subscriptions]get +msgid "Get the subscriptions" +msgstr "Recibe suscripciones" + +#: [subscriptions]saved +msgid "Subscriptions saved" +msgstr "" + +#: [notifs]title +msgid "Pending Invitations" +msgstr "" + +#: [notifs]wants_to_talk +msgid "%s wants to talk with you" +msgstr "" + +#: [notifs]manage +msgid "Manage" +msgstr "Administrar" + +#: [post]news_feed +msgid "News Feed" +msgstr "" + +#: [post]placeholder +msgid "Discover and register to the groups you are interested in" +msgstr "" + +#: [post]preview [page]preview +msgid "Preview" +msgstr "" + +#: [post]help [page]help +msgid "Help" +msgstr "Ayuda" + +#: [post]help_more +msgid "More help" +msgstr "" + +#: [post]help_manual +msgid "Markdown syntax manual" +msgstr "" + +#: [post]title +msgid "Title" +msgstr "" + +#: [post]content +msgid "Content" +msgstr "" + +#: [post]link +msgid "Link" +msgstr "Enlace" + +#: [post]tags +msgid "Tags" +msgstr "" + +#: [post]valid_url [publish]valid_url +msgid "Please enter a valid url" +msgstr "" + +#: [post]no_content_preview [publish]no_content_preview +msgid "No content to preview" +msgstr "" + +#: [post]no_content [publish]no_content [post]empty +msgid "No content" +msgstr "No hay contenido" + +#: [post]published +msgid "Post published" +msgstr "" + +#: [post]deleted +msgid "Post deleted" +msgstr "" + +#: [post]gallery +msgid "This picture will be added to your gallery" +msgstr "" + +#: [post]hot +msgid "What's Hot" +msgstr "" + +#: [post]hot_text +msgid "Posts recently published in Groups that you are not subscribed (yet)" +msgstr "" + +#: [post]new [publish]new +msgid "New post" +msgstr "" + +#: [post]embed_tip +msgid "You can also use services like Imgur or Flickr to host your picture and paste the link here." +msgstr "" + +#: [post]repost +msgid "This is a re-post from %s" +msgstr "" + +#: [post]repost_profile +msgid "See %s profile" +msgstr "" + +#: [post]public +#, fuzzy +msgid "Publish this post publicly?" +msgstr "¿ Es público este perfil ?" + +#: [post]blog_add +msgid "Post published on your blog" +msgstr "" + +#: [post]blog_remove +msgid "Post removed from your blog" +msgstr "" + +#: [post]delete_title [post]delete +msgid "Delete this post" +msgstr "" + +#: [post]delete_text +msgid "You are going to delete this post, please confirm your action" +msgstr "" + +#: [post]comments_disabled +msgid "Comments disabled" +msgstr "" + +#: [post]comment_published +msgid "Comment published" +msgstr "" + +#: [status]disconnect +msgid "Disconnect" +msgstr "" + +#: [status]here +msgid "Your status here !" +msgstr "" + +#: [status]updated +msgid "Status updated" +msgstr "Actualizar estado" + +#: [status]status +msgid "Status" +msgstr "" + +#: [status]presence +msgid "Presence" +msgstr "" + +#: [status]online +msgid "Online with Movim" +msgstr "" + +#: [publish]title +msgid "Publish" +msgstr "" + +#: [publish]attach +msgid "Add a file or a picture to your post" +msgstr "" + +#: [publish]no_publication +msgid "You cannot publish a post on this Group" +msgstr "" + +#: [publish]form_filled +msgid "Some fields have been filled in. Do you still want to go back and loose their content?" +msgstr "" + +#: [public_groups]shared +msgid "Shared" +msgstr "" + +#: [public_groups]added +msgid "%s has been added to your public groups" +msgstr "" + +#: [rooms]add +msgid "Add a chatroom" +msgstr "" + +#: [rooms]empty_text1 +msgid "You don't have any chatroom yet." +msgstr "" + +#: [rooms]empty_text2 +msgid "Add one by clicking on the add button in the header." +msgstr "" + +#: [chatrooms]title +msgid "Chatrooms" +msgstr "" + +#: [chatrooms]name_placeholder +msgid "My Favorite Room" +msgstr "" + +#: [chatrooms]users +msgid "Users in the room" +msgstr "" + +#: [chatrooms]bad_nickname +msgid "Please enter a correct nickname (2 to 40 characters)" +msgstr "" + +#: [room]anonymous_title +msgid "Public chatroom" +msgstr "" + +#: [room]no_room +msgid "Please provide a room address" +msgstr "" + +#: [room]anonymous_text1 +msgid "You are currently logued as an anonymous user." +msgstr "" + +#: [room]anonymous_text2 +msgid "You can join using your own account or create one on the login page by loging out using the cross in the top-right corner." +msgstr "" + +#: [room]anonymous_login +msgid "Login on %s" +msgstr "" + +#: [room]nick +msgid "Your nickname" +msgstr "" + +#: [roster]ungrouped +msgid "Ungrouped" +msgstr "Sin grupo" + +#: [roster]show_disconnected +msgid "Show disconnected contacts" +msgstr "" + +#: [roster]hide_disconnected +msgid "Hide disconnected contacts" +msgstr "" + +#: [roster]show_group +msgid "Show group %s" +msgstr "" + +#: [roster]hide_group +msgid "Hide group %s" +msgstr "" + +#: [roster]jid_error +msgid "Please enter a valid Jabber ID" +msgstr "Por favor, ingresa un Jabber ID válido" + +#: [roster]no_contacts_title +#, fuzzy +msgid "No contacts ?" +msgstr "No hay contenido" + +#: [roster]no_contacts_text +msgid "You can add one using the + button bellow" +msgstr "" + +#: [roster]show_hide +msgid "Show/Hide" +msgstr "" + +#: [roster]add_contact_info1 +msgid "Enter the Jabber ID of your contact." +msgstr "" + +#: [roster]add_contact_info2 +msgid "Press enter to validate." +msgstr "" + +#: [roster]jid +msgid "JID" +msgstr "" + +#: [roster]results +msgid "Results" +msgstr "" + +#: [roster]added +msgid "Contact added" +msgstr "" + +#: [roster]deleted +msgid "Contact deleted" +msgstr "" + +#: [roster]search +msgid "Search" +msgstr "Buscar" + +#: [share]error +msgid "This is not a valid url" +msgstr "" + +#: [share]success +msgid "Sharing the URL" +msgstr "" + +#: [statistics]title +msgid "Statistics" +msgstr "" + +#: [statistics]since +msgid "Since" +msgstr "" + +#: [statistics]sessions +msgid "Sessions" +msgstr "" + +#: [statistics]monthly_sub +msgid "Monthly Subscriptions" +msgstr "" + +#: [statistics]monthly_sub_cum +msgid "Monthly Subscriptions Cumulated" +msgstr "" + +#: [subscribe]info +msgid "Movim is a decentralized social network, before creating a new account you need to choose a server to register." +msgstr "Movim es una red social descentralizada, antes de crear una cuenta nueva necesita elegir un servidor para registrarse." + +#: [subscribe]server_question +msgid "Your server here ?" +msgstr "" + +#: [subscribe]server_contact +msgid "Contact us to add yours to the officially supported servers list" +msgstr "" + +#: [feed]nope +msgid "No public feed for this contact" +msgstr "" + +#: [feed]nope_contact +msgid "No contact specified" +msgstr "" + +#: [upload]title +#, fuzzy +msgid "Upload a file" +msgstr "Subir" + +#: [upload]choose +msgid "Choose a file to upload" +msgstr "" + +#: [vcard]title [page]profile +msgid "Profile" +msgstr "Perfil" + +#: [vcard]updated +msgid "Profile Updated" +msgstr "Perfil actualizado" + +#: [vcard]not_updated +msgid "Profile Not Updated" +msgstr "" + +#: [vcard]public +msgid "Your profile is now public" +msgstr "" + +#: [vcard]restricted +msgid "Your profile is now restricted" +msgstr "" + +#: [general]nickname +#, fuzzy +msgctxt "[general]nickname" +msgid "Nickname" +msgstr "Apodo" + +#: [accounts]twitter +msgid "Twitter" +msgstr "" + +#: [accounts]skype +msgid "Skype" +msgstr "" + +#: [accounts]yahoo +msgid "Yahoo" +msgstr "" + +#: [accounts]accounts_nickname +#, fuzzy +msgctxt "[accounts]accounts_nickname" +msgid "Nickname" +msgstr "Apodo" + +#: [accounts]accounts_yahoo +#, fuzzy +msgid "Yahoo Account" msgstr "%s - Cuenta" -#: ../cache/locales.php:497 -#, php-format -msgid "%s - Administration Panel" -msgstr "%s - Panel de administración" +#: [privacy]privacy_title +msgid "Privacy Level" +msgstr "Nivel de privacidad" -#: ../cache/locales.php:498 -#, php-format -msgid "%s - Blog" -msgstr "" +#: [privacy]privacy_question +msgid "Is this profile public ?" +msgstr "¿ Es público este perfil ?" -#: ../cache/locales.php:499 -#, php-format -msgid "%s - Configuration" -msgstr "%s - Configuración" +#: [privacy]privacy_info +msgid "Please pay attention ! By making your profile public, all the information listed above will be available for all the Movim users and on the whole Internet." +msgstr "¡ Por favor preste atención ! Haciendo público su perfil, toda la información listada encima estará disponible para todos los usuarios de Movim y para todo internet." -#: ../cache/locales.php:500 -#, php-format -msgid "%s - Discover" -msgstr "%s - Descubrir" - -#: ../cache/locales.php:501 -#, php-format -msgid "%s - Explore" -msgstr "%s - Explorar" - -#: ../cache/locales.php:502 -#, php-format -msgid "%s - Help Page" -msgstr "%s - Página de Ayuda" - -#: ../cache/locales.php:503 -#, php-format -msgid "%s - Login to Movim" -msgstr "%s - Conectarse a Movim" - -#: ../cache/locales.php:504 -#, php-format -msgid "%s - Welcome to Movim" -msgstr "%s - Bienvenido a Movim" - -#: ../cache/locales.php:505 -#, php-format -msgid "%s - Media" -msgstr "" - -#: ../cache/locales.php:506 -#, php-format -msgid "%s - News" -msgstr "%s - Noticias" - -#: ../cache/locales.php:507 -#, php-format -msgid "%s - Group Configuration" -msgstr "" - -#: ../cache/locales.php:508 -#, php-format -msgid "%s - Group" -msgstr "" - -#: ../cache/locales.php:509 -#, php-format -msgid "%s - 404" -msgstr "" - -#: ../cache/locales.php:510 -#, php-format -msgid "%s - Profile" -msgstr "%s - Perfil" - -#: ../cache/locales.php:511 -#, php-format -msgid "%s - Server" -msgstr "" - -#: ../cache/locales.php:512 -msgid "Validate" -msgstr "Validar" - -#: ../cache/locales.php:513 -msgid "Refresh" -msgstr "Actualizar" - -#: ../cache/locales.php:514 -msgid "Add" -msgstr "Agregar" - -#: ../cache/locales.php:515 -msgid "Delete" -msgstr "" - -#: ../cache/locales.php:516 -msgid "Remove" -msgstr "" - -#: ../cache/locales.php:517 -msgid "Cancel" -msgstr "Cancelar" - -#: ../cache/locales.php:518 -msgid "Close" -msgstr "Cerrar" - -#: ../cache/locales.php:519 -msgid "Update" -msgstr "Actualizar" - -#: ../cache/locales.php:520 -msgid "Updating" -msgstr "Actualizando" - -#: ../cache/locales.php:521 +#: [save]submit [button]submit msgid "Submit" msgstr "Enviar" -#: ../cache/locales.php:522 -msgid "Submitting" -msgstr "Enviando" - -#: ../cache/locales.php:523 +#: [save]reset [button]reset msgid "Reset" msgstr "Reiniciar" -#: ../cache/locales.php:524 +#: [visio]hung_up +msgid "Hung up" +msgstr "" + +#: [visio]busy +msgid "Your contact is busy" +msgstr "" + +#: [visio]declined +msgid "Declined" +msgstr "" + +#: [visio]calling +msgid "Is calling you" +msgstr "" + +#: [visio]call +msgid "Call" +msgstr "" + +#: [visio]hang_up +msgid "Hang up" +msgstr "" + +#: [visio]connection +msgid "Connection" +msgstr "" + +#: [global]no_js +msgid "You don't have javascript enabled. Good luck with that." +msgstr "" + +#: [global]description +msgid "Movim is a kickass distributed social networking platform that protect your privacy an comes with a set of awesome features." +msgstr "" + +#: [page]administration +msgid "Administration" +msgstr "Administración" + +#: [page]home +msgid "Home" +msgstr "Inicio" + +#: [page]discover +msgid "Discover" +msgstr "Descubrir" + +#: [page]explore +msgid "Explore" +msgstr "Explorar" + +#: [page]account_creation +msgid "Account Creation" +msgstr "Crear cuenta" + +#: [page]avatar +msgid "Avatar" +msgstr "Imagen de perfil" + +#: [page]chats +msgid "Chats" +msgstr "" + +#: [page]server +msgid "Server" +msgstr "Servidor" + +#: [page]public_groups +msgid "Public Groups" +msgstr "Grupos públicos" + +#: [page]viewer +msgid "Viewer" +msgstr "Visor" + +#: [page]media +msgid "Media" +msgstr "Multimedia" + +#: [page]blog +msgid "Blog" +msgstr "Blog" + +#: [page]about +msgid "About" +msgstr "Acerca de" + +#: [page]login +msgid "Login" +msgstr "" + +#: [page]feed +msgid "Feed" +msgstr "Canal" + +#: [page]gallery +msgid "Gallery" +msgstr "" + +#: [page]visio +msgid "Visio-conference" +msgstr "" + +#: [page]pods +msgid "Pods" +msgstr "" + +#: [page]share +msgid "Share" +msgstr "" + +#: [page]room +msgid "Room" +msgstr "" + +#: [error]error +msgid "Error: %s" +msgstr "Error: %s" + +#: [error]cannot_load_file +msgid "Cannot load file '%s'" +msgstr "No se pudo cargar el archivo '%s'" + +#: [error]route +msgid "Route error, please set all the parameters for the page %s" +msgstr "Error de ruta, por favor establezca todos los parámetros para la página %s" + +#: [error]widget_load_error +msgid "Requested widget '%s' doesn't exist." +msgstr "" + +#: [error]widget_call_error +msgid "Requested event '%s' not registered." +msgstr "" + +#: [error]whoops +msgid "Whoops!" +msgstr "" + +#: [error]media_not_found +msgid "It seem that you don't have any pictures here?" +msgstr "" + +#: [error]media_ask_upload +msgid "You can try to upload a couple by going to the Media page" +msgstr "" + +#: [title]about +msgid "%s - About" +msgstr "%s - Acerca de" + +#: [title]account +msgid "%s - Account" +msgstr "%s - Cuenta" + +#: [title]administration +msgid "%s - Administration Panel" +msgstr "%s - Panel de administración" + +#: [title]blog +msgid "%s - Blog" +msgstr "" + +#: [title]configuration +msgid "%s - Configuration" +msgstr "%s - Configuración" + +#: [title]discover +msgid "%s - Discover" +msgstr "%s - Descubrir" + +#: [title]explore +msgid "%s - Explore" +msgstr "%s - Explorar" + +#: [title]help +msgid "%s - Help Page" +msgstr "%s - Página de Ayuda" + +#: [title]login +msgid "%s - Login to Movim" +msgstr "%s - Conectarse a Movim" + +#: [title]main +msgid "%s - Welcome to Movim" +msgstr "%s - Bienvenido a Movim" + +#: [title]media +msgid "%s - Media" +msgstr "" + +#: [title]news +msgid "%s - News" +msgstr "%s - Noticias" + +#: [title]node_configuration +msgid "%s - Group Configuration" +msgstr "" + +#: [title]node +msgid "%s - Group" +msgstr "" + +#: [title]not_found +msgid "%s - 404" +msgstr "" + +#: [title]profile +msgid "%s - Profile" +msgstr "%s - Perfil" + +#: [title]server +msgid "%s - Server" +msgstr "" + +#: [button]validate +msgid "Validate" +msgstr "Validar" + +#: [button]refresh +msgid "Refresh" +msgstr "Actualizar" + +#: [button]add +msgid "Add" +msgstr "Agregar" + +#: [button]delete +msgid "Delete" +msgstr "" + +#: [button]cancel +msgid "Cancel" +msgstr "Cancelar" + +#: [button]close +msgid "Close" +msgstr "Cerrar" + +#: [button]update +msgid "Update" +msgstr "Actualizar" + +#: [button]updating +msgid "Updating" +msgstr "Actualizando" + +#: [button]submitting +msgid "Submitting" +msgstr "Enviando" + +#: [button]register msgid "Register" msgstr "" -#: ../cache/locales.php:525 +#: [button]unregister msgid "Unregister" msgstr "" -#: ../cache/locales.php:526 +#: [button]save msgid "Save" msgstr "Guardar" -#: ../cache/locales.php:527 +#: [button]clear msgid "Clear" msgstr "" -#: ../cache/locales.php:528 +#: [button]upload msgid "Upload" msgstr "Subir" -#: ../cache/locales.php:529 +#: [button]come_in msgid "Come in!" msgstr "¡Apúntate!" -#: ../cache/locales.php:530 +#: [button]connecting msgid "Connecting" msgstr "" -#: ../cache/locales.php:531 +#: [button]bool_yes msgid "Yes" msgstr "Sí" -#: ../cache/locales.php:532 +#: [button]bool_no msgid "No" msgstr "No" -#: ../cache/locales.php:534 +#: [button]return msgid "Return" msgstr "" -#: ../cache/locales.php:535 +#: [button]accept msgid "Accept" msgstr "Aceptar" -#: ../cache/locales.php:536 +#: [button]refuse msgid "Refuse" msgstr "" -#: ../cache/locales.php:537 +#: [button]next msgid "Next" msgstr "" -#: ../cache/locales.php:538 +#: [button]previous msgid "Previous" msgstr "" -#: ../cache/locales.php:539 -#, php-format +#: [step]step msgid "Step %s" msgstr "" -#: ../cache/locales.php:542 +#: [day]title msgid "Day" msgstr "Día" -#: ../cache/locales.php:543 +#: [day]monday msgid "Monday" msgstr "Lunes" -#: ../cache/locales.php:544 +#: [day]tuesday msgid "Tuesday" msgstr "Martes" -#: ../cache/locales.php:545 +#: [day]wednesday msgid "Wednesday" msgstr "Miércoles" -#: ../cache/locales.php:546 +#: [day]thursday msgid "Thursday" msgstr "Jueves" -#: ../cache/locales.php:547 +#: [day]friday msgid "Friday" msgstr "Viernes" -#: ../cache/locales.php:548 +#: [day]saturday msgid "Saturday" msgstr "Sábado" -#: ../cache/locales.php:549 +#: [day]sunday msgid "Sunday" msgstr "" -#: ../cache/locales.php:550 ../cache/locales.php:559 +#: [gender]nil +#, fuzzy +msgctxt "[gender]nil" msgid "None" msgstr "Ninguno" -#: ../cache/locales.php:551 +#: [gender]male msgid "Male" msgstr "Masculino" -#: ../cache/locales.php:552 +#: [gender]female msgid "Female" msgstr "Femenino" -#: ../cache/locales.php:553 +#: [gender]other msgid "Other" msgstr "Otro" -#: ../cache/locales.php:554 +#: [client]bot msgid "Bot" msgstr "Bot" -#: ../cache/locales.php:555 +#: [client]desktop msgid "Desktop" msgstr "Escritorio" -#: ../cache/locales.php:556 +#: [client]phone msgid "Phone" msgstr "Teléfono" -#: ../cache/locales.php:557 +#: [client]web msgid "Web" msgstr "Web" -#: ../cache/locales.php:558 +#: [client]registered msgid "Registered" msgstr "Registrado" -#: ../cache/locales.php:560 +#: [marital]nil +#, fuzzy +msgctxt "[marital]nil" +msgid "None" +msgstr "Ninguno" + +#: [marital]single msgid "Single" msgstr "Soltero (a)" -#: ../cache/locales.php:561 +#: [marital]relationship msgid "In a relationship" msgstr "En una relación" -#: ../cache/locales.php:562 +#: [marital]married msgid "Married" msgstr "Casado (a)" -#: ../cache/locales.php:563 +#: [marital]divorced msgid "Divorced" msgstr "Divorciado (a)" -#: ../cache/locales.php:564 +#: [marital]widowed msgid "Widowed" msgstr "Viudo (a)" -#: ../cache/locales.php:565 +#: [marital]cohabiting msgid "Cohabiting" msgstr "Cohabitando" -#: ../cache/locales.php:566 +#: [marital]union msgid "Civil Union" msgstr "Unión civil" -#: ../cache/locales.php:567 +#: [flag]white msgid "Not shared" msgstr "No compartido" -#: ../cache/locales.php:568 +#: [flag]green msgid "Shared with one contact" msgstr "Compartir con un contacto" -#: ../cache/locales.php:569 +#: [flag]orange msgid "Shared with all contacts" msgstr "Compartir con todos los contactos" -#: ../cache/locales.php:570 +#: [flag]red msgid "Shared with the XMPP network" msgstr "Compartir con la red XMPP" -#: ../cache/locales.php:571 +#: [flag]black msgid "Shared with the whole Internet" msgstr "Compartir con todos en internet" -#: ../cache/locales.php:572 +#: [presence]online msgid "Online" msgstr "En línea" -#: ../cache/locales.php:573 +#: [presence]away msgid "Away" msgstr "Ausente" -#: ../cache/locales.php:574 +#: [presence]dnd msgid "Do Not Disturb" msgstr "No molestar" -#: ../cache/locales.php:575 +#: [presence]xa msgid "Extended Away" msgstr "Ausencia extendida" -#: ../cache/locales.php:576 +#: [presence]offline msgid "Offline" msgstr "Fuera de Línea" -#: ../cache/locales.php:577 +#: [presence]error msgid "Error" msgstr "Error" -#: ../cache/locales.php:578 +#: [mood]afraid msgid "afraid" msgstr "temeroso" -#: ../cache/locales.php:579 +#: [mood]amazed msgid "amazed" msgstr "asombrado" -#: ../cache/locales.php:580 +#: [mood]amorous msgid "amorous" msgstr "amoroso" -#: ../cache/locales.php:581 +#: [mood]angry msgid "angry" msgstr "enfadado" -#: ../cache/locales.php:582 +#: [mood]annoyed msgid "annoyed" msgstr "molesto" -#: ../cache/locales.php:583 +#: [mood]anxious msgid "anxious" msgstr "ansioso" -#: ../cache/locales.php:584 +#: [mood]aroused msgid "aroused" msgstr "despertado" -#: ../cache/locales.php:585 +#: [mood]ashamed msgid "ashamed" msgstr "avergonzado" -#: ../cache/locales.php:586 +#: [mood]bored msgid "bored" msgstr "aburrido" -#: ../cache/locales.php:587 +#: [mood]brave msgid "brave" msgstr "valiente" -#: ../cache/locales.php:588 +#: [mood]calm msgid "calm" msgstr "calmado" -#: ../cache/locales.php:589 +#: [mood]cautious msgid "cautious" msgstr "cauteloso" -#: ../cache/locales.php:590 +#: [mood]cold msgid "cold" msgstr "frío" -#: ../cache/locales.php:591 +#: [mood]confident msgid "confident" msgstr "seguro" -#: ../cache/locales.php:592 +#: [mood]confused msgid "confused" msgstr "confuso" -#: ../cache/locales.php:593 +#: [mood]contemplative msgid "contemplative" msgstr "contemplativo" -#: ../cache/locales.php:594 +#: [mood]contented msgid "contented" msgstr "contento" -#: ../cache/locales.php:595 +#: [mood]cranky msgid "cranky" msgstr "irritable" -#: ../cache/locales.php:596 +#: [mood]crazy msgid "crazy" msgstr "loco" -#: ../cache/locales.php:597 +#: [mood]creative msgid "creative" msgstr "creativo" -#: ../cache/locales.php:598 +#: [mood]curious msgid "curious" msgstr "curioso" -#: ../cache/locales.php:599 +#: [mood]dejected msgid "dejected" msgstr "abatido" -#: ../cache/locales.php:600 +#: [mood]depressed msgid "depressed" msgstr "deprimido" -#: ../cache/locales.php:601 +#: [mood]disappointed msgid "disappointed" msgstr "decepcionado" -#: ../cache/locales.php:602 +#: [mood]disgusted msgid "disgusted" msgstr "disgustado" -#: ../cache/locales.php:603 +#: [mood]dismayed msgid "dismayed" msgstr "desmayado" -#: ../cache/locales.php:604 +#: [mood]distracted msgid "distracted" msgstr "distraído" -#: ../cache/locales.php:605 +#: [mood]embarrassed msgid "embarrassed" msgstr "avergonzado" -#: ../cache/locales.php:606 +#: [mood]envious msgid "envious" msgstr "envidioso" -#: ../cache/locales.php:607 +#: [mood]excited msgid "excited" msgstr "excitado" -#: ../cache/locales.php:608 +#: [mood]flirtatious msgid "flirtatious" msgstr "coqueto" -#: ../cache/locales.php:609 +#: [mood]frustated msgid "frustated" msgstr "" -#: ../cache/locales.php:610 +#: [mood]grateful msgid "grateful" msgstr "agradecido" -#: ../cache/locales.php:611 +#: [mood]grieving msgid "grieving" msgstr "dolido" -#: ../cache/locales.php:612 +#: [mood]grumpy msgid "grumpy" msgstr "gruñón" -#: ../cache/locales.php:613 +#: [mood]guilty msgid "guilty" msgstr "culpable" -#: ../cache/locales.php:614 +#: [mood]happy msgid "happy" msgstr "feliz" -#: ../cache/locales.php:615 +#: [mood]hopeful msgid "hopeful" msgstr "esperanzado" -#: ../cache/locales.php:616 +#: [mood]hot msgid "hot" msgstr "caliente" -#: ../cache/locales.php:617 +#: [mood]humbled msgid "humbled" msgstr "humilde" -#: ../cache/locales.php:618 +#: [mood]humiliated msgid "humiliated" msgstr "humillado" -#: ../cache/locales.php:619 +#: [mood]hungry msgid "hungry" msgstr "hambriento" -#: ../cache/locales.php:620 +#: [mood]hurt msgid "hurt" msgstr "herido" -#: ../cache/locales.php:621 +#: [mood]impressed msgid "impressed" msgstr "impresionado" -#: ../cache/locales.php:622 +#: [mood]in_awe msgid "in awe" msgstr "temeroso" -#: ../cache/locales.php:623 +#: [mood]in_love msgid "in love" msgstr "enamorado" -#: ../cache/locales.php:624 +#: [mood]indignant msgid "indignant" msgstr "" -#: ../cache/locales.php:625 +#: [mood]interested msgid "interested" msgstr "interesado" -#: ../cache/locales.php:626 +#: [mood]intoxicated msgid "intoxicated" msgstr "intoxicado" -#: ../cache/locales.php:627 +#: [mood]invincible msgid "invincible" msgstr "invencible" -#: ../cache/locales.php:628 +#: [mood]jealous msgid "jealous" msgstr "celoso" -#: ../cache/locales.php:629 +#: [mood]lonely msgid "lonely" msgstr "solitario" -#: ../cache/locales.php:630 +#: [mood]lost msgid "lost" msgstr "perdido" -#: ../cache/locales.php:631 +#: [mood]lucky msgid "lucky" msgstr "afortunado" -#: ../cache/locales.php:632 +#: [mood]mean msgid "mean" msgstr "media" -#: ../cache/locales.php:633 +#: [mood]moody msgid "moody" msgstr "variable" -#: ../cache/locales.php:634 +#: [mood]nervous msgid "nervous" msgstr "nervioso" -#: ../cache/locales.php:635 +#: [mood]neutral msgid "neutral" msgstr "neutral" -#: ../cache/locales.php:636 +#: [mood]offended msgid "offended" msgstr "ofendido" -#: ../cache/locales.php:637 +#: [mood]outraged msgid "outraged" msgstr "indignado" -#: ../cache/locales.php:638 +#: [mood]playful msgid "playful" msgstr "juguetón" -#: ../cache/locales.php:639 +#: [mood]proud msgid "proud" msgstr "orgulloso" -#: ../cache/locales.php:640 +#: [mood]relaxed msgid "relaxed" msgstr "relajado" -#: ../cache/locales.php:641 +#: [mood]relieved msgid "relieved" msgstr "aliviado" -#: ../cache/locales.php:642 -msgid "remorseful" -msgstr "arrepentido" - -#: ../cache/locales.php:643 +#: [mood]restless msgid "restless" msgstr "inquieto" -#: ../cache/locales.php:644 +#: [mood]sad msgid "sad" msgstr "triste" -#: ../cache/locales.php:645 +#: [mood]sarcastic msgid "sarcastic" msgstr "sarcástico" -#: ../cache/locales.php:646 +#: [mood]satisfied msgid "satisfied" msgstr "satisfecho" -#: ../cache/locales.php:647 +#: [mood]serious msgid "serious" msgstr "serio" -#: ../cache/locales.php:648 +#: [mood]shocked msgid "shocked" msgstr "conmocionado" -#: ../cache/locales.php:649 +#: [mood]shy msgid "shy" msgstr "tímido" -#: ../cache/locales.php:650 +#: [mood]sick msgid "sick" msgstr "enfermo" -#: ../cache/locales.php:651 +#: [mood]sleepy msgid "sleepy" msgstr "soñoliento" -#: ../cache/locales.php:652 +#: [mood]spontaneous msgid "spontaneous" msgstr "espontáneo" -#: ../cache/locales.php:653 +#: [mood]stressed msgid "stressed" msgstr "estresado" -#: ../cache/locales.php:654 +#: [mood]strong msgid "strong" msgstr "fuerte" -#: ../cache/locales.php:655 +#: [mood]surprised msgid "surprised" msgstr "sorprendido" -#: ../cache/locales.php:656 +#: [mood]thankful msgid "thankful" msgstr "agradecido" -#: ../cache/locales.php:657 +#: [mood]thirsty msgid "thirsty" msgstr "sediento" -#: ../cache/locales.php:658 +#: [mood]tired msgid "tired" msgstr "cansado" -#: ../cache/locales.php:659 +#: [mood]undefined msgid "undefined" msgstr "indefinido" -#: ../cache/locales.php:660 +#: [mood]weak msgid "weak" msgstr "débil" -#: ../cache/locales.php:661 +#: [mood]worried msgid "worried" msgstr "preocupado" -#: ../cache/locales.php:662 +#: [month]title msgid "Month" msgstr "Mes" -#: ../cache/locales.php:663 +#: [month]january msgid "January" msgstr "Enero" -#: ../cache/locales.php:664 +#: [month]february msgid "February" msgstr "Febrero" -#: ../cache/locales.php:665 +#: [month]march msgid "March" msgstr "Marzo" -#: ../cache/locales.php:666 +#: [month]april msgid "April" msgstr "Abril" -#: ../cache/locales.php:667 +#: [month]may msgid "May" msgstr "Mayo" -#: ../cache/locales.php:668 +#: [month]june msgid "June" msgstr "Junio" -#: ../cache/locales.php:669 +#: [month]july msgid "July" msgstr "Julio" -#: ../cache/locales.php:670 +#: [month]august msgid "August" msgstr "Agosto" -#: ../cache/locales.php:671 +#: [month]september msgid "September" msgstr "Septiembre" -#: ../cache/locales.php:672 +#: [month]october msgid "October" msgstr "Octubre" -#: ../cache/locales.php:673 +#: [month]november msgid "November" msgstr "Noviembre" -#: ../cache/locales.php:674 +#: [month]december msgid "December" msgstr "Diciembre" -#: ../cache/locales.php:675 +#: [year]title msgid "Year" msgstr "Año" -#: ../cache/locales.php:676 +#: [date]today msgid "Today" msgstr "Hoy" -#: ../cache/locales.php:677 +#: [date]tomorrow msgid "Tomorrow" msgstr "Mañana" -#: ../cache/locales.php:678 +#: [date]yesterday msgid "Yesterday" msgstr "Ayer" -#: ../cache/locales.php:679 -#, php-format -msgid " %d days ago" +#: [date]ago +#, fuzzy +msgid "%d days ago" msgstr " %d días atrás" -#: ../cache/locales.php:680 +#: [date]day msgid "day" msgstr "día" -#: ../cache/locales.php:682 +#: [post]whats_new msgid "What's new ?" msgstr "" -#: ../cache/locales.php:683 +#: [post]place msgid "Place" msgstr "Lugar" -#: ../cache/locales.php:684 +#: [post]by msgid "by" msgstr "" -#: ../cache/locales.php:685 +#: [post]geolocalisation msgid "Geolocalisation" msgstr "" -#: ../cache/locales.php:686 +#: [post]email msgid "email" msgstr "" -#: ../cache/locales.php:688 +#: [post]no_comments msgid "No comments yet" msgstr "" -#: ../cache/locales.php:689 +#: [post]no_comments_stream msgid "No comments stream" msgstr "No hay comentarios stream" -#: ../cache/locales.php:690 +#: [post]no_load msgid "Your feed cannot be loaded." msgstr "Tu canal no se pudo cargar" -#: ../cache/locales.php:691 +#: [post]older msgid "Get older posts" msgstr "Recibir las entradas más antiguas" -#: ../cache/locales.php:692 -#, php-format +#: [post]new_items msgid "%s new items" msgstr "" -#: ../cache/locales.php:693 +#: [post]comment_error msgid "Comment publication error" msgstr "Error al publicar comentario" -#: ../cache/locales.php:694 +#: [post]comments_older msgid "Show the older comments" msgstr "Mostrar los comentarios antiguos" -#: ../cache/locales.php:695 -msgid "Loading comments ..." -msgstr "" +#: [post]comments_loading +#, fuzzy +msgid "Loading comments..." +msgstr "Cargando tu canal" -#: ../cache/locales.php:696 +#: [post]comments_get msgid "Get the comments" msgstr "" -#: ../cache/locales.php:697 +#: [post]comment_add msgid "Add a comment" msgstr "" -#: ../cache/locales.php:698 +#: [post]share msgid "Share with" msgstr "" -#: ../cache/locales.php:699 +#: [post]share_everyone msgid "Everyone" msgstr "" -#: ../cache/locales.php:700 +#: [post]share_your_contacts msgid "Your contacts" msgstr "" -#: ../cache/locales.php:702 +#: [post]updated msgid "Updated" msgstr "" -#: ../cache/locales.php:703 +#: [post]content_not_found msgid "Content not found" msgstr "" -#: ../cache/locales.php:704 +#: [post]default_title msgid "Contact publication" msgstr "" -#: ../cache/locales.php:705 +#: [post]comments msgid "Comments" msgstr "" -#: ../cache/locales.php:706 +#: [api]error msgid "The API is not reachable, try again later" msgstr "" -#: ../cache/locales.php:707 +#: [field]type_here msgid "Type here" msgstr "" -#, php-format +#~ msgid "Environment" +#~ msgstr "Entorno" + +#~ msgid "You can login with Facebook (chat only) using %syour.id@chat.facebook.com%s and your password" +#~ msgstr "Puedes loguearte con tu cuenta de Facebook (solo chat) usando %stu.usuario@chat.facebook.com%s y tu contraseña" + +#~ msgid "%sGmail accounts are also compatible%s but are not fully supported" +#~ msgstr "%s Las cuentas de Gmail también son compatibles %s pero no están totalmente soportadas" + +#~ msgid "%s has been removed from your public groups" +#~ msgstr "%s ha sido eliminado de tus grupos públicos" + +#~ msgid "remorseful" +#~ msgstr "arrepentido" + #~ msgid "%s - Account Creation" #~ msgstr "%s - Crear cuenta" @@ -2643,15 +2776,12 @@ msgstr "" #~ msgid "Actual version : " #~ msgstr "Versión actual: " -#, php-format #~ msgid "Install %s and %s packages" #~ msgstr "Instala %s y %s paquetes" -#, php-format #~ msgid "Couldn't create directory '%s'." #~ msgstr "No se pudo crear el directorio '%s'." -#, php-format #~ msgid "Please remove the %s folder in order to complete the installation" #~ msgstr "Por favor, borra la %s carpeta para poder completar la instalación" @@ -2667,19 +2797,11 @@ msgstr "" #~ msgid "Connecting..." #~ msgstr "Conectando…" -#~ msgid "Remove this contact" -#~ msgstr "Borrar contacto" - -#~ msgid "Loading your feed ..." -#~ msgstr "Cargando tu canal" - #~ msgid "Loading the contact feed ..." #~ msgstr "Cargando el canal del contacto..." -#, php-format #~ msgid "You can now access your shiny Movim instance %sJump In !%s" -#~ msgstr "" -#~ "Ahora puedes acceder a tu brillante Movim de ejemplo %s¡Entra ahora!%s" +#~ msgstr "Ahora puedes acceder a tu brillante Movim de ejemplo %s¡Entra ahora!%s" #~ msgid "Success !" #~ msgstr "¡Éxito!" @@ -2687,11 +2809,9 @@ msgstr "" #~ msgid "JID not provided." #~ msgstr "Identidad de Jabber no proveída" -#, php-format #~ msgid "Cannot open log file '%s'" #~ msgstr "No se pudo abrir el archivo del log '%s'" -#, php-format #~ msgid "jid '%s' is incorrect" #~ msgstr "Identidad de Jabber '%s' no es correcta" @@ -2716,7 +2836,6 @@ msgstr "" #~ msgid "Invalid name" #~ msgstr "Nombre inválido" -#, php-format #~ msgid "%s - Add An Account" #~ msgstr "%s - Agregar una cuenta" @@ -2759,12 +2878,8 @@ msgstr "" #~ msgid "I can't find the answer to my question here" #~ msgstr "No puedo encontrar la respuesta a mi pregunta aquí" -#~ msgid "" -#~ "Some features are missing/I can't do everything I used to do on other social " -#~ "networks" -#~ msgstr "" -#~ "Algunas características están ausentes / no puedo hacer todo lo que yo solía " -#~ "hacer en otras redes sociales" +#~ msgid "Some features are missing/I can't do everything I used to do on other social networks" +#~ msgstr "Algunas características están ausentes / no puedo hacer todo lo que yo solía hacer en otras redes sociales" #~ msgid "No profile yet ?" #~ msgstr "¿No hay perfil aún?" @@ -2775,12 +2890,8 @@ msgstr "" #~ msgid "Create my vCard" #~ msgstr "Crear mi vCard" -#~ msgid "" -#~ "Some errors were detected. Please correct them for the installation to " -#~ "proceed." -#~ msgstr "" -#~ "Algunos errores fueron detectados. Por favor, corrija ellos para que " -#~ "continúe la instalación." +#~ msgid "Some errors were detected. Please correct them for the installation to proceed." +#~ msgstr "Algunos errores fueron detectados. Por favor, corrija ellos para que continúe la instalación." #~ msgid "Only alphanumerics elements are authorized" #~ msgstr "Sólo los elementos alfanuméricos están autorizados" @@ -2794,21 +2905,11 @@ msgstr "" #~ msgid "terse" #~ msgstr "breve" -#~ msgid "" -#~ "Keep in mind that Movim is still under development and will handle many " -#~ "personal details. Its use can potentially endanger your data. Always pay " -#~ "attention to information that you submit." -#~ msgstr "" -#~ "Tenga en cuenta que Movim está todavía en desarrollo y se encargará de " -#~ "muchos datos de carácter personal. Su uso puede potencialmente poner en " -#~ "peligro sus datos. Siempre preste atención a la información que usted envíe." +#~ msgid "Keep in mind that Movim is still under development and will handle many personal details. Its use can potentially endanger your data. Always pay attention to information that you submit." +#~ msgstr "Tenga en cuenta que Movim está todavía en desarrollo y se encargará de muchos datos de carácter personal. Su uso puede potencialmente poner en peligro sus datos. Siempre preste atención a la información que usted envíe." -#~ msgid "" -#~ "Firstly fill in this blank with a brand new account ID, this address will " -#~ "follow you on all the Movim network !" -#~ msgstr "" -#~ "En primer lugar rellene el espacio en blanco con una identificación de marca " -#~ "nueva cuenta, esta dirección le siga en toda la red Movim!" +#~ msgid "Firstly fill in this blank with a brand new account ID, this address will follow you on all the Movim network !" +#~ msgstr "En primer lugar rellene el espacio en blanco con una identificación de marca nueva cuenta, esta dirección le siga en toda la red Movim!" #~ msgid "Wrong ID" #~ msgstr "Identificación errónea" @@ -2816,74 +2917,53 @@ msgstr "" #~ msgid "Edit my Profile" #~ msgstr "Editar mi perfil" -#, php-format #~ msgid "Contacts (%s)" #~ msgstr "Contactos (%s)" -#, php-format #~ msgid "Movim requires the %s extension." #~ msgstr "Movim requiere la extensión %s" #~ msgid "Update your PHP version or contact your server administrator" -#~ msgstr "" -#~ "Actualice su versión de PHP o contacte con el administrador de su servidor" +#~ msgstr "Actualice su versión de PHP o contacte con el administrador de su servidor" -#, php-format #~ msgid "Install the %s package" #~ msgstr "Instale el paquete %s" #~ msgid "Enable read and write rights on Movim's root folder" -#~ msgstr "" -#~ "Habilite los permisos de lectura y escritura en la carpeta raíz de Movim" +#~ msgstr "Habilite los permisos de lectura y escritura en la carpeta raíz de Movim" #~ msgid "Movim's folder must be writable." #~ msgstr "La carpeta de Movim debe tener permisos de escritura" -#~ msgid "" -#~ "Before you enjoy your social network, a few adjustements are required." -#~ msgstr "" -#~ "Antes de empezar a disfrutar de su red social, son necesarios algunos " -#~ "ajustes." +#~ msgid "Before you enjoy your social network, a few adjustements are required." +#~ msgstr "Antes de empezar a disfrutar de su red social, son necesarios algunos ajustes." #~ msgid "Thank you for downloading Movim!" #~ msgstr "¡Gracias por descargar Movim!" -#, php-format #~ msgid "Couldn't create configuration file '%s'." #~ msgstr "No se pudo crear el archivo de configuración '%s'." #~ msgid "Proxy Preferences" #~ msgstr "Preferencias de Proxy" -#, php-format -#~ msgid "This server hosts %s accounts" -#~ msgstr "Este servidor cuenta %s cuentas" - -#, php-format #~ msgid "Cannot load element value '%s'" #~ msgstr "No se puede cargar el valor del elemento '%s'" #~ msgid "Invite this user" #~ msgstr "Invitar a este usuario" -#, php-format #~ msgid "Bosh connection failed with error '%s'" #~ msgstr "Conexión a Bosh con error '%s'" -#, php-format #~ msgid "Database connection failed with error '%s'" #~ msgstr "Conexión de base de datos con error '%s'" -#, php-format #~ msgid "XMPP connection through Bosh failed with error '%s'" #~ msgstr "Conexión a través de XMPP Bosh falló con error '%s'" -#~ msgid "" -#~ "The following requirements were not met. Please make sure they are all " -#~ "satisfied in order to install Movim." -#~ msgstr "" -#~ "Los siguientes requisitos no están disponibles. Por favor, asegure su " -#~ "disponibilidad para poder instalar Movim." +#~ msgid "The following requirements were not met. Please make sure they are all satisfied in order to install Movim." +#~ msgstr "Los siguientes requisitos no están disponibles. Por favor, asegure su disponibilidad para poder instalar Movim." #~ msgid "Username already taken" #~ msgstr "El nombre de usuario ya está en uso" @@ -2894,51 +2974,23 @@ msgstr "" #~ msgid "Could not communicate with the XMPP server" #~ msgstr "No se pudo comunicar con el servidor XMPP" -#~ msgid "" -#~ "Your server doesn't support post publication, you can only read contact's " -#~ "feeds" -#~ msgstr "" -#~ "Su servidor no permite hacer publicaciones, solo puede leer los aportes de " -#~ "sus contactos" +#~ msgid "Your server doesn't support post publication, you can only read contact's feeds" +#~ msgstr "Su servidor no permite hacer publicaciones, solo puede leer los aportes de sus contactos" #~ msgid "What is Movim?" #~ msgstr "¿Qué es Movim?" -#, php-format -#~ msgid "" -#~ "Visit the page %s What is Movim ? %s to know more about the project, its " -#~ "aims and understand how it works." -#~ msgstr "" -#~ "Visite la página %s ¿Qué es Movim? %s para saber más sobre el proyecto, sus " -#~ "objetivos y entender cómo funciona." +#~ msgid "Visit the page %s What is Movim ? %s to know more about the project, its aims and understand how it works." +#~ msgstr "Visite la página %s ¿Qué es Movim? %s para saber más sobre el proyecto, sus objetivos y entender cómo funciona." -#, php-format -#~ msgid "" -#~ "Although Movim is evolving fast, many (many) features are missing. Be " -#~ "patient ;). You can have a look %s at next versions's roadmaps %s to know if " -#~ "the one you want is on its way." -#~ msgstr "" -#~ "Aunque Movim está evolucionando rápidamente, muchas (muchas) características " -#~ "están ausentes. Tenga paciencia ;). Puede echar un vistazo a %s las rutas de " -#~ "las próximas versiones %s para saber si la que usted desea está en camino." +#~ msgid "Although Movim is evolving fast, many (many) features are missing. Be patient ;). You can have a look %s at next versions's roadmaps %s to know if the one you want is on its way." +#~ msgstr "Aunque Movim está evolucionando rápidamente, muchas (muchas) características están ausentes. Tenga paciencia ;). Puede echar un vistazo a %s las rutas de las próximas versiones %s para saber si la que usted desea está en camino." -#, php-format -#~ msgid "" -#~ "Don't forget that Movim is an open source project, a helping hand is always " -#~ "welcome (see %s Can I participate %s)" -#~ msgstr "" -#~ "No olvide que Movim es un proyecto de código abierto, una mano de ayuda " -#~ "siempre es bienvenida (ver %s ¿Puedo participar? %s)" +#~ msgid "Don't forget that Movim is an open source project, a helping hand is always welcome (see %s Can I participate %s)" +#~ msgstr "No olvide que Movim es un proyecto de código abierto, una mano de ayuda siempre es bienvenida (ver %s ¿Puedo participar? %s)" -#, php-format -#~ msgid "" -#~ "Go to the %s to the Frequently Asked Questions %s or come ask your question " -#~ "on the official chatroom %s or via our mailing-list (%s see the dedicated " -#~ "page %s)." -#~ msgstr "" -#~ "Diríjase a las %s Preguntas más Frecuentes %s o venga a hacer su pregunta en " -#~ "el chat oficial %s o a través de nuestra lista de correo (%s ver la página " -#~ "dedicada %s)." +#~ msgid "Go to the %s to the Frequently Asked Questions %s or come ask your question on the official chatroom %s or via our mailing-list (%s see the dedicated page %s)." +#~ msgstr "Diríjase a las %s Preguntas más Frecuentes %s o venga a hacer su pregunta en el chat oficial %s o a través de nuestra lista de correo (%s ver la página dedicada %s)." #~ msgid "The current BOSH URL in invalid" #~ msgstr "La url de BOSH actual no es válida" diff --git a/sources/locales/fa.po b/sources/locales/fa.po index a4ee178..46584d2 100644 --- a/sources/locales/fa.po +++ b/sources/locales/fa.po @@ -3,2583 +3,2696 @@ # This file is distributed under the same license as the movim package. # FIRST AUTHOR , 2013. # +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/About/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Account/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AccountNext/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AdHoc/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AdminDB/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AdminMain/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AdminTest/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Api/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Avatar/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Blog/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Bookmark/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Chat/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Chats/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/ConfigData/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Config/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Contact/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Group/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Groups/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Header/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Hello/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Help/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Init/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Location/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/LoginAnonymous/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Login/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Menu/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/NodeAffiliations/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/NodeSubscriptions/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Notifs/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Post/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Presence/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Publish/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/PubsubSubscriptionConfig/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Rooms/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Roster/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Share/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Statistics/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Subscribe/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Syndication/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Upload/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Vcard4/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/VisioExt/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Visio/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../locales/locales.ini msgid "" msgstr "" "Project-Id-Version: movim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-06-08 22:06+0200\n" +"POT-Creation-Date: 2015-08-20 15:17+0200\n" "PO-Revision-Date: 2014-06-01 23:08+0000\n" "Last-Translator: reza \n" "Language-Team: Persian \n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2015-06-18 21:08+0000\n" "X-Generator: Launchpad (build 17570)\n" -"Language: fa\n" -#: ../cache/locales.php:2 +#: [about]thanks msgid "Thanks" msgstr "" -#: ../cache/locales.php:3 +#: [about]developers msgid "Developers" msgstr "" -#: ../cache/locales.php:4 +#: [about]translators msgid "Translators" msgstr "" -#: ../cache/locales.php:5 +#: [about]software msgid "Software" msgstr "" -#: ../cache/locales.php:6 +#: [about]resources msgid "Resources" msgstr "" -#: ../cache/locales.php:7 ../cache/locales.php:83 ../cache/locales.php:85 +#: [about]api [schema]api [api]title msgid "API" msgstr "" -#: ../cache/locales.php:8 -msgid "" -"Movim is an XMPP-based communication platform. All the project, except the " -"following software and resources, is under" +#: [about]info +msgid "Movim is an XMPP-based communication platform. All the project, except the following software and resources, is under" msgstr "" -#: ../cache/locales.php:9 +#: [account]title msgid "Account" msgstr "" -#: ../cache/locales.php:10 -msgid "The password has been updated" +#: [account]password_change_title +msgid "Change my password" msgstr "" -#: ../cache/locales.php:11 -msgid "Please provide a valid password (6 characters minimum)" -msgstr "" - -#: ../cache/locales.php:12 -msgid "The provided passwords are not the same" -msgstr "" - -#: ../cache/locales.php:13 -msgid "Delete my account" -msgstr "" - -#: ../cache/locales.php:14 -msgid "" -"You will delete your XMPP account and all the relative information linked to " -"it (profile, contacts and publications)." -msgstr "" - -#: ../cache/locales.php:15 -msgid "Are you sure that you want to delete it ?" -msgstr "" - -#: ../cache/locales.php:16 ../cache/locales.php:411 -msgid "Create a new account" -msgstr "" - -#: ../cache/locales.php:17 -msgid "No account creation form found on the server" -msgstr "" - -#: ../cache/locales.php:18 ../cache/locales.php:172 -msgid "on" -msgstr "" - -#: ../cache/locales.php:19 -msgid "Your acccount has been successfully registered" -msgstr "" - -#: ../cache/locales.php:20 -msgid "Loading" -msgstr "" - -#: ../cache/locales.php:21 -msgid "Not Acceptable" -msgstr "" - -#: ../cache/locales.php:22 -msgid "The registration system of this server is currently unavailable" -msgstr "" - -#: ../cache/locales.php:23 -msgid "" -"This server use an external system for the registration, please click on the " -"following URL." -msgstr "" - -#: ../cache/locales.php:24 -msgid "Actions" -msgstr "" - -#: ../cache/locales.php:25 ../cache/locales.php:82 -msgid "Database" -msgstr "" - -#: ../cache/locales.php:26 -msgid "Modl wasn't able to connect to the database" -msgstr "" - -#: ../cache/locales.php:27 -msgid "Movim is connected to the database" -msgstr "" - -#: ../cache/locales.php:28 -msgid "The database need to be updated" -msgstr "" - -#: ../cache/locales.php:29 -msgid "Movim database is up to date" -msgstr "" - -#: ../cache/locales.php:30 -msgid "Database Type" -msgstr "" - -#: ../cache/locales.php:31 ../cache/locales.php:50 ../cache/locales.php:540 -msgid "Username" -msgstr "" - -#: ../cache/locales.php:32 ../cache/locales.php:51 ../cache/locales.php:282 -#: ../cache/locales.php:541 +#: [account]password [db]password [credentials]password [form]password +#: [input]password msgid "Password" msgstr "" -#: ../cache/locales.php:33 +#: [account]password_confirmation +msgid "Password confirmation" +msgstr "" + +#: [account]password_changed +msgid "The password has been updated" +msgstr "" + +#: [account]password_not_valid +msgid "Please provide a valid password (6 characters minimum)" +msgstr "" + +#: [account]password_not_same +msgid "The provided passwords are not the same" +msgstr "" + +#: [account]delete_title +msgid "Delete my account" +msgstr "" + +#: [account]delete +msgid "Delete your account" +msgstr "" + +#: [account]delete_text +msgid "You will delete your XMPP account and all the relative information linked to it (profile, contacts and publications)." +msgstr "" + +#: [account]delete_text_confirm +msgid "Are you sure that you want to delete it ?" +msgstr "" + +#: [account]gateway_title +msgid "Gateway" +msgstr "" + +#: [create]title [subscribe]title +msgid "Create a new account" +msgstr "" + +#: [create]notfound +msgid "No account creation form found on the server" +msgstr "" + +#: [create]server_on +msgid "on" +msgstr "" + +#: [create]successfull +msgid "Your acccount has been successfully registered" +msgstr "" + +#: [create]loading +msgid "Loading" +msgstr "" + +#: [error]not_acceptable +msgid "Not Acceptable" +msgstr "" + +#: [error]service_unavailable +msgid "The registration system of this server is currently unavailable" +msgstr "" + +#: [oob]about +msgid "This server use an external system for the registration, please click on the following URL." +msgstr "" + +#: [adhoc]title +msgid "Actions" +msgstr "" + +#: [db]legend [schema]database +msgid "Database" +msgstr "" + +#: [db]connect_error +msgid "Modl wasn't able to connect to the database" +msgstr "" + +#: [db]connect_success +msgid "Movim is connected to the database" +msgstr "" + +#: [db]update +msgid "The database need to be updated" +msgstr "" + +#: [db]up_to_date +msgid "Movim database is up to date" +msgstr "" + +#: [db]type +msgid "Database Type" +msgstr "" + +#: [db]username [credentials]username [input]username +msgid "Username" +msgstr "" + +#: [db]host msgid "Host" msgstr "" -#: ../cache/locales.php:34 +#: [db]port msgid "Port" msgstr "" -#: ../cache/locales.php:35 -msgid "Database Name" +#: [db]name +msgid "Database sName" msgstr "" -#: ../cache/locales.php:36 +#: [admin]general msgid "General Settings" msgstr "" -#: ../cache/locales.php:37 +#: [general]theme msgid "Theme" msgstr "" -#: ../cache/locales.php:38 +#: [general]language msgid "Default language" msgstr "" -#: ../cache/locales.php:39 -msgid "Environment" -msgstr "" - -#: ../cache/locales.php:40 +#: [general]log_verbosity msgid "Log verbosity" msgstr "" -#: ../cache/locales.php:41 +#: [general]timezone msgid "Server Timezone" msgstr "" -#: ../cache/locales.php:42 +#: [general]limit msgid "User folder size limit (in bytes)" msgstr "" -#: ../cache/locales.php:43 +#: [websocket]title msgid "WebSocket Configuration" msgstr "" -#: ../cache/locales.php:44 +#: [websocket]info msgid "Enter here a valid WebSocket URI in the form" msgstr "" -#: ../cache/locales.php:45 +#: [websocket]label msgid "WebSocket URI" msgstr "" -#: ../cache/locales.php:46 -msgid "" -"If you change the URI, please restart the daemon to reload the configuration" +#: [websocket]save_info +msgid "If you change the URI, please restart the daemon to reload the configuration" msgstr "" -#: ../cache/locales.php:47 +#: [websocket]publics msgid "Public WebSockets" msgstr "" -#: ../cache/locales.php:48 +#: [credentials]title msgid "Administration Credential" msgstr "" -#: ../cache/locales.php:49 +#: [credentials]info msgid "Change the default credentials admin/password" msgstr "" -#: ../cache/locales.php:52 +#: [credentials]re_password msgid "Retype password" msgstr "" -#: ../cache/locales.php:53 +#: [whitelist]title msgid "Whitelist - XMPP Server" msgstr "" -#: ../cache/locales.php:54 -msgid "" -"If you want to specify a list of authorized XMPP servers on your Movim pod " -"and forbid the connection on all the others please put their domain name " -"here, with comma (ex: movim.eu,jabber.fr)" +#: [whitelist]info1 +msgid "If you want to specify a list of authorized XMPP servers on your Movim pod and forbid the connection on all the others please put their domain name here, with comma (ex: movim.eu,jabber.fr)" msgstr "" -#: ../cache/locales.php:55 -msgid "" -"Leave this field blank if you allow the access to all the XMPP accounts." +#: [whitelist]info2 +msgid "Leave this field blank if you allow the access to all the XMPP accounts." msgstr "" -#: ../cache/locales.php:56 +#: [whitelist]label msgid "List of whitelisted XMPP servers" msgstr "" -#: ../cache/locales.php:57 ../cache/locales.php:61 +#: [information]title +msgctxt "[information]title" msgid "Information Message" msgstr "" -#: ../cache/locales.php:58 +#: [information]description msgid "Description" msgstr "" -#: ../cache/locales.php:59 +#: [information]info1 msgid "This message will be displayed on the login page" msgstr "" -#: ../cache/locales.php:60 -msgid "Leave this field blank if you don't want to show any message." +#: [information]info2 +msgid "Leave this field blank if you dont want to show any message." msgstr "" -#: ../cache/locales.php:62 +#: [information]label +msgctxt "[information]label" +msgid "Information Message" +msgstr "" + +#: [log]empty msgid "Empty" msgstr "" -#: ../cache/locales.php:63 +#: [log]syslog msgid "Syslog" msgstr "" -#: ../cache/locales.php:64 +#: [log]syslog_files msgid "Syslog and files" msgstr "" -#: ../cache/locales.php:65 +#: [rewrite]title msgid "URL Rewriting" msgstr "" -#: ../cache/locales.php:66 +#: [rewrite]info msgid "The URL Rewriting can be enabled" msgstr "" -#: ../cache/locales.php:67 +#: [admin]compatibility msgid "General Overview" msgstr "" -#: ../cache/locales.php:68 -msgid "" -"Movim has found some issues or things that need to be fixed or improved" +#: [compatibility]info +msgid "Movim has found some issues or things that need to be fixed or improved" msgstr "" -#: ../cache/locales.php:69 -#, php-format +#: [compatibility]php1 msgid "Update your PHP-Version: %s" msgstr "" -#: ../cache/locales.php:70 +#: [compatibility]php2 msgid "Required: 5.3.0" msgstr "" -#: ../cache/locales.php:71 +#: [compatibility]curl msgid "Install the php5-curl library" msgstr "" -#: ../cache/locales.php:72 +#: [compatibility]imagick msgid "Install the php5-imagick library" msgstr "" -#: ../cache/locales.php:73 +#: [compatibility]gd msgid "Install the php5-gd library" msgstr "" -#: ../cache/locales.php:74 -msgid "Read and write rights for the webserver in Movim's root directory" +#: [compatibility]rights +msgid "Read and write rights for the webserver in Movims root directory" msgstr "" -#: ../cache/locales.php:75 +#: [compatibility]rewrite msgid "The URL Rewriting support is currently disabled" msgstr "" -#: ../cache/locales.php:76 +#: [compatibility]db msgid "The database need to be updated, go to the database panel to fix this" msgstr "" -#: ../cache/locales.php:77 -msgid "" -"WebSocket connection error, check if the Movim Daemon is running and is " -"reacheable" +#: [compatibility]websocket +msgid "WebSocket connection error, check if the Movim Daemon is running and is reachable" msgstr "" -#: ../cache/locales.php:78 -msgid "" -"XMPP Websocket connection error, please check the validity of the URL given " -"in the General Configuration" +#: [compatibility]xmpp_websocket +msgid "XMPP Websocket connection error, please check the validity of the URL given in the General Configuration" msgstr "" -#: ../cache/locales.php:79 +#: [schema]browser msgid "Browser" msgstr "" -#: ../cache/locales.php:80 +#: [schema]movim msgid "Movim Core" msgstr "" -#: ../cache/locales.php:81 +#: [schema]daemon msgid "Movim Daemon" msgstr "" -#: ../cache/locales.php:84 +#: [schema]xmpp msgid "XMPP" msgstr "" -#: ../cache/locales.php:86 -#, php-format -msgid "" -"Here you can register your pod on the official %sMovim API%s and be listed " -"on %sthe pods page%s." +#: [api]info +msgid "Here you can register your pod on the official %sMovim API%s and be listed on %sthe pods page%s." msgstr "" -#: ../cache/locales.php:87 +#: [api]register msgid "Your pod is not registered on the API" msgstr "" -#: ../cache/locales.php:88 +#: [api]registered msgid "Your pod is registered on the API" msgstr "" -#: ../cache/locales.php:89 +#: [api]wait msgid "Your pod is not yet validated" msgstr "" -#: ../cache/locales.php:90 +#: [api]validated msgid "Your pod is validated" msgstr "" -#: ../cache/locales.php:91 -msgid "" -"You asked to be removed from the API, this request will be processed in a " -"couple of hours" +#: [api]unregister +msgid "You asked to be removed from the API, this request will be processed in a couple of hours" msgstr "" -#: ../cache/locales.php:92 ../cache/locales.php:147 +#: [api]conf_updated [config]updated msgid "Configuration updated" msgstr "" -#: ../cache/locales.php:93 +#: [avatar]file msgid "File" msgstr "" -#: ../cache/locales.php:94 +#: [avatar]use_it msgid "Use it" msgstr "" -#: ../cache/locales.php:95 +#: [avatar]webcam msgid "Webcam" msgstr "" -#: ../cache/locales.php:96 +#: [avatar]cheese msgid "Cheese !" msgstr "" -#: ../cache/locales.php:97 +#: [avatar]snapshot msgid "Take a webcam snapshot" msgstr "" -#: ../cache/locales.php:98 +#: [avatar]updated msgid "Avatar Updated" msgstr "" -#: ../cache/locales.php:99 +#: [avatar]not_updated msgid "Avatar Not Updated" msgstr "" -#: ../cache/locales.php:100 ../cache/locales.php:415 -#, php-format +#: [blog]title [feed]title msgid "%s's feed" msgstr "" -#: ../cache/locales.php:101 +#: [blog]empty msgid "This user has not posted anything right now" msgstr "" -#: ../cache/locales.php:102 +#: [title]conferences msgid "Conferences" msgstr "" -#: ../cache/locales.php:103 ../cache/locales.php:193 ../cache/locales.php:217 -#: ../cache/locales.php:468 +#: [title]groups [group]empty_title [menu]groups [page]groups msgid "Groups" msgstr "" -#: ../cache/locales.php:104 +#: [chatroom]add msgid "Add a new Chat Room" msgstr "" -#: ../cache/locales.php:105 ../cache/locales.php:368 +#: [chatroom]id [chatrooms]id msgid "Chat Room ID" msgstr "" -#: ../cache/locales.php:106 ../cache/locales.php:116 ../cache/locales.php:156 -#: ../cache/locales.php:361 ../cache/locales.php:369 ../cache/locales.php:424 +#: [chatroom]name +msgctxt "[chatroom]name" msgid "Name" msgstr "" -#: ../cache/locales.php:107 ../cache/locales.php:157 ../cache/locales.php:371 -#: ../cache/locales.php:425 +#: [chatroom]nickname [general]nickname [chatrooms]nickname msgid "Nickname" msgstr "" -#: ../cache/locales.php:108 +#: [chatroom]autojoin_label msgid "Do you want do join automaticaly this Chat Room ?" msgstr "" -#: ../cache/locales.php:109 ../cache/locales.php:372 +#: [chatroom]bad_id [chatrooms]bad_id msgid "Bad Chatroom ID" msgstr "" -#: ../cache/locales.php:110 ../cache/locales.php:373 +#: [chatroom]empty_name [chatrooms]empty_name msgid "Empty name" msgstr "" -#: ../cache/locales.php:111 ../cache/locales.php:380 +#: [bookmarks]updated msgid "Bookmarks updated" msgstr "" -#: ../cache/locales.php:112 -msgid "An error occured : " +#: [bookmarks]error +msgid "An error occured :" msgstr "" -#: ../cache/locales.php:113 +#: [bookmarks]configure msgid "Configure" msgstr "" -#: ../cache/locales.php:114 +#: [url]add msgid "Add a new URL" msgstr "" -#: ../cache/locales.php:115 +#: [url]url msgid "URL" msgstr "" -#: ../cache/locales.php:117 +#: [url]name +msgctxt "[url]name" +msgid "Name" +msgstr "" + +#: [message]published msgid "Message Published" msgstr "" -#: ../cache/locales.php:118 ../cache/locales.php:138 +#: [message]encrypted msgid "Encrypted message" msgstr "" -#: ../cache/locales.php:119 +#: [message]composing [chats]composing msgid "Composing..." msgstr "" -#: ../cache/locales.php:120 +#: [message]paused [chats]paused msgid "Paused..." msgstr "" -#: ../cache/locales.php:121 +#: [message]gone msgid "Contact gone" msgstr "" -#: ../cache/locales.php:122 -#, php-format +#: [chat]attention msgid "%s needs your attention" msgstr "" -#: ../cache/locales.php:123 +#: [chat]placeholder msgid "Your message here..." msgstr "" -#: ../cache/locales.php:124 +#: [chat]smileys msgid "Smileys" msgstr "" -#: ../cache/locales.php:125 ../cache/locales.php:139 +#: [chat]empty_title [button]chat msgid "Chat" msgstr "" -#: ../cache/locales.php:126 +#: [chat]empty_text msgid "Discuss with your contacts" msgstr "" -#: ../cache/locales.php:127 -msgid "Members" -msgstr "" - -#: ../cache/locales.php:128 ../cache/locales.php:376 -msgid "Connected to the chatroom" -msgstr "" - -#: ../cache/locales.php:129 ../cache/locales.php:377 -msgid "Disconnected from the chatroom" -msgstr "" - -#: ../cache/locales.php:130 ../cache/locales.php:200 ../cache/locales.php:469 -msgid "Configuration" -msgstr "" - -#: ../cache/locales.php:131 -msgid "Configuration saved" -msgstr "" - -#: ../cache/locales.php:132 -msgid "Subject" -msgstr "" - -#: ../cache/locales.php:133 -msgid "Subject changed" -msgstr "" - -#: ../cache/locales.php:134 -msgid "Open a new conversation by clicking on the plus button bellow" -msgstr "" - -#: ../cache/locales.php:135 -msgid "Chat with a contact" -msgstr "" - -#: ../cache/locales.php:136 +#: [chat]frequent [chats]frequent msgid "Frequent contacts" msgstr "" -#: ../cache/locales.php:137 +#: [chatroom]members +msgid "Members" +msgstr "" + +#: [chatroom]connected [chatrooms]connected +msgid "Connected to the chatroom" +msgstr "" + +#: [chatroom]disconnected [chatrooms]disconnected +msgid "Disconnected from the chatroom" +msgstr "" + +#: [chatroom]config [group]configuration [page]configuration +msgid "Configuration" +msgstr "" + +#: [chatroom]config_saved +msgid "Configuration saved" +msgstr "" + +#: [chatroom]subject +msgid "Subject" +msgstr "" + +#: [chatroom]subject_changed +msgid "Subject changed" +msgstr "" + +#: [chats]empty_title +msgid "No chats yet..." +msgstr "" + +#: [chats]empty +msgid "Open a new conversation by clicking on the plus button bellow or visit the Contacts page." +msgstr "" + +#: [chats]add +msgid "Chat with a contact" +msgstr "" + +#: [chats]more msgid "Load more contacts" msgstr "" -#: ../cache/locales.php:140 -msgid "General" -msgstr "" - -#: ../cache/locales.php:141 -msgid "Language" -msgstr "" - -#: ../cache/locales.php:142 -msgid "Roster display" -msgstr "" - -#: ../cache/locales.php:143 -msgid "Show the offline contacts" -msgstr "" - -#: ../cache/locales.php:144 -msgid "Hide the offline contacts" -msgstr "" - -#: ../cache/locales.php:145 -msgid "Appearence" -msgstr "" - -#: ../cache/locales.php:146 -msgid "This configuration is shared wherever you are connected !" -msgstr "" - -#: ../cache/locales.php:148 -msgid "Notify on incoming message" -msgstr "" - -#: ../cache/locales.php:149 -msgid "Use desktop notifications" -msgstr "" - -#: ../cache/locales.php:150 +#: [title]data msgid "Data" msgstr "" -#: ../cache/locales.php:151 +#: [title]cache msgid "Cache" msgstr "" -#: ../cache/locales.php:152 ../cache/locales.php:218 ../cache/locales.php:466 +#: [title]contacts [menu]contacts [page]contacts msgid "Contacts" msgstr "" -#: ../cache/locales.php:153 ../cache/locales.php:480 +#: [title]posts [page]posts msgid "Posts" msgstr "" -#: ../cache/locales.php:154 +#: [title]messages msgid "Messages" msgstr "" -#: ../cache/locales.php:155 ../cache/locales.php:423 +#: [config]general +msgid "General" +msgstr "" + +#: [config]language +msgid "Language" +msgstr "" + +#: [config]roster +msgid "Roster display" +msgstr "" + +#: [config]roster_show +msgid "Show the offline contacts" +msgstr "" + +#: [config]roster_hide +msgid "Hide the offline contacts" +msgstr "" + +#: [config]appearence +msgid "Appearence" +msgstr "" + +#: [config]info +msgid "This configuration is shared wherever you are connected" +msgstr "" + +#: [notifications]message +msgid "Notify on incoming message" +msgstr "" + +#: [notifications]desktop +msgid "Use desktop notifications" +msgstr "" + +#: [general]legend [general]general_title msgid "General Informations" msgstr "" -#: ../cache/locales.php:158 ../cache/locales.php:427 +#: [general]name [public_groups]name [chatrooms]name +msgid "Name" +msgstr "" + +#: [general]date_of_birth msgid "Date of Birth" msgstr "" -#: ../cache/locales.php:159 ../cache/locales.php:428 +#: [general]gender msgid "Gender" msgstr "" -#: ../cache/locales.php:160 ../cache/locales.php:429 +#: [general]marital msgid "Marital Status" msgstr "" -#: ../cache/locales.php:161 ../cache/locales.php:426 +#: [general]email msgid "Email" msgstr "" -#: ../cache/locales.php:162 ../cache/locales.php:430 +#: [general]website msgid "Website" msgstr "" -#: ../cache/locales.php:163 ../cache/locales.php:431 +#: [general]about msgid "About Me" msgstr "" -#: ../cache/locales.php:164 +#: [general]accounts msgid "Other Accounts" msgstr "" -#: ../cache/locales.php:165 +#: [general]tune msgid "Is Listening" msgstr "" -#: ../cache/locales.php:166 ../cache/locales.php:432 +#: [position]legend [position]position_title msgid "Geographic Position" msgstr "" -#: ../cache/locales.php:167 ../cache/locales.php:433 +#: [position]locality msgid "Locality" msgstr "" -#: ../cache/locales.php:168 ../cache/locales.php:434 +#: [position]country msgid "Country" msgstr "" -#: ../cache/locales.php:169 +#: [mood]title msgid "Mood" msgstr "" -#: ../cache/locales.php:170 +#: [mood]im msgid "I'm " msgstr "" -#: ../cache/locales.php:171 +#: [listen]title msgid "Listening" msgstr "" -#: ../cache/locales.php:173 +#: [last]title msgid "Last seen" msgstr "" -#: ../cache/locales.php:174 +#: [client]title msgid "Client Informations" msgstr "" -#: ../cache/locales.php:175 +#: [explore]last_registered msgid "Last registered" msgstr "" -#: ../cache/locales.php:176 +#: [explore]explore msgid "Find some new friends" msgstr "" -#: ../cache/locales.php:177 ../cache/locales.php:533 +#: [edit]title [button]edit msgid "Edit" msgstr "" -#: ../cache/locales.php:178 +#: [edit]alias msgid "Alias" msgstr "" -#: ../cache/locales.php:179 +#: [edit]group msgid "Group" msgstr "" -#: ../cache/locales.php:180 ../cache/locales.php:400 +#: [edit]updated [roster]updated msgid "Contact updated" msgstr "" -#: ../cache/locales.php:181 +#: [delete]title msgid "Are you sure?" msgstr "" -#: ../cache/locales.php:182 -msgid "" -"You are going to delete one of your contacts, please confirm your action" +#: [delete]text +msgid "You are going to delete one of your contacts, please confirm your action" msgstr "" -#: ../cache/locales.php:183 -#, php-format +#: [age]years msgid "%s years" msgstr "" -#: ../cache/locales.php:184 +#: [blog]last msgid "Last public post" msgstr "" -#: ../cache/locales.php:185 +#: [subscription]to +msgid "You can see this contact status" +msgstr "" + +#: [subscription]to_button +msgid "Share my status" +msgstr "" + +#: [subscription]to_text +msgid "But this contact cannot see yours" +msgstr "" + +#: [subscription]from +msgid "You are not subscribed to this contact" +msgstr "" + +#: [subscription]from_button +msgid "Ask to subscribe" +msgstr "" + +#: [subscription]from_text +msgid "But this contact can still see if you are online" +msgstr "" + +#: [subscription]nil +msgid "No subscriptions" +msgstr "" + +#: [subscription]nil_button +msgid "Invite" +msgstr "" + +#: [subscription]nil_text +msgid "This contact is in your contact list but there is no subscriptions between the two accounts" +msgstr "" + +#: [group]subscribe msgid "Subscribe" msgstr "" -#: ../cache/locales.php:186 +#: [group]subscribed msgid "Subscribed" msgstr "" -#: ../cache/locales.php:187 +#: [group]unsubscribe msgid "Unsubscribe" msgstr "" -#: ../cache/locales.php:188 +#: [group]unsubscribe_text msgid "You are going to unsubscribe from this Group" msgstr "" -#: ../cache/locales.php:189 +#: [group]unsubscribed msgid "Unsubscribed" msgstr "" -#: ../cache/locales.php:190 +#: [group]share_label msgid "Make your membership to this group public to your friends" msgstr "" -#: ../cache/locales.php:191 +#: [group]label_label msgid "Give a label for this group" msgstr "" -#: ../cache/locales.php:192 +#: [group]sure msgid "Are you sure ?" msgstr "" -#: ../cache/locales.php:194 +#: [group]empty_text msgid "Discover, follow and share" msgstr "" -#: ../cache/locales.php:195 +#: [group]empty msgid "Something bad happened to this group" msgstr "" -#: ../cache/locales.php:196 +#: [group]config_saved msgid "Group configuration saved" msgstr "" -#: ../cache/locales.php:197 +#: [group]delete_title msgid "Delete the group" msgstr "" -#: ../cache/locales.php:198 -msgid "" -"You are going to delete the following group. Please confirm your action." +#: [group]delete_text +msgid "You are going to delete the following group. Please confirm your action." msgstr "" -#: ../cache/locales.php:199 -msgid "" -"It seems that this group doesn't exists anymore. Do you want to remove it " -"from your subscriptions?" +#: [group]delete_clean_text +msgid "It seems that this group doesn't exists anymore. Do you want to remove it from your subscriptions?" msgstr "" -#: ../cache/locales.php:201 ../cache/locales.php:408 +#: [group]counter +msgid "%s groups on this server" +msgstr "" + +#: [group]subscriptions [statistics]subscriptions msgid "Subscriptions" msgstr "" -#: ../cache/locales.php:202 ../cache/locales.php:290 +#: [group]servers +msgid "Groups servers" +msgstr "" + +#: [group]search_server +msgid "Search for a new server" +msgstr "" + +#: [group]help_info1 +msgid "Groups are the perfect way to share posts about topics that you like with all the other Movim's users." +msgstr "" + +#: [group]help_info2 +msgid "Choose a server and a Group and subscribe to it using the %s button in the header. You can also create a new one using the %s button." +msgstr "" + +#: [group]help_info3 +msgid "Done? You can now publish a new post in the Group by using the %s button." +msgstr "" + +#: [group]help_info4 +msgid "You will find a list of all your subscribed Groups in My Subscriptions and receive instantly all the new incoming posts in the %sNews%s page." +msgstr "" + +#: [groups]empty_title msgid "Hello" msgstr "" -#: ../cache/locales.php:203 ../cache/locales.php:225 ../cache/locales.php:291 +#: [groups]contact_post [hello]contact_post [menu]contact_post msgid "Contact post" msgstr "" -#: ../cache/locales.php:204 -msgid "" -"You don't have any subscriptions yet, select a group server above to start " -"exploring." +#: [groups]empty_text1 +msgid "You don't have any subscriptions yet, select a group server above to start exploring." msgstr "" -#: ../cache/locales.php:205 +#: [groups]empty_text2 msgid "Subscribe to your favorite feeds by bookmarking them." msgstr "" -#: ../cache/locales.php:206 +#: [groups]subscriptions msgid "My Subscriptions" msgstr "" -#: ../cache/locales.php:207 +#: [groups]add msgid "Create a new Group" msgstr "" -#: ../cache/locales.php:208 +#: [groups]name msgid "Group name" msgstr "" -#: ../cache/locales.php:209 +#: [groups]name_example msgid "My Little Pony - Fan Club" msgstr "" -#: ../cache/locales.php:210 +#: [groups]created msgid "Group created successfully" msgstr "" -#: ../cache/locales.php:211 +#: [groups]deleted msgid "Group deleted successfully" msgstr "" -#: ../cache/locales.php:212 +#: [groups]name_error msgid "Please provide a valid group name (4 characters minimum)" msgstr "" -#: ../cache/locales.php:213 +#: [groups]no_creation msgid "You cannot create a new Group on this server" msgstr "" -#: ../cache/locales.php:214 -#, php-format +#: [groups]sub msgid "%s subscribers" msgstr "" -#: ../cache/locales.php:215 -#, php-format +#: [groups]num msgid "%s posts" msgstr "" -#: ../cache/locales.php:216 +#: [groups]disco_error +msgid "This server doesn't exists" +msgstr "" + +#: [menu]all msgid "All" msgstr "" -#: ../cache/locales.php:219 +#: [menu]refresh msgid "Refresh all the streams" msgstr "" -#: ../cache/locales.php:220 ../cache/locales.php:402 -msgid "Search" +#: [roster]search +msgid "Search in your contacts" msgstr "" -#: ../cache/locales.php:221 +#: [hello]active_contacts +msgid "Active contacts" +msgstr "" + +#: [hello]chat msgid "Go on the Chat page" msgstr "" -#: ../cache/locales.php:222 -msgid "Read all theses articles on the News page" -msgstr "" - -#: ../cache/locales.php:223 -msgid "Visit your public blog" -msgstr "" - -#: ../cache/locales.php:224 -msgid "See your public posts and share them with all your contacts" -msgstr "" - -#: ../cache/locales.php:226 -msgid "Universal share button" -msgstr "" - -#: ../cache/locales.php:227 -msgid "" -"Bookmark or drag and drop the following button in your toolbar and use it on " -"all the pages you want to share on Movim" -msgstr "" - -#: ../cache/locales.php:228 -msgid "Share on Movim" -msgstr "" - -#: ../cache/locales.php:229 -msgid "Frequently Asked Questions" -msgstr "" - -#: ../cache/locales.php:230 -msgid "What do the little banners refer to ?" -msgstr "" - -#: ../cache/locales.php:231 -msgid "" -"Thanks to these five little banners, you can quickly identitfy the level of " -"confdentiality applied to the information you provide." -msgstr "" - -#: ../cache/locales.php:232 -msgid "White, only you can see the information" -msgstr "" - -#: ../cache/locales.php:233 -msgid "Green, you have chosen some contacts who can see your information" -msgstr "" - -#: ../cache/locales.php:234 -msgid "Orange, all your contact list can see your information" -msgstr "" - -#: ../cache/locales.php:235 -msgid "Red, everybody in the XMPP network can see your information" -msgstr "" - -#: ../cache/locales.php:236 -msgid "Black, the whole Internet can see your information" -msgstr "" - -#: ../cache/locales.php:237 -msgid "Looking for some documentation ?" -msgstr "" - -#: ../cache/locales.php:238 -msgid "Read the Wiki" -msgstr "" - -#: ../cache/locales.php:239 -msgid "Talk with us by email ?" -msgstr "" - -#: ../cache/locales.php:240 -msgid "Join the Mailing List" -msgstr "" - -#: ../cache/locales.php:241 -msgid "Chat with the team ?" -msgstr "" - -#: ../cache/locales.php:242 -msgid "Join the Chatroom" -msgstr "" - -#: ../cache/locales.php:243 -msgid "Location node created" -msgstr "" - -#: ../cache/locales.php:244 -msgid "Bookmark node created" -msgstr "" - -#: ../cache/locales.php:245 -msgid "Profile node created" -msgstr "" - -#: ../cache/locales.php:246 -msgid "Avatar node created" -msgstr "" - -#: ../cache/locales.php:247 -msgid "Subscriptions node created" -msgstr "" - -#: ../cache/locales.php:248 -msgid "Microblog node created" -msgstr "" - -#: ../cache/locales.php:249 -msgid "Location" -msgstr "" - -#: ../cache/locales.php:250 -msgid "Wrong position" -msgstr "" - -#: ../cache/locales.php:251 -msgid "Location updated" -msgstr "" - -#: ../cache/locales.php:252 -msgid "Update my position" -msgstr "" - -#: ../cache/locales.php:253 -msgid "Wrong username" -msgstr "" - -#: ../cache/locales.php:254 -msgid "Invalid JID" -msgstr "" - -#: ../cache/locales.php:255 -msgid "Empty Challenge from the server" -msgstr "" - -#: ../cache/locales.php:256 -msgid "XMPP Domain error, your account is not a correct Jabber ID" -msgstr "" - -#: ../cache/locales.php:257 -msgid "Some data are missing !" -msgstr "" - -#: ../cache/locales.php:258 -msgid "Wrong password" -msgstr "" - -#: ../cache/locales.php:259 -msgid "Internal server error" -msgstr "" - -#: ../cache/locales.php:260 -msgid "Session error" -msgstr "" - -#: ../cache/locales.php:261 -msgid "Account successfully created" -msgstr "" - -#: ../cache/locales.php:262 ../cache/locales.php:271 -msgid "Your XMPP server is unauthorized" -msgstr "" - -#: ../cache/locales.php:263 -msgid "The server takes too much time to respond" -msgstr "" - -#: ../cache/locales.php:264 -msgid "Your web browser is too old to use with Movim." -msgstr "" - -#: ../cache/locales.php:265 -msgid "" -"Movim cannot talk with the server, please try again later (Websocket " -"connection error)" -msgstr "" - -#: ../cache/locales.php:266 -msgid "Impossible login" -msgstr "" - -#: ../cache/locales.php:267 -msgid "Oops!" -msgstr "" - -#: ../cache/locales.php:268 ../cache/locales.php:449 ../cache/locales.php:455 -msgid "Unknown error" -msgstr "" - -#: ../cache/locales.php:269 -msgid "Invalid username format" -msgstr "" - -#: ../cache/locales.php:270 -msgid "Invalid password format" -msgstr "" - -#: ../cache/locales.php:272 -msgid "A Movim session is already open on an other device" -msgstr "" - -#: ../cache/locales.php:273 -msgid "Movim failed to authenticate. You entered wrong data" -msgstr "" - -#: ../cache/locales.php:274 -msgid "Authentication mechanism not supported by Movim" -msgstr "" - -#: ../cache/locales.php:275 -msgid "The XMPP authentification failed" -msgstr "" - -#: ../cache/locales.php:276 -#, php-format -msgid "" -"You can login with Facebook (chat only) using %syour.id@chat.facebook.com%s " -"and your password" -msgstr "" - -#: ../cache/locales.php:277 -#, php-format -msgid "%sGmail accounts are also compatible%s but are not fully supported" -msgstr "" - -#: ../cache/locales.php:278 -msgid "You can login using your favorite Jabber account" -msgstr "" - -#: ../cache/locales.php:279 -msgid "or with our demonstration account" -msgstr "" - -#: ../cache/locales.php:280 ../cache/locales.php:435 -msgid "Accounts" -msgstr "" - -#: ../cache/locales.php:281 -msgid "My address" -msgstr "" - -#: ../cache/locales.php:283 -msgid "Create one !" -msgstr "" - -#: ../cache/locales.php:284 -msgid "No account yet ?" -msgstr "" - -#: ../cache/locales.php:285 -msgid "Another account" -msgstr "" - -#: ../cache/locales.php:286 -msgid "You can login with accounts from theses servers" -msgstr "" - -#: ../cache/locales.php:287 -msgid "Connected" -msgstr "" - -#: ../cache/locales.php:288 -msgid "Population" -msgstr "" - -#: ../cache/locales.php:289 -msgid "Bad nickname (between 4 and 40 characters)" -msgstr "" - -#: ../cache/locales.php:292 -msgid "" -"Welcome on your news feed, here you will see all the posts published in the " -"groups you have subscribed." -msgstr "" - -#: ../cache/locales.php:293 -msgid "Refreshing all the streams" -msgstr "" - -#: ../cache/locales.php:294 -msgid "This post is public" -msgstr "" - -#: ../cache/locales.php:295 -msgid "Manage your members" -msgstr "" - -#: ../cache/locales.php:296 -msgid "Get the members" -msgstr "" - -#: ../cache/locales.php:297 -msgid "Affiliations saved" -msgstr "" - -#: ../cache/locales.php:298 -msgid "Manage your subscriptions" -msgstr "" - -#: ../cache/locales.php:299 -msgid "Manage the subscriptions" -msgstr "" - -#: ../cache/locales.php:300 -msgid "Get the subscriptions" -msgstr "" - -#: ../cache/locales.php:301 -msgid "Subscriptions saved" -msgstr "" - -#: ../cache/locales.php:302 -msgid "Pending Invitations" -msgstr "" - -#: ../cache/locales.php:303 -#, php-format -msgid "%s wants to talk with you" -msgstr "" - -#: ../cache/locales.php:304 -msgid "Manage" -msgstr "" - -#: ../cache/locales.php:305 ../cache/locales.php:338 -msgid "News Feed" -msgstr "" - -#: ../cache/locales.php:306 ../cache/locales.php:339 -msgid "Discover and register to the groups you are interested in" -msgstr "" - -#: ../cache/locales.php:307 ../cache/locales.php:340 ../cache/locales.php:482 -msgid "Preview" -msgstr "" - -#: ../cache/locales.php:308 ../cache/locales.php:341 ../cache/locales.php:478 -msgid "Help" -msgstr "" - -#: ../cache/locales.php:309 ../cache/locales.php:342 -msgid "More help" -msgstr "" - -#: ../cache/locales.php:310 ../cache/locales.php:343 -msgid "Markdown syntax manual" -msgstr "" - -#: ../cache/locales.php:311 ../cache/locales.php:344 ../cache/locales.php:681 -msgid "Title" -msgstr "" - -#: ../cache/locales.php:312 ../cache/locales.php:345 -msgid "Content" -msgstr "" - -#: ../cache/locales.php:313 ../cache/locales.php:346 -msgid "Link" -msgstr "" - -#: ../cache/locales.php:314 ../cache/locales.php:347 -msgid "Tags" -msgstr "" - -#: ../cache/locales.php:315 ../cache/locales.php:348 -msgid "Please enter a valid url" -msgstr "" - -#: ../cache/locales.php:316 ../cache/locales.php:349 -msgid "No content to preview" -msgstr "" - -#: ../cache/locales.php:317 ../cache/locales.php:350 ../cache/locales.php:687 -msgid "No content" -msgstr "" - -#: ../cache/locales.php:318 ../cache/locales.php:351 -msgid "Post published" -msgstr "" - -#: ../cache/locales.php:319 ../cache/locales.php:352 -msgid "Post deleted" -msgstr "" - -#: ../cache/locales.php:320 ../cache/locales.php:353 -msgid "This picture will be added to your gallery" -msgstr "" - -#: ../cache/locales.php:321 ../cache/locales.php:354 -msgid "What's Hot" -msgstr "" - -#: ../cache/locales.php:322 ../cache/locales.php:355 -msgid "New post" -msgstr "" - -#: ../cache/locales.php:323 ../cache/locales.php:357 -msgid "" -"You can also use services like Imgur or Flickr to host your picture and " -"paste the link here." -msgstr "" - -#: ../cache/locales.php:324 -#, php-format -msgid "This is a re-post from %s" -msgstr "" - -#: ../cache/locales.php:325 -#, php-format -msgid "See %s profile" -msgstr "" - -#: ../cache/locales.php:326 -msgid "Publish this post on your public feed?" -msgstr "" - -#: ../cache/locales.php:327 -msgid "Post published on your blog" -msgstr "" - -#: ../cache/locales.php:328 -msgid "Post removed from your blog" -msgstr "" - -#: ../cache/locales.php:329 ../cache/locales.php:701 -msgid "Delete this post" -msgstr "" - -#: ../cache/locales.php:330 -msgid "You are going to delete this post, please confirm your action" -msgstr "" - -#: ../cache/locales.php:331 -msgid "Comments disabled" -msgstr "" - -#: ../cache/locales.php:332 -msgid "Comment published" -msgstr "" - -#: ../cache/locales.php:333 -msgid "Disconnect" -msgstr "" - -#: ../cache/locales.php:334 -msgid "Your status here !" -msgstr "" - -#: ../cache/locales.php:335 -msgid "Status updated" -msgstr "" - -#: ../cache/locales.php:336 -msgid "Status" -msgstr "" - -#: ../cache/locales.php:337 -msgid "Presence" -msgstr "" - -#: ../cache/locales.php:356 -msgid "Publish" -msgstr "" - -#: ../cache/locales.php:358 -msgid "You cannot publish a post on this Group" -msgstr "" - -#: ../cache/locales.php:359 -msgid "" -"Some fields have been filled in. Do you still want to go back and loose " -"their content?" -msgstr "" - -#: ../cache/locales.php:360 -msgid "Shared" -msgstr "" - -#: ../cache/locales.php:362 -#, php-format -msgid "%s has been added to your public groups" -msgstr "" - -#: ../cache/locales.php:363 -#, php-format -msgid "%s has been removed from your public groups" -msgstr "" - -#: ../cache/locales.php:364 -msgid "Add a chatroom" -msgstr "" - -#: ../cache/locales.php:365 -msgid "You don't have any chatroom yet." -msgstr "" - -#: ../cache/locales.php:366 -msgid "Add one by clicking on the add button in the header." -msgstr "" - -#: ../cache/locales.php:367 -msgid "Chatrooms" -msgstr "" - -#: ../cache/locales.php:370 -msgid "My Favorite Room" -msgstr "" - -#: ../cache/locales.php:374 -msgid "Remove a chatroom" -msgstr "" - -#: ../cache/locales.php:375 -msgid "" -"You are going to remove the following chatroom. Please confirm your action." -msgstr "" - -#: ../cache/locales.php:378 -msgid "Users in the room" -msgstr "" - -#: ../cache/locales.php:379 -msgid "Please enter a correct nickname (6 to 40 characters)" -msgstr "" - -#: ../cache/locales.php:381 -msgid "Public chatroom" -msgstr "" - -#: ../cache/locales.php:382 -msgid "Please provide a room address" -msgstr "" - -#: ../cache/locales.php:383 -msgid "You are currently logued as an anonymous user." -msgstr "" - -#: ../cache/locales.php:384 -msgid "" -"You can join using your own account or create one on the login page by " -"loging out using the cross in the top-right corner." -msgstr "" - -#: ../cache/locales.php:385 -#, php-format -msgid "Login on %s" -msgstr "" - -#: ../cache/locales.php:386 -msgid "Your nickname" -msgstr "" - -#: ../cache/locales.php:387 -msgid "Ungrouped" -msgstr "" - -#: ../cache/locales.php:388 -msgid "Show disconnected contacts" -msgstr "" - -#: ../cache/locales.php:389 -msgid "Hide disconnected contacts" -msgstr "" - -#: ../cache/locales.php:390 -#, php-format -msgid "Show group %s" -msgstr "" - -#: ../cache/locales.php:391 -#, php-format -msgid "Hide group %s" -msgstr "" - -#: ../cache/locales.php:392 -msgid "Please enter a valid Jabber ID" -msgstr "" - -#: ../cache/locales.php:393 -msgid "" -"No contacts ? You can add one using the + button bellow or going to the " -"Explore page" -msgstr "" - -#: ../cache/locales.php:394 -msgid "Show/Hide" -msgstr "" - -#: ../cache/locales.php:395 -msgid "Enter the Jabber ID of your contact." -msgstr "" - -#: ../cache/locales.php:396 -msgid "Press enter to validate." -msgstr "" - -#: ../cache/locales.php:397 -msgid "JID" -msgstr "" - -#: ../cache/locales.php:398 -msgid "Results" -msgstr "" - -#: ../cache/locales.php:399 -msgid "Contact added" -msgstr "" - -#: ../cache/locales.php:401 -msgid "Contact deleted" -msgstr "" - -#: ../cache/locales.php:403 -msgid "This is not a valid url" -msgstr "" - -#: ../cache/locales.php:404 -msgid "Sharing the URL" -msgstr "" - -#: ../cache/locales.php:405 -msgid "Statistics" -msgstr "" - -#: ../cache/locales.php:406 -msgid "Since" -msgstr "" - -#: ../cache/locales.php:407 -msgid "Sessions" -msgstr "" - -#: ../cache/locales.php:409 -msgid "Monthly Subscriptions" -msgstr "" - -#: ../cache/locales.php:410 -msgid "Monthly Subscriptions Cumulated" -msgstr "" - -#: ../cache/locales.php:412 -msgid "" -"Movim is a decentralized social network, before creating a new account you " -"need to choose a server to register." -msgstr "" - -#: ../cache/locales.php:413 -msgid "Your server here ?" -msgstr "" - -#: ../cache/locales.php:414 -msgid "Contact us to add yours to the officially supported servers list" -msgstr "" - -#: ../cache/locales.php:416 -msgid "No public feed for this contact" -msgstr "" - -#: ../cache/locales.php:417 -msgid "No contact specified" -msgstr "" - -#: ../cache/locales.php:418 ../cache/locales.php:473 -msgid "Profile" -msgstr "" - -#: ../cache/locales.php:419 -msgid "Profile Updated" -msgstr "" - -#: ../cache/locales.php:420 -msgid "Profile Not Updated" -msgstr "" - -#: ../cache/locales.php:421 -msgid "Your profile is now public" -msgstr "" - -#: ../cache/locales.php:422 -msgid "Your profile is now restricted" -msgstr "" - -#: ../cache/locales.php:436 -msgid "Twitter" -msgstr "" - -#: ../cache/locales.php:437 -msgid "Skype" -msgstr "" - -#: ../cache/locales.php:438 -msgid "Yahoo" -msgstr "" - -#: ../cache/locales.php:439 -msgid "Privacy Level" -msgstr "" - -#: ../cache/locales.php:440 -msgid "Is this profile public ?" -msgstr "" - -#: ../cache/locales.php:441 -msgid "" -"Please pay attention ! By making your profile public, all the information " -"listed above will be available for all the Movim users and on the whole " -"Internet." -msgstr "" - -#: ../cache/locales.php:442 -msgid "Call" -msgstr "" - -#: ../cache/locales.php:443 -msgid "Hang up" -msgstr "" - -#: ../cache/locales.php:444 -msgid "Connection" -msgstr "" - -#: ../cache/locales.php:445 ../cache/locales.php:451 -msgid "Hung up" -msgstr "" - -#: ../cache/locales.php:446 ../cache/locales.php:452 -msgid "Your contact is busy" -msgstr "" - -#: ../cache/locales.php:447 ../cache/locales.php:453 -msgid "Declined" -msgstr "" - -#: ../cache/locales.php:448 ../cache/locales.php:454 -msgid "Remote application incompatible" -msgstr "" - -#: ../cache/locales.php:450 ../cache/locales.php:456 -msgid "Is calling you" -msgstr "" - -#: ../cache/locales.php:457 -msgid "You don't have javascript enabled. Good luck with that." -msgstr "" - -#: ../cache/locales.php:458 -msgid "" -"Movim is a kickass distributed social networking platform that protect your " -"privacy an comes with a set of awesome features." -msgstr "" - -#: ../cache/locales.php:459 -msgid "Administration" -msgstr "" - -#: ../cache/locales.php:460 -msgid "Home" -msgstr "" - -#: ../cache/locales.php:461 -msgid "Discover" -msgstr "" - -#: ../cache/locales.php:462 -msgid "Explore" -msgstr "" - -#: ../cache/locales.php:463 -msgid "Account Creation" -msgstr "" - -#: ../cache/locales.php:464 +#: [hello]news [page]news msgid "News" msgstr "" -#: ../cache/locales.php:465 -msgid "Avatar" +#: [hello]news_page +msgid "Read all theses articles on the News page" msgstr "" -#: ../cache/locales.php:467 -msgid "Chats" +#: [hello]blog_title +msgid "Visit your public blog" msgstr "" -#: ../cache/locales.php:470 -msgid "Server" +#: [hello]blog_text +msgid "See your public posts and share them with all your contacts" msgstr "" -#: ../cache/locales.php:471 -msgid "Public Groups" +#: [hello]share_title +msgid "Universal share button" msgstr "" -#: ../cache/locales.php:472 -msgid "Viewer" +#: [hello]share_text +msgid "Bookmark or drag and drop the following button in your toolbar and use it on all the pages you want to share on Movim" msgstr "" -#: ../cache/locales.php:474 -msgid "Media" +#: [hello]share_button +msgid "Share on Movim" msgstr "" -#: ../cache/locales.php:475 -msgid "Blog" +#: [help]faq +msgid "Frequently Asked Questions" msgstr "" -#: ../cache/locales.php:476 -msgid "About" +#: [banner]title +msgid "What do the little banners refer to ?" msgstr "" -#: ../cache/locales.php:477 -msgid "Login" +#: [banner]info1 +msgid "Thanks to these five little banners, you can quickly identitfy the level of confdentiality applied to the information you provide." msgstr "" -#: ../cache/locales.php:479 -msgid "Feed" +#: [banner]white +msgid "White, only you can see the information" msgstr "" -#: ../cache/locales.php:481 -msgid "Gallery" +#: [banner]green +msgid "Green, you have chosen some contacts who can see your information" msgstr "" -#: ../cache/locales.php:483 -msgid "Visio-conference" +#: [banner]orange +msgid "Orange, all your contact list can see your information" msgstr "" -#: ../cache/locales.php:484 -msgid "Pods" +#: [banner]red +msgid "Red, everybody in the XMPP network can see your information" msgstr "" -#: ../cache/locales.php:485 -msgid "Share" +#: [banner]black +msgid "Black, the whole Internet can see your information" msgstr "" -#: ../cache/locales.php:486 -msgid "Room" +#: [wiki]question +msgid "Looking for some documentation ?" msgstr "" -#: ../cache/locales.php:487 -#, php-format -msgid "Error: %s" +#: [wiki]button +msgid "Read the Wiki" msgstr "" -#: ../cache/locales.php:488 -#, php-format -msgid "Cannot load file '%s'" -msgstr "فایل '%s بارگزاری نمی شود" - -#: ../cache/locales.php:489 -#, php-format -msgid "Route error, please set all the parameters for the page %s" +#: [ml]question +msgid "Talk with us by email ?" msgstr "" -#: ../cache/locales.php:490 -#, php-format -msgid "Requested widget '%s' doesn't exist." +#: [ml]button +msgid "Join the Mailing List" msgstr "" -#: ../cache/locales.php:491 -#, php-format -msgid "Requested event '%s' not registered." +#: [chatroom]question +msgid "Chat with the team ?" msgstr "" -#: ../cache/locales.php:492 -msgid "Whoops!" +#: [chatroom]button +msgid "Join the Chatroom" msgstr "" -#: ../cache/locales.php:493 -msgid "It seem that you don't have any pictures here?" +#: [init]location +msgid "Location node created" msgstr "" -#: ../cache/locales.php:494 -msgid "You can try to upload a couple by going to the Media page" +#: [init]bookmark +msgid "Bookmark node created" msgstr "" -#: ../cache/locales.php:495 -#, php-format -msgid "%s - About" +#: [init]vcard4 +msgid "Profile node created" msgstr "" -#: ../cache/locales.php:496 -#, php-format -msgid "%s - Account" +#: [init]avatar +msgid "Avatar node created" msgstr "" -#: ../cache/locales.php:497 -#, php-format -msgid "%s - Administration Panel" +#: [init]subscriptions +msgid "Subscriptions node created" msgstr "" -#: ../cache/locales.php:498 -#, php-format -msgid "%s - Blog" +#: [init]microblog +msgid "Microblog node created" msgstr "" -#: ../cache/locales.php:499 -#, php-format -msgid "%s - Configuration" +#: [location]title +msgid "Location" msgstr "" -#: ../cache/locales.php:500 -#, php-format -msgid "%s - Discover" +#: [location]wrong_postition +msgid "Wrong position" msgstr "" -#: ../cache/locales.php:501 -#, php-format -msgid "%s - Explore" +#: [location]updated +msgid "Location updated" msgstr "" -#: ../cache/locales.php:502 -#, php-format -msgid "%s - Help Page" +#: [location]update +msgid "Update my position" msgstr "" -#: ../cache/locales.php:503 -#, php-format -msgid "%s - Login to Movim" +#: [login_anonymous]bad_username +msgid "Bad nickname (between 4 and 40 characters)" msgstr "" -#: ../cache/locales.php:504 -#, php-format -msgid "%s - Welcome to Movim" +#: [error]username +msgid "Wrong username" msgstr "" -#: ../cache/locales.php:505 -#, php-format -msgid "%s - Media" +#: [error]jid +msgid "Invalid JID" msgstr "" -#: ../cache/locales.php:506 -#, php-format -msgid "%s - News" +#: [error]empty_challenge +msgid "Empty Challenge from the server" msgstr "" -#: ../cache/locales.php:507 -#, php-format -msgid "%s - Group Configuration" +#: [error]dns +msgid "XMPP Domain error, your account is not a correct Jabber ID" msgstr "" -#: ../cache/locales.php:508 -#, php-format -msgid "%s - Group" +#: [error]data_missings +msgid "Some data are missing !" msgstr "" -#: ../cache/locales.php:509 -#, php-format -msgid "%s - 404" +#: [error]wrong_password +msgid "Wrong password" msgstr "" -#: ../cache/locales.php:510 -#, php-format -msgid "%s - Profile" +#: [error]internal +msgid "Internal server error" msgstr "" -#: ../cache/locales.php:511 -#, php-format -msgid "%s - Server" +#: [error]session +msgid "Session error" msgstr "" -#: ../cache/locales.php:512 -msgid "Validate" +#: [error]account_created +msgid "Account successfully created" msgstr "" -#: ../cache/locales.php:513 -msgid "Refresh" +#: [error]xmpp_unauthorized +msgctxt "[error]xmpp_unauthorized" +msgid "Your XMPP server is unauthorized" msgstr "" -#: ../cache/locales.php:514 -msgid "Add" +#: [error]mec_error +msgid "The server takes too much time to respond" msgstr "" -#: ../cache/locales.php:515 -msgid "Delete" +#: [error]too_old +msgid "Your web browser is too old to use with Movim." msgstr "" -#: ../cache/locales.php:516 -msgid "Remove" +#: [error]websocket +msgid "Movim cannot talk with the server, please try again later (Websocket connection error)" msgstr "" -#: ../cache/locales.php:517 -msgid "Cancel" +#: [error]impossible +msgid "Impossible login" msgstr "" -#: ../cache/locales.php:518 -msgid "Close" +#: [error]title +msgid "Oops!" msgstr "" -#: ../cache/locales.php:519 -msgid "Update" +#: [error]default [visio]unknown_error +msgid "Unknown error" msgstr "" -#: ../cache/locales.php:520 -msgid "Updating" +#: [error]login_format +msgid "Invalid username format" msgstr "" -#: ../cache/locales.php:521 +#: [error]password_format +msgid "Invalid password format" +msgstr "" + +#: [error]unauthorized +msgctxt "[error]unauthorized" +msgid "Your XMPP server is unauthorized" +msgstr "" + +#: [error]conflict +msgid "A Movim session is already open on an other device" +msgstr "" + +#: [error]wrong_account +msgid "Movim failed to authenticate. You entered wrong data" +msgstr "" + +#: [error]mechanism +msgid "Authentication mechanism not supported by Movim" +msgstr "" + +#: [error]fail_auth +msgid "The XMPP authentification failed" +msgstr "" + +#: [account]title [accounts]accounts_title +msgid "Accounts" +msgstr "" + +#: [form]username +msgid "My address" +msgstr "" + +#: [form]create_one +msgid "Create one !" +msgstr "" + +#: [form]another_account +msgid "Another account" +msgstr "" + +#: [form]no_account +msgid "No account yet ?" +msgstr "" + +#: [form]whitelist.info +msgid "You can login with accounts from theses servers" +msgstr "" + +#: [form]connected +msgid "Connected" +msgstr "" + +#: [form]population +msgid "Population" +msgstr "" + +#: [menu]empty_title +msgid "No news yet..." +msgstr "" + +#: [menu]empty +msgid "Welcome on your news feed, here you will see all the posts published by your contacts and in the groups you have subscribed." +msgstr "" + +#: [menu]refresh +msgid "Refreshing all the streams" +msgstr "" + +#: [menu]public +msgid "This post is public" +msgstr "" + +#: [affiliations]title +msgid "Manage your members" +msgstr "" + +#: [affiliations]get +msgid "Get the members" +msgstr "" + +#: [affiliations]saved +msgid "Affiliations saved" +msgstr "" + +#: [subscriptions]title +msgid "Manage your subscriptions" +msgstr "" + +#: [subscriptions]info +msgid "Manage the subscriptions" +msgstr "" + +#: [subscriptions]get +msgid "Get the subscriptions" +msgstr "" + +#: [subscriptions]saved +msgid "Subscriptions saved" +msgstr "" + +#: [notifs]title +msgid "Pending Invitations" +msgstr "" + +#: [notifs]wants_to_talk +msgid "%s wants to talk with you" +msgstr "" + +#: [notifs]manage +msgid "Manage" +msgstr "" + +#: [post]news_feed +msgid "News Feed" +msgstr "" + +#: [post]placeholder +msgid "Discover and register to the groups you are interested in" +msgstr "" + +#: [post]preview [page]preview +msgid "Preview" +msgstr "" + +#: [post]help [page]help +msgid "Help" +msgstr "" + +#: [post]help_more +msgid "More help" +msgstr "" + +#: [post]help_manual +msgid "Markdown syntax manual" +msgstr "" + +#: [post]title +msgid "Title" +msgstr "" + +#: [post]content +msgid "Content" +msgstr "" + +#: [post]link +msgid "Link" +msgstr "" + +#: [post]tags +msgid "Tags" +msgstr "" + +#: [post]valid_url [publish]valid_url +msgid "Please enter a valid url" +msgstr "" + +#: [post]no_content_preview [publish]no_content_preview +msgid "No content to preview" +msgstr "" + +#: [post]no_content [publish]no_content [post]empty +msgid "No content" +msgstr "" + +#: [post]published +msgid "Post published" +msgstr "" + +#: [post]deleted +msgid "Post deleted" +msgstr "" + +#: [post]gallery +msgid "This picture will be added to your gallery" +msgstr "" + +#: [post]hot +msgid "What's Hot" +msgstr "" + +#: [post]hot_text +msgid "Posts recently published in Groups that you are not subscribed (yet)" +msgstr "" + +#: [post]new [publish]new +msgid "New post" +msgstr "" + +#: [post]embed_tip +msgid "You can also use services like Imgur or Flickr to host your picture and paste the link here." +msgstr "" + +#: [post]repost +msgid "This is a re-post from %s" +msgstr "" + +#: [post]repost_profile +msgid "See %s profile" +msgstr "" + +#: [post]public +msgid "Publish this post publicly?" +msgstr "" + +#: [post]blog_add +msgid "Post published on your blog" +msgstr "" + +#: [post]blog_remove +msgid "Post removed from your blog" +msgstr "" + +#: [post]delete_title [post]delete +msgid "Delete this post" +msgstr "" + +#: [post]delete_text +msgid "You are going to delete this post, please confirm your action" +msgstr "" + +#: [post]comments_disabled +msgid "Comments disabled" +msgstr "" + +#: [post]comment_published +msgid "Comment published" +msgstr "" + +#: [status]disconnect +msgid "Disconnect" +msgstr "" + +#: [status]here +msgid "Your status here !" +msgstr "" + +#: [status]updated +msgid "Status updated" +msgstr "" + +#: [status]status +msgid "Status" +msgstr "" + +#: [status]presence +msgid "Presence" +msgstr "" + +#: [status]online +msgid "Online with Movim" +msgstr "" + +#: [publish]title +msgid "Publish" +msgstr "" + +#: [publish]attach +msgid "Add a file or a picture to your post" +msgstr "" + +#: [publish]no_publication +msgid "You cannot publish a post on this Group" +msgstr "" + +#: [publish]form_filled +msgid "Some fields have been filled in. Do you still want to go back and loose their content?" +msgstr "" + +#: [public_groups]shared +msgid "Shared" +msgstr "" + +#: [public_groups]added +msgid "%s has been added to your public groups" +msgstr "" + +#: [rooms]add +msgid "Add a chatroom" +msgstr "" + +#: [rooms]empty_text1 +msgid "You don't have any chatroom yet." +msgstr "" + +#: [rooms]empty_text2 +msgid "Add one by clicking on the add button in the header." +msgstr "" + +#: [chatrooms]title +msgid "Chatrooms" +msgstr "" + +#: [chatrooms]name_placeholder +msgid "My Favorite Room" +msgstr "" + +#: [chatrooms]users +msgid "Users in the room" +msgstr "" + +#: [chatrooms]bad_nickname +msgid "Please enter a correct nickname (2 to 40 characters)" +msgstr "" + +#: [room]anonymous_title +msgid "Public chatroom" +msgstr "" + +#: [room]no_room +msgid "Please provide a room address" +msgstr "" + +#: [room]anonymous_text1 +msgid "You are currently logued as an anonymous user." +msgstr "" + +#: [room]anonymous_text2 +msgid "You can join using your own account or create one on the login page by loging out using the cross in the top-right corner." +msgstr "" + +#: [room]anonymous_login +msgid "Login on %s" +msgstr "" + +#: [room]nick +msgid "Your nickname" +msgstr "" + +#: [roster]ungrouped +msgid "Ungrouped" +msgstr "" + +#: [roster]show_disconnected +msgid "Show disconnected contacts" +msgstr "" + +#: [roster]hide_disconnected +msgid "Hide disconnected contacts" +msgstr "" + +#: [roster]show_group +msgid "Show group %s" +msgstr "" + +#: [roster]hide_group +msgid "Hide group %s" +msgstr "" + +#: [roster]jid_error +msgid "Please enter a valid Jabber ID" +msgstr "" + +#: [roster]no_contacts_title +msgid "No contacts ?" +msgstr "" + +#: [roster]no_contacts_text +msgid "You can add one using the + button bellow" +msgstr "" + +#: [roster]show_hide +msgid "Show/Hide" +msgstr "" + +#: [roster]add_contact_info1 +msgid "Enter the Jabber ID of your contact." +msgstr "" + +#: [roster]add_contact_info2 +msgid "Press enter to validate." +msgstr "" + +#: [roster]jid +msgid "JID" +msgstr "" + +#: [roster]results +msgid "Results" +msgstr "" + +#: [roster]added +msgid "Contact added" +msgstr "" + +#: [roster]deleted +msgid "Contact deleted" +msgstr "" + +#: [roster]search +msgid "Search" +msgstr "" + +#: [share]error +msgid "This is not a valid url" +msgstr "" + +#: [share]success +msgid "Sharing the URL" +msgstr "" + +#: [statistics]title +msgid "Statistics" +msgstr "" + +#: [statistics]since +msgid "Since" +msgstr "" + +#: [statistics]sessions +msgid "Sessions" +msgstr "" + +#: [statistics]monthly_sub +msgid "Monthly Subscriptions" +msgstr "" + +#: [statistics]monthly_sub_cum +msgid "Monthly Subscriptions Cumulated" +msgstr "" + +#: [subscribe]info +msgid "Movim is a decentralized social network, before creating a new account you need to choose a server to register." +msgstr "" + +#: [subscribe]server_question +msgid "Your server here ?" +msgstr "" + +#: [subscribe]server_contact +msgid "Contact us to add yours to the officially supported servers list" +msgstr "" + +#: [feed]nope +msgid "No public feed for this contact" +msgstr "" + +#: [feed]nope_contact +msgid "No contact specified" +msgstr "" + +#: [upload]title +msgid "Upload a file" +msgstr "" + +#: [upload]choose +msgid "Choose a file to upload" +msgstr "" + +#: [vcard]title [page]profile +msgid "Profile" +msgstr "" + +#: [vcard]updated +msgid "Profile Updated" +msgstr "" + +#: [vcard]not_updated +msgid "Profile Not Updated" +msgstr "" + +#: [vcard]public +msgid "Your profile is now public" +msgstr "" + +#: [vcard]restricted +msgid "Your profile is now restricted" +msgstr "" + +#: [general]nickname +msgctxt "[general]nickname" +msgid "Nickname" +msgstr "" + +#: [accounts]twitter +msgid "Twitter" +msgstr "" + +#: [accounts]skype +msgid "Skype" +msgstr "" + +#: [accounts]yahoo +msgid "Yahoo" +msgstr "" + +#: [accounts]accounts_nickname +msgctxt "[accounts]accounts_nickname" +msgid "Nickname" +msgstr "" + +#: [accounts]accounts_yahoo +msgid "Yahoo Account" +msgstr "" + +#: [privacy]privacy_title +msgid "Privacy Level" +msgstr "" + +#: [privacy]privacy_question +msgid "Is this profile public ?" +msgstr "" + +#: [privacy]privacy_info +msgid "Please pay attention ! By making your profile public, all the information listed above will be available for all the Movim users and on the whole Internet." +msgstr "" + +#: [save]submit [button]submit msgid "Submit" msgstr "" -#: ../cache/locales.php:522 -msgid "Submitting" -msgstr "" - -#: ../cache/locales.php:523 +#: [save]reset [button]reset msgid "Reset" msgstr "" -#: ../cache/locales.php:524 +#: [visio]hung_up +msgid "Hung up" +msgstr "" + +#: [visio]busy +msgid "Your contact is busy" +msgstr "" + +#: [visio]declined +msgid "Declined" +msgstr "" + +#: [visio]calling +msgid "Is calling you" +msgstr "" + +#: [visio]call +msgid "Call" +msgstr "" + +#: [visio]hang_up +msgid "Hang up" +msgstr "" + +#: [visio]connection +msgid "Connection" +msgstr "" + +#: [global]no_js +msgid "You don't have javascript enabled. Good luck with that." +msgstr "" + +#: [global]description +msgid "Movim is a kickass distributed social networking platform that protect your privacy an comes with a set of awesome features." +msgstr "" + +#: [page]administration +msgid "Administration" +msgstr "" + +#: [page]home +msgid "Home" +msgstr "" + +#: [page]discover +msgid "Discover" +msgstr "" + +#: [page]explore +msgid "Explore" +msgstr "" + +#: [page]account_creation +msgid "Account Creation" +msgstr "" + +#: [page]avatar +msgid "Avatar" +msgstr "" + +#: [page]chats +msgid "Chats" +msgstr "" + +#: [page]server +msgid "Server" +msgstr "" + +#: [page]public_groups +msgid "Public Groups" +msgstr "" + +#: [page]viewer +msgid "Viewer" +msgstr "" + +#: [page]media +msgid "Media" +msgstr "" + +#: [page]blog +msgid "Blog" +msgstr "" + +#: [page]about +msgid "About" +msgstr "" + +#: [page]login +msgid "Login" +msgstr "" + +#: [page]feed +msgid "Feed" +msgstr "" + +#: [page]gallery +msgid "Gallery" +msgstr "" + +#: [page]visio +msgid "Visio-conference" +msgstr "" + +#: [page]pods +msgid "Pods" +msgstr "" + +#: [page]share +msgid "Share" +msgstr "" + +#: [page]room +msgid "Room" +msgstr "" + +#: [error]error +msgid "Error: %s" +msgstr "" + +#: [error]cannot_load_file +msgid "Cannot load file '%s'" +msgstr "فایل '%s بارگزاری نمی شود" + +#: [error]route +msgid "Route error, please set all the parameters for the page %s" +msgstr "" + +#: [error]widget_load_error +msgid "Requested widget '%s' doesn't exist." +msgstr "" + +#: [error]widget_call_error +msgid "Requested event '%s' not registered." +msgstr "" + +#: [error]whoops +msgid "Whoops!" +msgstr "" + +#: [error]media_not_found +msgid "It seem that you don't have any pictures here?" +msgstr "" + +#: [error]media_ask_upload +msgid "You can try to upload a couple by going to the Media page" +msgstr "" + +#: [title]about +msgid "%s - About" +msgstr "" + +#: [title]account +msgid "%s - Account" +msgstr "" + +#: [title]administration +msgid "%s - Administration Panel" +msgstr "" + +#: [title]blog +msgid "%s - Blog" +msgstr "" + +#: [title]configuration +msgid "%s - Configuration" +msgstr "" + +#: [title]discover +msgid "%s - Discover" +msgstr "" + +#: [title]explore +msgid "%s - Explore" +msgstr "" + +#: [title]help +msgid "%s - Help Page" +msgstr "" + +#: [title]login +msgid "%s - Login to Movim" +msgstr "" + +#: [title]main +msgid "%s - Welcome to Movim" +msgstr "" + +#: [title]media +msgid "%s - Media" +msgstr "" + +#: [title]news +msgid "%s - News" +msgstr "" + +#: [title]node_configuration +msgid "%s - Group Configuration" +msgstr "" + +#: [title]node +msgid "%s - Group" +msgstr "" + +#: [title]not_found +msgid "%s - 404" +msgstr "" + +#: [title]profile +msgid "%s - Profile" +msgstr "" + +#: [title]server +msgid "%s - Server" +msgstr "" + +#: [button]validate +msgid "Validate" +msgstr "" + +#: [button]refresh +msgid "Refresh" +msgstr "" + +#: [button]add +msgid "Add" +msgstr "" + +#: [button]delete +msgid "Delete" +msgstr "" + +#: [button]cancel +msgid "Cancel" +msgstr "" + +#: [button]close +msgid "Close" +msgstr "" + +#: [button]update +msgid "Update" +msgstr "" + +#: [button]updating +msgid "Updating" +msgstr "" + +#: [button]submitting +msgid "Submitting" +msgstr "" + +#: [button]register msgid "Register" msgstr "" -#: ../cache/locales.php:525 +#: [button]unregister msgid "Unregister" msgstr "" -#: ../cache/locales.php:526 +#: [button]save msgid "Save" msgstr "" -#: ../cache/locales.php:527 +#: [button]clear msgid "Clear" msgstr "" -#: ../cache/locales.php:528 +#: [button]upload msgid "Upload" msgstr "" -#: ../cache/locales.php:529 +#: [button]come_in msgid "Come in!" msgstr "" -#: ../cache/locales.php:530 +#: [button]connecting msgid "Connecting" msgstr "" -#: ../cache/locales.php:531 +#: [button]bool_yes msgid "Yes" msgstr "" -#: ../cache/locales.php:532 +#: [button]bool_no msgid "No" msgstr "" -#: ../cache/locales.php:534 +#: [button]return msgid "Return" msgstr "" -#: ../cache/locales.php:535 +#: [button]accept msgid "Accept" msgstr "" -#: ../cache/locales.php:536 +#: [button]refuse msgid "Refuse" msgstr "" -#: ../cache/locales.php:537 +#: [button]next msgid "Next" msgstr "" -#: ../cache/locales.php:538 +#: [button]previous msgid "Previous" msgstr "" -#: ../cache/locales.php:539 -#, php-format +#: [step]step msgid "Step %s" msgstr "" -#: ../cache/locales.php:542 +#: [day]title msgid "Day" msgstr "" -#: ../cache/locales.php:543 +#: [day]monday msgid "Monday" msgstr "دو‌شنبه" -#: ../cache/locales.php:544 +#: [day]tuesday msgid "Tuesday" msgstr "سه‌‌شنبه" -#: ../cache/locales.php:545 +#: [day]wednesday msgid "Wednesday" msgstr "چهار‌شنبه" -#: ../cache/locales.php:546 +#: [day]thursday msgid "Thursday" msgstr "پنج‌شنبه" -#: ../cache/locales.php:547 +#: [day]friday msgid "Friday" msgstr "جمعه" -#: ../cache/locales.php:548 +#: [day]saturday msgid "Saturday" msgstr "شنبه" -#: ../cache/locales.php:549 +#: [day]sunday msgid "Sunday" msgstr "" -#: ../cache/locales.php:550 ../cache/locales.php:559 +#: [gender]nil +msgctxt "[gender]nil" msgid "None" msgstr "" -#: ../cache/locales.php:551 +#: [gender]male msgid "Male" msgstr "" -#: ../cache/locales.php:552 +#: [gender]female msgid "Female" msgstr "" -#: ../cache/locales.php:553 +#: [gender]other msgid "Other" msgstr "" -#: ../cache/locales.php:554 +#: [client]bot msgid "Bot" msgstr "" -#: ../cache/locales.php:555 +#: [client]desktop msgid "Desktop" msgstr "" -#: ../cache/locales.php:556 +#: [client]phone msgid "Phone" msgstr "" -#: ../cache/locales.php:557 +#: [client]web msgid "Web" msgstr "" -#: ../cache/locales.php:558 +#: [client]registered msgid "Registered" msgstr "" -#: ../cache/locales.php:560 +#: [marital]nil +msgctxt "[marital]nil" +msgid "None" +msgstr "" + +#: [marital]single msgid "Single" msgstr "" -#: ../cache/locales.php:561 +#: [marital]relationship msgid "In a relationship" msgstr "" -#: ../cache/locales.php:562 +#: [marital]married msgid "Married" msgstr "" -#: ../cache/locales.php:563 +#: [marital]divorced msgid "Divorced" msgstr "" -#: ../cache/locales.php:564 +#: [marital]widowed msgid "Widowed" msgstr "" -#: ../cache/locales.php:565 +#: [marital]cohabiting msgid "Cohabiting" msgstr "" -#: ../cache/locales.php:566 +#: [marital]union msgid "Civil Union" msgstr "" -#: ../cache/locales.php:567 +#: [flag]white msgid "Not shared" msgstr "" -#: ../cache/locales.php:568 +#: [flag]green msgid "Shared with one contact" msgstr "" -#: ../cache/locales.php:569 +#: [flag]orange msgid "Shared with all contacts" msgstr "" -#: ../cache/locales.php:570 +#: [flag]red msgid "Shared with the XMPP network" msgstr "" -#: ../cache/locales.php:571 +#: [flag]black msgid "Shared with the whole Internet" msgstr "" -#: ../cache/locales.php:572 +#: [presence]online msgid "Online" msgstr "" -#: ../cache/locales.php:573 +#: [presence]away msgid "Away" msgstr "" -#: ../cache/locales.php:574 +#: [presence]dnd msgid "Do Not Disturb" msgstr "" -#: ../cache/locales.php:575 +#: [presence]xa msgid "Extended Away" msgstr "" -#: ../cache/locales.php:576 +#: [presence]offline msgid "Offline" msgstr "" -#: ../cache/locales.php:577 +#: [presence]error msgid "Error" msgstr "" -#: ../cache/locales.php:578 +#: [mood]afraid msgid "afraid" msgstr "" -#: ../cache/locales.php:579 +#: [mood]amazed msgid "amazed" msgstr "" -#: ../cache/locales.php:580 +#: [mood]amorous msgid "amorous" msgstr "" -#: ../cache/locales.php:581 +#: [mood]angry msgid "angry" msgstr "" -#: ../cache/locales.php:582 +#: [mood]annoyed msgid "annoyed" msgstr "" -#: ../cache/locales.php:583 +#: [mood]anxious msgid "anxious" msgstr "" -#: ../cache/locales.php:584 +#: [mood]aroused msgid "aroused" msgstr "" -#: ../cache/locales.php:585 +#: [mood]ashamed msgid "ashamed" msgstr "" -#: ../cache/locales.php:586 +#: [mood]bored msgid "bored" msgstr "" -#: ../cache/locales.php:587 +#: [mood]brave msgid "brave" msgstr "" -#: ../cache/locales.php:588 +#: [mood]calm msgid "calm" msgstr "" -#: ../cache/locales.php:589 +#: [mood]cautious msgid "cautious" msgstr "" -#: ../cache/locales.php:590 +#: [mood]cold msgid "cold" msgstr "" -#: ../cache/locales.php:591 +#: [mood]confident msgid "confident" msgstr "" -#: ../cache/locales.php:592 +#: [mood]confused msgid "confused" msgstr "" -#: ../cache/locales.php:593 +#: [mood]contemplative msgid "contemplative" msgstr "" -#: ../cache/locales.php:594 +#: [mood]contented msgid "contented" msgstr "" -#: ../cache/locales.php:595 +#: [mood]cranky msgid "cranky" msgstr "" -#: ../cache/locales.php:596 +#: [mood]crazy msgid "crazy" msgstr "" -#: ../cache/locales.php:597 +#: [mood]creative msgid "creative" msgstr "" -#: ../cache/locales.php:598 +#: [mood]curious msgid "curious" msgstr "" -#: ../cache/locales.php:599 +#: [mood]dejected msgid "dejected" msgstr "" -#: ../cache/locales.php:600 +#: [mood]depressed msgid "depressed" msgstr "" -#: ../cache/locales.php:601 +#: [mood]disappointed msgid "disappointed" msgstr "" -#: ../cache/locales.php:602 +#: [mood]disgusted msgid "disgusted" msgstr "" -#: ../cache/locales.php:603 +#: [mood]dismayed msgid "dismayed" msgstr "" -#: ../cache/locales.php:604 +#: [mood]distracted msgid "distracted" msgstr "" -#: ../cache/locales.php:605 +#: [mood]embarrassed msgid "embarrassed" msgstr "" -#: ../cache/locales.php:606 +#: [mood]envious msgid "envious" msgstr "" -#: ../cache/locales.php:607 +#: [mood]excited msgid "excited" msgstr "" -#: ../cache/locales.php:608 +#: [mood]flirtatious msgid "flirtatious" msgstr "" -#: ../cache/locales.php:609 +#: [mood]frustated msgid "frustated" msgstr "" -#: ../cache/locales.php:610 +#: [mood]grateful msgid "grateful" msgstr "" -#: ../cache/locales.php:611 +#: [mood]grieving msgid "grieving" msgstr "" -#: ../cache/locales.php:612 +#: [mood]grumpy msgid "grumpy" msgstr "" -#: ../cache/locales.php:613 +#: [mood]guilty msgid "guilty" msgstr "" -#: ../cache/locales.php:614 +#: [mood]happy msgid "happy" msgstr "" -#: ../cache/locales.php:615 +#: [mood]hopeful msgid "hopeful" msgstr "" -#: ../cache/locales.php:616 +#: [mood]hot msgid "hot" msgstr "" -#: ../cache/locales.php:617 +#: [mood]humbled msgid "humbled" msgstr "" -#: ../cache/locales.php:618 +#: [mood]humiliated msgid "humiliated" msgstr "" -#: ../cache/locales.php:619 +#: [mood]hungry msgid "hungry" msgstr "" -#: ../cache/locales.php:620 +#: [mood]hurt msgid "hurt" msgstr "" -#: ../cache/locales.php:621 +#: [mood]impressed msgid "impressed" msgstr "" -#: ../cache/locales.php:622 +#: [mood]in_awe msgid "in awe" msgstr "" -#: ../cache/locales.php:623 +#: [mood]in_love msgid "in love" msgstr "" -#: ../cache/locales.php:624 +#: [mood]indignant msgid "indignant" msgstr "" -#: ../cache/locales.php:625 +#: [mood]interested msgid "interested" msgstr "" -#: ../cache/locales.php:626 +#: [mood]intoxicated msgid "intoxicated" msgstr "" -#: ../cache/locales.php:627 +#: [mood]invincible msgid "invincible" msgstr "" -#: ../cache/locales.php:628 +#: [mood]jealous msgid "jealous" msgstr "" -#: ../cache/locales.php:629 +#: [mood]lonely msgid "lonely" msgstr "" -#: ../cache/locales.php:630 +#: [mood]lost msgid "lost" msgstr "" -#: ../cache/locales.php:631 +#: [mood]lucky msgid "lucky" msgstr "" -#: ../cache/locales.php:632 +#: [mood]mean msgid "mean" msgstr "" -#: ../cache/locales.php:633 +#: [mood]moody msgid "moody" msgstr "" -#: ../cache/locales.php:634 +#: [mood]nervous msgid "nervous" msgstr "" -#: ../cache/locales.php:635 +#: [mood]neutral msgid "neutral" msgstr "" -#: ../cache/locales.php:636 +#: [mood]offended msgid "offended" msgstr "" -#: ../cache/locales.php:637 +#: [mood]outraged msgid "outraged" msgstr "" -#: ../cache/locales.php:638 +#: [mood]playful msgid "playful" msgstr "" -#: ../cache/locales.php:639 +#: [mood]proud msgid "proud" msgstr "" -#: ../cache/locales.php:640 +#: [mood]relaxed msgid "relaxed" msgstr "" -#: ../cache/locales.php:641 +#: [mood]relieved msgid "relieved" msgstr "" -#: ../cache/locales.php:642 -msgid "remorseful" -msgstr "" - -#: ../cache/locales.php:643 +#: [mood]restless msgid "restless" msgstr "" -#: ../cache/locales.php:644 +#: [mood]sad msgid "sad" msgstr "" -#: ../cache/locales.php:645 +#: [mood]sarcastic msgid "sarcastic" msgstr "" -#: ../cache/locales.php:646 +#: [mood]satisfied msgid "satisfied" msgstr "" -#: ../cache/locales.php:647 +#: [mood]serious msgid "serious" msgstr "" -#: ../cache/locales.php:648 +#: [mood]shocked msgid "shocked" msgstr "" -#: ../cache/locales.php:649 +#: [mood]shy msgid "shy" msgstr "" -#: ../cache/locales.php:650 +#: [mood]sick msgid "sick" msgstr "" -#: ../cache/locales.php:651 +#: [mood]sleepy msgid "sleepy" msgstr "" -#: ../cache/locales.php:652 +#: [mood]spontaneous msgid "spontaneous" msgstr "" -#: ../cache/locales.php:653 +#: [mood]stressed msgid "stressed" msgstr "" -#: ../cache/locales.php:654 +#: [mood]strong msgid "strong" msgstr "" -#: ../cache/locales.php:655 +#: [mood]surprised msgid "surprised" msgstr "" -#: ../cache/locales.php:656 +#: [mood]thankful msgid "thankful" msgstr "" -#: ../cache/locales.php:657 +#: [mood]thirsty msgid "thirsty" msgstr "" -#: ../cache/locales.php:658 +#: [mood]tired msgid "tired" msgstr "" -#: ../cache/locales.php:659 +#: [mood]undefined msgid "undefined" msgstr "" -#: ../cache/locales.php:660 +#: [mood]weak msgid "weak" msgstr "" -#: ../cache/locales.php:661 +#: [mood]worried msgid "worried" msgstr "" -#: ../cache/locales.php:662 +#: [month]title msgid "Month" msgstr "" -#: ../cache/locales.php:663 +#: [month]january msgid "January" msgstr "ژانویه" -#: ../cache/locales.php:664 +#: [month]february msgid "February" msgstr "فوریه" -#: ../cache/locales.php:665 +#: [month]march msgid "March" msgstr "مارس" -#: ../cache/locales.php:666 +#: [month]april msgid "April" msgstr "آوریل" -#: ../cache/locales.php:667 +#: [month]may msgid "May" msgstr "می" -#: ../cache/locales.php:668 +#: [month]june msgid "June" msgstr "ژوئن" -#: ../cache/locales.php:669 +#: [month]july msgid "July" msgstr "جولای" -#: ../cache/locales.php:670 +#: [month]august msgid "August" msgstr "آگوست" -#: ../cache/locales.php:671 +#: [month]september msgid "September" msgstr "سپتامبر" -#: ../cache/locales.php:672 +#: [month]october msgid "October" msgstr "" -#: ../cache/locales.php:673 +#: [month]november msgid "November" msgstr "" -#: ../cache/locales.php:674 +#: [month]december msgid "December" msgstr "" -#: ../cache/locales.php:675 +#: [year]title msgid "Year" msgstr "" -#: ../cache/locales.php:676 +#: [date]today msgid "Today" msgstr "" -#: ../cache/locales.php:677 +#: [date]tomorrow msgid "Tomorrow" msgstr "" -#: ../cache/locales.php:678 +#: [date]yesterday msgid "Yesterday" msgstr "" -#: ../cache/locales.php:679 -#, php-format -msgid " %d days ago" +#: [date]ago +msgid "%d days ago" msgstr "" -#: ../cache/locales.php:680 +#: [date]day msgid "day" msgstr "" -#: ../cache/locales.php:682 +#: [post]whats_new msgid "What's new ?" msgstr "" -#: ../cache/locales.php:683 +#: [post]place msgid "Place" msgstr "" -#: ../cache/locales.php:684 +#: [post]by msgid "by" msgstr "" -#: ../cache/locales.php:685 +#: [post]geolocalisation msgid "Geolocalisation" msgstr "" -#: ../cache/locales.php:686 +#: [post]email msgid "email" msgstr "" -#: ../cache/locales.php:688 +#: [post]no_comments msgid "No comments yet" msgstr "" -#: ../cache/locales.php:689 +#: [post]no_comments_stream msgid "No comments stream" msgstr "" -#: ../cache/locales.php:690 +#: [post]no_load msgid "Your feed cannot be loaded." msgstr "" -#: ../cache/locales.php:691 +#: [post]older msgid "Get older posts" msgstr "" -#: ../cache/locales.php:692 -#, php-format +#: [post]new_items msgid "%s new items" msgstr "" -#: ../cache/locales.php:693 +#: [post]comment_error msgid "Comment publication error" msgstr "" -#: ../cache/locales.php:694 +#: [post]comments_older msgid "Show the older comments" msgstr "" -#: ../cache/locales.php:695 -msgid "Loading comments ..." +#: [post]comments_loading +msgid "Loading comments..." msgstr "" -#: ../cache/locales.php:696 +#: [post]comments_get msgid "Get the comments" msgstr "" -#: ../cache/locales.php:697 +#: [post]comment_add msgid "Add a comment" msgstr "" -#: ../cache/locales.php:698 +#: [post]share msgid "Share with" msgstr "" -#: ../cache/locales.php:699 +#: [post]share_everyone msgid "Everyone" msgstr "" -#: ../cache/locales.php:700 +#: [post]share_your_contacts msgid "Your contacts" msgstr "" -#: ../cache/locales.php:702 +#: [post]updated msgid "Updated" msgstr "" -#: ../cache/locales.php:703 +#: [post]content_not_found msgid "Content not found" msgstr "" -#: ../cache/locales.php:704 +#: [post]default_title msgid "Contact publication" msgstr "" -#: ../cache/locales.php:705 +#: [post]comments msgid "Comments" msgstr "" -#: ../cache/locales.php:706 +#: [api]error msgid "The API is not reachable, try again later" msgstr "" -#: ../cache/locales.php:707 +#: [field]type_here msgid "Type here" msgstr "" diff --git a/sources/locales/fi.po b/sources/locales/fi.po index bacfeb3..8b319d2 100644 --- a/sources/locales/fi.po +++ b/sources/locales/fi.po @@ -1,2612 +1,2736 @@ # Finnish translations for Movim package. # This file is distributed under the same license as the Movim package. # This file was translated from CodingTeam at . +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/About/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Account/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AccountNext/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AdHoc/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AdminDB/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AdminMain/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AdminTest/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Api/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Avatar/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Blog/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Bookmark/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Chat/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Chats/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/ConfigData/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Config/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Contact/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Group/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Groups/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Header/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Hello/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Help/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Init/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Location/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/LoginAnonymous/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Login/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Menu/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/NodeAffiliations/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/NodeSubscriptions/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Notifs/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Post/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Presence/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Publish/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/PubsubSubscriptionConfig/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Rooms/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Roster/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Share/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Statistics/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Subscribe/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Syndication/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Upload/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Vcard4/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/VisioExt/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Visio/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../locales/locales.ini msgid "" msgstr "" "Project-Id-Version: Movim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-06-08 22:06+0200\n" +"POT-Creation-Date: 2015-08-20 15:17+0200\n" "PO-Revision-Date: 2012-07-19 13:34+0000\n" "Last-Translator: Sampo Harjula \n" "Language-Team: LANGUAGE \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2015-06-18 21:08+0000\n" "X-Generator: Launchpad (build 17570)\n" -"Language: \n" -#: ../cache/locales.php:2 +#: [about]thanks msgid "Thanks" msgstr "" -#: ../cache/locales.php:3 +#: [about]developers msgid "Developers" msgstr "" -#: ../cache/locales.php:4 +#: [about]translators msgid "Translators" msgstr "" -#: ../cache/locales.php:5 +#: [about]software msgid "Software" msgstr "" -#: ../cache/locales.php:6 +#: [about]resources msgid "Resources" msgstr "" -#: ../cache/locales.php:7 ../cache/locales.php:83 ../cache/locales.php:85 +#: [about]api [schema]api [api]title msgid "API" msgstr "" -#: ../cache/locales.php:8 -msgid "" -"Movim is an XMPP-based communication platform. All the project, except the " -"following software and resources, is under" +#: [about]info +msgid "Movim is an XMPP-based communication platform. All the project, except the following software and resources, is under" msgstr "" -#: ../cache/locales.php:9 +#: [account]title msgid "Account" msgstr "" -#: ../cache/locales.php:10 -msgid "The password has been updated" -msgstr "" +#: [account]password_change_title +#, fuzzy +msgid "Change my password" +msgstr "Väärä salasana" -#: ../cache/locales.php:11 -msgid "Please provide a valid password (6 characters minimum)" -msgstr "" - -#: ../cache/locales.php:12 -msgid "The provided passwords are not the same" -msgstr "" - -#: ../cache/locales.php:13 -msgid "Delete my account" -msgstr "" - -#: ../cache/locales.php:14 -msgid "" -"You will delete your XMPP account and all the relative information linked to " -"it (profile, contacts and publications)." -msgstr "" - -#: ../cache/locales.php:15 -msgid "Are you sure that you want to delete it ?" -msgstr "" - -#: ../cache/locales.php:16 ../cache/locales.php:411 -msgid "Create a new account" -msgstr "Luo uusi tili" - -#: ../cache/locales.php:17 -msgid "No account creation form found on the server" -msgstr "" - -#: ../cache/locales.php:18 ../cache/locales.php:172 -msgid "on" -msgstr "" - -#: ../cache/locales.php:19 -msgid "Your acccount has been successfully registered" -msgstr "" - -#: ../cache/locales.php:20 -msgid "Loading" -msgstr "" - -#: ../cache/locales.php:21 -msgid "Not Acceptable" -msgstr "" - -#: ../cache/locales.php:22 -msgid "The registration system of this server is currently unavailable" -msgstr "" - -#: ../cache/locales.php:23 -msgid "" -"This server use an external system for the registration, please click on the " -"following URL." -msgstr "" - -#: ../cache/locales.php:24 -msgid "Actions" -msgstr "Toimenpiteet" - -#: ../cache/locales.php:25 ../cache/locales.php:82 -msgid "Database" -msgstr "" - -#: ../cache/locales.php:26 -msgid "Modl wasn't able to connect to the database" -msgstr "" - -#: ../cache/locales.php:27 -msgid "Movim is connected to the database" -msgstr "" - -#: ../cache/locales.php:28 -msgid "The database need to be updated" -msgstr "" - -#: ../cache/locales.php:29 -msgid "Movim database is up to date" -msgstr "" - -#: ../cache/locales.php:30 -msgid "Database Type" -msgstr "" - -#: ../cache/locales.php:31 ../cache/locales.php:50 ../cache/locales.php:540 -msgid "Username" -msgstr "" - -#: ../cache/locales.php:32 ../cache/locales.php:51 ../cache/locales.php:282 -#: ../cache/locales.php:541 +#: [account]password [db]password [credentials]password [form]password +#: [input]password msgid "Password" msgstr "Salasana" -#: ../cache/locales.php:33 +#: [account]password_confirmation +#, fuzzy +msgid "Password confirmation" +msgstr "%s - Konfigurointi" + +#: [account]password_changed +msgid "The password has been updated" +msgstr "" + +#: [account]password_not_valid +msgid "Please provide a valid password (6 characters minimum)" +msgstr "" + +#: [account]password_not_same +msgid "The provided passwords are not the same" +msgstr "" + +#: [account]delete_title +msgid "Delete my account" +msgstr "" + +#: [account]delete +#, fuzzy +msgid "Delete your account" +msgstr "Luo uusi tili" + +#: [account]delete_text +msgid "You will delete your XMPP account and all the relative information linked to it (profile, contacts and publications)." +msgstr "" + +#: [account]delete_text_confirm +msgid "Are you sure that you want to delete it ?" +msgstr "" + +#: [account]gateway_title +msgid "Gateway" +msgstr "" + +#: [create]title [subscribe]title +msgid "Create a new account" +msgstr "Luo uusi tili" + +#: [create]notfound +msgid "No account creation form found on the server" +msgstr "" + +#: [create]server_on +msgid "on" +msgstr "" + +#: [create]successfull +msgid "Your acccount has been successfully registered" +msgstr "" + +#: [create]loading +msgid "Loading" +msgstr "" + +#: [error]not_acceptable +msgid "Not Acceptable" +msgstr "" + +#: [error]service_unavailable +msgid "The registration system of this server is currently unavailable" +msgstr "" + +#: [oob]about +msgid "This server use an external system for the registration, please click on the following URL." +msgstr "" + +#: [adhoc]title +msgid "Actions" +msgstr "Toimenpiteet" + +#: [db]legend [schema]database +msgid "Database" +msgstr "" + +#: [db]connect_error +msgid "Modl wasn't able to connect to the database" +msgstr "" + +#: [db]connect_success +msgid "Movim is connected to the database" +msgstr "" + +#: [db]update +msgid "The database need to be updated" +msgstr "" + +#: [db]up_to_date +msgid "Movim database is up to date" +msgstr "" + +#: [db]type +msgid "Database Type" +msgstr "" + +#: [db]username [credentials]username [input]username +msgid "Username" +msgstr "" + +#: [db]host msgid "Host" msgstr "" -#: ../cache/locales.php:34 +#: [db]port msgid "Port" msgstr "" -#: ../cache/locales.php:35 -msgid "Database Name" -msgstr "" +#: [db]name +#, fuzzy +msgid "Database sName" +msgstr "Tietokanta tunnistettu" -#: ../cache/locales.php:36 +#: [admin]general msgid "General Settings" msgstr "" -#: ../cache/locales.php:37 +#: [general]theme msgid "Theme" msgstr "" -#: ../cache/locales.php:38 +#: [general]language msgid "Default language" msgstr "" -#: ../cache/locales.php:39 -msgid "Environment" -msgstr "" - -#: ../cache/locales.php:40 +#: [general]log_verbosity msgid "Log verbosity" msgstr "" -#: ../cache/locales.php:41 +#: [general]timezone msgid "Server Timezone" msgstr "" -#: ../cache/locales.php:42 +#: [general]limit msgid "User folder size limit (in bytes)" msgstr "" -#: ../cache/locales.php:43 +#: [websocket]title msgid "WebSocket Configuration" msgstr "" -#: ../cache/locales.php:44 +#: [websocket]info msgid "Enter here a valid WebSocket URI in the form" msgstr "" -#: ../cache/locales.php:45 +#: [websocket]label msgid "WebSocket URI" msgstr "" -#: ../cache/locales.php:46 -msgid "" -"If you change the URI, please restart the daemon to reload the configuration" +#: [websocket]save_info +msgid "If you change the URI, please restart the daemon to reload the configuration" msgstr "" -#: ../cache/locales.php:47 +#: [websocket]publics msgid "Public WebSockets" msgstr "" -#: ../cache/locales.php:48 +#: [credentials]title msgid "Administration Credential" msgstr "" -#: ../cache/locales.php:49 +#: [credentials]info msgid "Change the default credentials admin/password" msgstr "" -#: ../cache/locales.php:52 +#: [credentials]re_password msgid "Retype password" msgstr "" -#: ../cache/locales.php:53 +#: [whitelist]title msgid "Whitelist - XMPP Server" msgstr "" -#: ../cache/locales.php:54 -msgid "" -"If you want to specify a list of authorized XMPP servers on your Movim pod " -"and forbid the connection on all the others please put their domain name " -"here, with comma (ex: movim.eu,jabber.fr)" +#: [whitelist]info1 +msgid "If you want to specify a list of authorized XMPP servers on your Movim pod and forbid the connection on all the others please put their domain name here, with comma (ex: movim.eu,jabber.fr)" msgstr "" -#: ../cache/locales.php:55 -msgid "" -"Leave this field blank if you allow the access to all the XMPP accounts." +#: [whitelist]info2 +msgid "Leave this field blank if you allow the access to all the XMPP accounts." msgstr "" -#: ../cache/locales.php:56 +#: [whitelist]label msgid "List of whitelisted XMPP servers" msgstr "" -#: ../cache/locales.php:57 ../cache/locales.php:61 +#: [information]title +#, fuzzy +msgctxt "[information]title" msgid "Information Message" -msgstr "" +msgstr "Asiakastiedot" -#: ../cache/locales.php:58 +#: [information]description msgid "Description" msgstr "" -#: ../cache/locales.php:59 +#: [information]info1 msgid "This message will be displayed on the login page" msgstr "" -#: ../cache/locales.php:60 -msgid "Leave this field blank if you don't want to show any message." +#: [information]info2 +msgid "Leave this field blank if you dont want to show any message." msgstr "" -#: ../cache/locales.php:62 +#: [information]label +#, fuzzy +msgctxt "[information]label" +msgid "Information Message" +msgstr "Asiakastiedot" + +#: [log]empty msgid "Empty" msgstr "" -#: ../cache/locales.php:63 +#: [log]syslog msgid "Syslog" msgstr "" -#: ../cache/locales.php:64 +#: [log]syslog_files msgid "Syslog and files" msgstr "" -#: ../cache/locales.php:65 +#: [rewrite]title msgid "URL Rewriting" msgstr "" -#: ../cache/locales.php:66 +#: [rewrite]info msgid "The URL Rewriting can be enabled" msgstr "" -#: ../cache/locales.php:67 +#: [admin]compatibility msgid "General Overview" msgstr "" -#: ../cache/locales.php:68 -msgid "" -"Movim has found some issues or things that need to be fixed or improved" +#: [compatibility]info +msgid "Movim has found some issues or things that need to be fixed or improved" msgstr "" -#: ../cache/locales.php:69 -#, php-format +#: [compatibility]php1 msgid "Update your PHP-Version: %s" msgstr "" -#: ../cache/locales.php:70 +#: [compatibility]php2 msgid "Required: 5.3.0" msgstr "" -#: ../cache/locales.php:71 +#: [compatibility]curl msgid "Install the php5-curl library" msgstr "" -#: ../cache/locales.php:72 +#: [compatibility]imagick msgid "Install the php5-imagick library" msgstr "" -#: ../cache/locales.php:73 +#: [compatibility]gd msgid "Install the php5-gd library" msgstr "" -#: ../cache/locales.php:74 -msgid "Read and write rights for the webserver in Movim's root directory" -msgstr "" +#: [compatibility]rights +#, fuzzy +msgid "Read and write rights for the webserver in Movims root directory" +msgstr "kirjoitus- ja lukuoikeudet Movim-juurihakemistoon" -#: ../cache/locales.php:75 +#: [compatibility]rewrite msgid "The URL Rewriting support is currently disabled" msgstr "" -#: ../cache/locales.php:76 +#: [compatibility]db msgid "The database need to be updated, go to the database panel to fix this" msgstr "" -#: ../cache/locales.php:77 -msgid "" -"WebSocket connection error, check if the Movim Daemon is running and is " -"reacheable" +#: [compatibility]websocket +msgid "WebSocket connection error, check if the Movim Daemon is running and is reachable" msgstr "" -#: ../cache/locales.php:78 -msgid "" -"XMPP Websocket connection error, please check the validity of the URL given " -"in the General Configuration" +#: [compatibility]xmpp_websocket +msgid "XMPP Websocket connection error, please check the validity of the URL given in the General Configuration" msgstr "" -#: ../cache/locales.php:79 +#: [schema]browser msgid "Browser" msgstr "" -#: ../cache/locales.php:80 +#: [schema]movim msgid "Movim Core" msgstr "" -#: ../cache/locales.php:81 +#: [schema]daemon msgid "Movim Daemon" msgstr "" -#: ../cache/locales.php:84 +#: [schema]xmpp msgid "XMPP" msgstr "" -#: ../cache/locales.php:86 -#, php-format -msgid "" -"Here you can register your pod on the official %sMovim API%s and be listed " -"on %sthe pods page%s." +#: [api]info +msgid "Here you can register your pod on the official %sMovim API%s and be listed on %sthe pods page%s." msgstr "" -#: ../cache/locales.php:87 +#: [api]register msgid "Your pod is not registered on the API" msgstr "" -#: ../cache/locales.php:88 +#: [api]registered msgid "Your pod is registered on the API" msgstr "" -#: ../cache/locales.php:89 +#: [api]wait msgid "Your pod is not yet validated" msgstr "" -#: ../cache/locales.php:90 +#: [api]validated msgid "Your pod is validated" msgstr "" -#: ../cache/locales.php:91 -msgid "" -"You asked to be removed from the API, this request will be processed in a " -"couple of hours" +#: [api]unregister +msgid "You asked to be removed from the API, this request will be processed in a couple of hours" msgstr "" -#: ../cache/locales.php:92 ../cache/locales.php:147 +#: [api]conf_updated [config]updated msgid "Configuration updated" msgstr "" -#: ../cache/locales.php:93 +#: [avatar]file msgid "File" msgstr "" -#: ../cache/locales.php:94 +#: [avatar]use_it msgid "Use it" msgstr "" -#: ../cache/locales.php:95 +#: [avatar]webcam msgid "Webcam" msgstr "" -#: ../cache/locales.php:96 +#: [avatar]cheese msgid "Cheese !" msgstr "" -#: ../cache/locales.php:97 +#: [avatar]snapshot msgid "Take a webcam snapshot" msgstr "" -#: ../cache/locales.php:98 +#: [avatar]updated msgid "Avatar Updated" msgstr "" -#: ../cache/locales.php:99 +#: [avatar]not_updated msgid "Avatar Not Updated" msgstr "" -#: ../cache/locales.php:100 ../cache/locales.php:415 -#, php-format +#: [blog]title [feed]title msgid "%s's feed" msgstr "" -#: ../cache/locales.php:101 +#: [blog]empty msgid "This user has not posted anything right now" msgstr "" -#: ../cache/locales.php:102 +#: [title]conferences msgid "Conferences" msgstr "" -#: ../cache/locales.php:103 ../cache/locales.php:193 ../cache/locales.php:217 -#: ../cache/locales.php:468 +#: [title]groups [group]empty_title [menu]groups [page]groups msgid "Groups" msgstr "" -#: ../cache/locales.php:104 +#: [chatroom]add msgid "Add a new Chat Room" msgstr "" -#: ../cache/locales.php:105 ../cache/locales.php:368 +#: [chatroom]id [chatrooms]id msgid "Chat Room ID" msgstr "" -#: ../cache/locales.php:106 ../cache/locales.php:116 ../cache/locales.php:156 -#: ../cache/locales.php:361 ../cache/locales.php:369 ../cache/locales.php:424 +#: [chatroom]name +#, fuzzy +msgctxt "[chatroom]name" msgid "Name" msgstr "Nimi" -#: ../cache/locales.php:107 ../cache/locales.php:157 ../cache/locales.php:371 -#: ../cache/locales.php:425 +#: [chatroom]nickname [general]nickname [chatrooms]nickname msgid "Nickname" msgstr "Lempinimi" -#: ../cache/locales.php:108 +#: [chatroom]autojoin_label msgid "Do you want do join automaticaly this Chat Room ?" msgstr "" -#: ../cache/locales.php:109 ../cache/locales.php:372 +#: [chatroom]bad_id [chatrooms]bad_id msgid "Bad Chatroom ID" msgstr "" -#: ../cache/locales.php:110 ../cache/locales.php:373 +#: [chatroom]empty_name [chatrooms]empty_name msgid "Empty name" msgstr "" -#: ../cache/locales.php:111 ../cache/locales.php:380 +#: [bookmarks]updated msgid "Bookmarks updated" msgstr "" -#: ../cache/locales.php:112 -msgid "An error occured : " +#: [bookmarks]error +msgid "An error occured :" msgstr "" -#: ../cache/locales.php:113 +#: [bookmarks]configure msgid "Configure" msgstr "" -#: ../cache/locales.php:114 +#: [url]add msgid "Add a new URL" msgstr "" -#: ../cache/locales.php:115 +#: [url]url msgid "URL" msgstr "" -#: ../cache/locales.php:117 +#: [url]name +#, fuzzy +msgctxt "[url]name" +msgid "Name" +msgstr "Nimi" + +#: [message]published msgid "Message Published" msgstr "" -#: ../cache/locales.php:118 ../cache/locales.php:138 +#: [message]encrypted msgid "Encrypted message" msgstr "" -#: ../cache/locales.php:119 +#: [message]composing [chats]composing msgid "Composing..." msgstr "Lähetetään" -#: ../cache/locales.php:120 +#: [message]paused [chats]paused msgid "Paused..." msgstr "" -#: ../cache/locales.php:121 +#: [message]gone msgid "Contact gone" msgstr "" -#: ../cache/locales.php:122 -#, php-format +#: [chat]attention msgid "%s needs your attention" msgstr "" -#: ../cache/locales.php:123 +#: [chat]placeholder msgid "Your message here..." msgstr "" -#: ../cache/locales.php:124 +#: [chat]smileys msgid "Smileys" msgstr "" -#: ../cache/locales.php:125 ../cache/locales.php:139 +#: [chat]empty_title [button]chat msgid "Chat" msgstr "Chat" -#: ../cache/locales.php:126 +#: [chat]empty_text msgid "Discuss with your contacts" msgstr "" -#: ../cache/locales.php:127 -msgid "Members" -msgstr "" - -#: ../cache/locales.php:128 ../cache/locales.php:376 -msgid "Connected to the chatroom" -msgstr "" - -#: ../cache/locales.php:129 ../cache/locales.php:377 -msgid "Disconnected from the chatroom" -msgstr "" - -#: ../cache/locales.php:130 ../cache/locales.php:200 ../cache/locales.php:469 -msgid "Configuration" -msgstr "Asetukset" - -#: ../cache/locales.php:131 -msgid "Configuration saved" -msgstr "" - -#: ../cache/locales.php:132 -msgid "Subject" -msgstr "" - -#: ../cache/locales.php:133 -msgid "Subject changed" -msgstr "" - -#: ../cache/locales.php:134 -msgid "Open a new conversation by clicking on the plus button bellow" -msgstr "" - -#: ../cache/locales.php:135 -msgid "Chat with a contact" -msgstr "" - -#: ../cache/locales.php:136 +#: [chat]frequent [chats]frequent msgid "Frequent contacts" msgstr "" -#: ../cache/locales.php:137 +#: [chatroom]members +msgid "Members" +msgstr "" + +#: [chatroom]connected [chatrooms]connected +msgid "Connected to the chatroom" +msgstr "" + +#: [chatroom]disconnected [chatrooms]disconnected +msgid "Disconnected from the chatroom" +msgstr "" + +#: [chatroom]config [group]configuration [page]configuration +msgid "Configuration" +msgstr "Asetukset" + +#: [chatroom]config_saved +msgid "Configuration saved" +msgstr "" + +#: [chatroom]subject +msgid "Subject" +msgstr "" + +#: [chatroom]subject_changed +msgid "Subject changed" +msgstr "" + +#: [chats]empty_title +msgid "No chats yet..." +msgstr "" + +#: [chats]empty +msgid "Open a new conversation by clicking on the plus button bellow or visit the Contacts page." +msgstr "" + +#: [chats]add +msgid "Chat with a contact" +msgstr "" + +#: [chats]more msgid "Load more contacts" msgstr "" -#: ../cache/locales.php:140 -msgid "General" -msgstr "" - -#: ../cache/locales.php:141 -msgid "Language" -msgstr "Kieli" - -#: ../cache/locales.php:142 -msgid "Roster display" -msgstr "" - -#: ../cache/locales.php:143 -msgid "Show the offline contacts" -msgstr "" - -#: ../cache/locales.php:144 -msgid "Hide the offline contacts" -msgstr "" - -#: ../cache/locales.php:145 -msgid "Appearence" -msgstr "" - -#: ../cache/locales.php:146 -msgid "This configuration is shared wherever you are connected !" -msgstr "" - -#: ../cache/locales.php:148 -msgid "Notify on incoming message" -msgstr "" - -#: ../cache/locales.php:149 -msgid "Use desktop notifications" -msgstr "" - -#: ../cache/locales.php:150 +#: [title]data msgid "Data" msgstr "" -#: ../cache/locales.php:151 +#: [title]cache msgid "Cache" msgstr "" -#: ../cache/locales.php:152 ../cache/locales.php:218 ../cache/locales.php:466 +#: [title]contacts [menu]contacts [page]contacts msgid "Contacts" msgstr "" -#: ../cache/locales.php:153 ../cache/locales.php:480 +#: [title]posts [page]posts msgid "Posts" msgstr "" -#: ../cache/locales.php:154 +#: [title]messages msgid "Messages" msgstr "" -#: ../cache/locales.php:155 ../cache/locales.php:423 +#: [config]general +msgid "General" +msgstr "" + +#: [config]language +msgid "Language" +msgstr "Kieli" + +#: [config]roster +msgid "Roster display" +msgstr "" + +#: [config]roster_show +msgid "Show the offline contacts" +msgstr "" + +#: [config]roster_hide +msgid "Hide the offline contacts" +msgstr "" + +#: [config]appearence +msgid "Appearence" +msgstr "" + +#: [config]info +msgid "This configuration is shared wherever you are connected" +msgstr "" + +#: [notifications]message +msgid "Notify on incoming message" +msgstr "" + +#: [notifications]desktop +msgid "Use desktop notifications" +msgstr "" + +#: [general]legend [general]general_title msgid "General Informations" msgstr "Perustiedot" -#: ../cache/locales.php:158 ../cache/locales.php:427 +#: [general]name [public_groups]name [chatrooms]name +msgid "Name" +msgstr "Nimi" + +#: [general]date_of_birth msgid "Date of Birth" msgstr "Syntymäaika" -#: ../cache/locales.php:159 ../cache/locales.php:428 +#: [general]gender msgid "Gender" msgstr "Sukupuoli" -#: ../cache/locales.php:160 ../cache/locales.php:429 +#: [general]marital msgid "Marital Status" msgstr "Siviilisääty" -#: ../cache/locales.php:161 ../cache/locales.php:426 +#: [general]email msgid "Email" msgstr "" -#: ../cache/locales.php:162 ../cache/locales.php:430 +#: [general]website msgid "Website" msgstr "Nettisivu" -#: ../cache/locales.php:163 ../cache/locales.php:431 +#: [general]about msgid "About Me" msgstr "Tietoja minusta" -#: ../cache/locales.php:164 +#: [general]accounts msgid "Other Accounts" msgstr "" -#: ../cache/locales.php:165 +#: [general]tune msgid "Is Listening" msgstr "" -#: ../cache/locales.php:166 ../cache/locales.php:432 +#: [position]legend [position]position_title msgid "Geographic Position" msgstr "" -#: ../cache/locales.php:167 ../cache/locales.php:433 +#: [position]locality msgid "Locality" msgstr "" -#: ../cache/locales.php:168 ../cache/locales.php:434 +#: [position]country msgid "Country" msgstr "" -#: ../cache/locales.php:169 +#: [mood]title msgid "Mood" msgstr "" -#: ../cache/locales.php:170 +#: [mood]im msgid "I'm " msgstr "" -#: ../cache/locales.php:171 +#: [listen]title msgid "Listening" msgstr "" -#: ../cache/locales.php:173 +#: [last]title msgid "Last seen" msgstr "" -#: ../cache/locales.php:174 +#: [client]title msgid "Client Informations" msgstr "Asiakastiedot" -#: ../cache/locales.php:175 +#: [explore]last_registered msgid "Last registered" msgstr "" -#: ../cache/locales.php:176 +#: [explore]explore msgid "Find some new friends" msgstr "" -#: ../cache/locales.php:177 ../cache/locales.php:533 +#: [edit]title [button]edit msgid "Edit" msgstr "" -#: ../cache/locales.php:178 +#: [edit]alias msgid "Alias" msgstr "Alias" -#: ../cache/locales.php:179 +#: [edit]group msgid "Group" msgstr "" -#: ../cache/locales.php:180 ../cache/locales.php:400 +#: [edit]updated [roster]updated msgid "Contact updated" msgstr "" -#: ../cache/locales.php:181 +#: [delete]title msgid "Are you sure?" msgstr "" -#: ../cache/locales.php:182 -msgid "" -"You are going to delete one of your contacts, please confirm your action" +#: [delete]text +msgid "You are going to delete one of your contacts, please confirm your action" msgstr "" -#: ../cache/locales.php:183 -#, php-format +#: [age]years msgid "%s years" msgstr "" -#: ../cache/locales.php:184 +#: [blog]last msgid "Last public post" msgstr "" -#: ../cache/locales.php:185 +#: [subscription]to +#, fuzzy +msgid "You can see this contact status" +msgstr "Poista tämä kontakti" + +#: [subscription]to_button +msgid "Share my status" +msgstr "" + +#: [subscription]to_text +msgid "But this contact cannot see yours" +msgstr "" + +#: [subscription]from +msgid "You are not subscribed to this contact" +msgstr "" + +#: [subscription]from_button +msgid "Ask to subscribe" +msgstr "" + +#: [subscription]from_text +msgid "But this contact can still see if you are online" +msgstr "" + +#: [subscription]nil +msgid "No subscriptions" +msgstr "" + +#: [subscription]nil_button +msgid "Invite" +msgstr "" + +#: [subscription]nil_text +msgid "This contact is in your contact list but there is no subscriptions between the two accounts" +msgstr "" + +#: [group]subscribe msgid "Subscribe" msgstr "" -#: ../cache/locales.php:186 +#: [group]subscribed msgid "Subscribed" msgstr "" -#: ../cache/locales.php:187 +#: [group]unsubscribe msgid "Unsubscribe" msgstr "" -#: ../cache/locales.php:188 +#: [group]unsubscribe_text msgid "You are going to unsubscribe from this Group" msgstr "" -#: ../cache/locales.php:189 +#: [group]unsubscribed msgid "Unsubscribed" msgstr "" -#: ../cache/locales.php:190 +#: [group]share_label msgid "Make your membership to this group public to your friends" msgstr "" -#: ../cache/locales.php:191 +#: [group]label_label msgid "Give a label for this group" msgstr "" -#: ../cache/locales.php:192 +#: [group]sure msgid "Are you sure ?" msgstr "" -#: ../cache/locales.php:194 +#: [group]empty_text msgid "Discover, follow and share" msgstr "" -#: ../cache/locales.php:195 +#: [group]empty msgid "Something bad happened to this group" msgstr "" -#: ../cache/locales.php:196 +#: [group]config_saved msgid "Group configuration saved" msgstr "" -#: ../cache/locales.php:197 +#: [group]delete_title msgid "Delete the group" msgstr "" -#: ../cache/locales.php:198 -msgid "" -"You are going to delete the following group. Please confirm your action." +#: [group]delete_text +msgid "You are going to delete the following group. Please confirm your action." msgstr "" -#: ../cache/locales.php:199 -msgid "" -"It seems that this group doesn't exists anymore. Do you want to remove it " -"from your subscriptions?" +#: [group]delete_clean_text +msgid "It seems that this group doesn't exists anymore. Do you want to remove it from your subscriptions?" msgstr "" -#: ../cache/locales.php:201 ../cache/locales.php:408 +#: [group]counter +msgid "%s groups on this server" +msgstr "" + +#: [group]subscriptions [statistics]subscriptions msgid "Subscriptions" msgstr "" -#: ../cache/locales.php:202 ../cache/locales.php:290 +#: [group]servers +msgid "Groups servers" +msgstr "" + +#: [group]search_server +msgid "Search for a new server" +msgstr "" + +#: [group]help_info1 +msgid "Groups are the perfect way to share posts about topics that you like with all the other Movim's users." +msgstr "" + +#: [group]help_info2 +msgid "Choose a server and a Group and subscribe to it using the %s button in the header. You can also create a new one using the %s button." +msgstr "" + +#: [group]help_info3 +msgid "Done? You can now publish a new post in the Group by using the %s button." +msgstr "" + +#: [group]help_info4 +msgid "You will find a list of all your subscribed Groups in My Subscriptions and receive instantly all the new incoming posts in the %sNews%s page." +msgstr "" + +#: [groups]empty_title msgid "Hello" msgstr "" -#: ../cache/locales.php:203 ../cache/locales.php:225 ../cache/locales.php:291 +#: [groups]contact_post [hello]contact_post [menu]contact_post msgid "Contact post" msgstr "" -#: ../cache/locales.php:204 -msgid "" -"You don't have any subscriptions yet, select a group server above to start " -"exploring." +#: [groups]empty_text1 +msgid "You don't have any subscriptions yet, select a group server above to start exploring." msgstr "" -#: ../cache/locales.php:205 +#: [groups]empty_text2 msgid "Subscribe to your favorite feeds by bookmarking them." msgstr "" -#: ../cache/locales.php:206 +#: [groups]subscriptions msgid "My Subscriptions" msgstr "" -#: ../cache/locales.php:207 +#: [groups]add msgid "Create a new Group" msgstr "" -#: ../cache/locales.php:208 +#: [groups]name msgid "Group name" msgstr "" -#: ../cache/locales.php:209 +#: [groups]name_example msgid "My Little Pony - Fan Club" msgstr "" -#: ../cache/locales.php:210 +#: [groups]created msgid "Group created successfully" msgstr "" -#: ../cache/locales.php:211 +#: [groups]deleted msgid "Group deleted successfully" msgstr "" -#: ../cache/locales.php:212 +#: [groups]name_error msgid "Please provide a valid group name (4 characters minimum)" msgstr "" -#: ../cache/locales.php:213 +#: [groups]no_creation msgid "You cannot create a new Group on this server" msgstr "" -#: ../cache/locales.php:214 -#, php-format +#: [groups]sub msgid "%s subscribers" msgstr "" -#: ../cache/locales.php:215 -#, php-format +#: [groups]num msgid "%s posts" msgstr "" -#: ../cache/locales.php:216 +#: [groups]disco_error +#, fuzzy +msgid "This server doesn't exists" +msgstr "Tämä palvelin ylläpitää %s käyttäjätiliä" + +#: [menu]all msgid "All" msgstr "Kaikki" -#: ../cache/locales.php:219 +#: [menu]refresh msgid "Refresh all the streams" msgstr "" -#: ../cache/locales.php:220 ../cache/locales.php:402 -msgid "Search" +#: [roster]search +msgid "Search in your contacts" msgstr "" -#: ../cache/locales.php:221 +#: [hello]active_contacts +#, fuzzy +msgid "Active contacts" +msgstr "Toimenpiteet" + +#: [hello]chat msgid "Go on the Chat page" msgstr "" -#: ../cache/locales.php:222 -msgid "Read all theses articles on the News page" -msgstr "" - -#: ../cache/locales.php:223 -msgid "Visit your public blog" -msgstr "" - -#: ../cache/locales.php:224 -msgid "See your public posts and share them with all your contacts" -msgstr "" - -#: ../cache/locales.php:226 -msgid "Universal share button" -msgstr "" - -#: ../cache/locales.php:227 -msgid "" -"Bookmark or drag and drop the following button in your toolbar and use it on " -"all the pages you want to share on Movim" -msgstr "" - -#: ../cache/locales.php:228 -msgid "Share on Movim" -msgstr "" - -#: ../cache/locales.php:229 -msgid "Frequently Asked Questions" -msgstr "" - -#: ../cache/locales.php:230 -msgid "What do the little banners refer to ?" -msgstr "Mitä nämä pienet bannerit ovat?" - -#: ../cache/locales.php:231 -msgid "" -"Thanks to these five little banners, you can quickly identitfy the level of " -"confdentiality applied to the information you provide." -msgstr "" -"Kiitos näiden viiden pienen bannerin, näet yksityisyyden tason jakamallesi " -"tiedolle." - -#: ../cache/locales.php:232 -msgid "White, only you can see the information" -msgstr "Valkoinen, vain sinä voit tähdä tämän" - -#: ../cache/locales.php:233 -msgid "Green, you have chosen some contacts who can see your information" -msgstr "Vihreä, olet valinnut joitakin kontakteja jotka voivat nähdä tämän" - -#: ../cache/locales.php:234 -msgid "Orange, all your contact list can see your information" -msgstr "Oranssi, kaikki jotka ovat kontaktilistallasi voivat nähdä tämän" - -#: ../cache/locales.php:235 -msgid "Red, everybody in the XMPP network can see your information" -msgstr "Punainen, vain ne jotka ovat XMPP verkossa voivat nähdä tämän" - -#: ../cache/locales.php:236 -msgid "Black, the whole Internet can see your information" -msgstr "Musta, avoinna kaikille internet käyttäjille" - -#: ../cache/locales.php:237 -msgid "Looking for some documentation ?" -msgstr "" - -#: ../cache/locales.php:238 -msgid "Read the Wiki" -msgstr "" - -#: ../cache/locales.php:239 -msgid "Talk with us by email ?" -msgstr "" - -#: ../cache/locales.php:240 -msgid "Join the Mailing List" -msgstr "" - -#: ../cache/locales.php:241 -msgid "Chat with the team ?" -msgstr "" - -#: ../cache/locales.php:242 -msgid "Join the Chatroom" -msgstr "" - -#: ../cache/locales.php:243 -msgid "Location node created" -msgstr "" - -#: ../cache/locales.php:244 -msgid "Bookmark node created" -msgstr "" - -#: ../cache/locales.php:245 -msgid "Profile node created" -msgstr "" - -#: ../cache/locales.php:246 -msgid "Avatar node created" -msgstr "" - -#: ../cache/locales.php:247 -msgid "Subscriptions node created" -msgstr "" - -#: ../cache/locales.php:248 -msgid "Microblog node created" -msgstr "" - -#: ../cache/locales.php:249 -msgid "Location" -msgstr "" - -#: ../cache/locales.php:250 -msgid "Wrong position" -msgstr "" - -#: ../cache/locales.php:251 -msgid "Location updated" -msgstr "" - -#: ../cache/locales.php:252 -msgid "Update my position" -msgstr "" - -#: ../cache/locales.php:253 -msgid "Wrong username" -msgstr "Väärä käyttäjänimi" - -#: ../cache/locales.php:254 -msgid "Invalid JID" -msgstr "Väärä JID" - -#: ../cache/locales.php:255 -msgid "Empty Challenge from the server" -msgstr "" - -#: ../cache/locales.php:256 -msgid "XMPP Domain error, your account is not a correct Jabber ID" -msgstr "XMPP domain -virhe, käyttäjätilisi ei ollut oikea Jabber ID" - -#: ../cache/locales.php:257 -msgid "Some data are missing !" -msgstr "Joitain tietoja puuttuu" - -#: ../cache/locales.php:258 -msgid "Wrong password" -msgstr "Väärä salasana" - -#: ../cache/locales.php:259 -msgid "Internal server error" -msgstr "Sisäinen palvelinvirhe" - -#: ../cache/locales.php:260 -msgid "Session error" -msgstr "Istuntovirhe" - -#: ../cache/locales.php:261 -msgid "Account successfully created" -msgstr "Käyttäjätili luotiin onnistuneesti" - -#: ../cache/locales.php:262 ../cache/locales.php:271 -msgid "Your XMPP server is unauthorized" -msgstr "" - -#: ../cache/locales.php:263 -msgid "The server takes too much time to respond" -msgstr "" - -#: ../cache/locales.php:264 -msgid "Your web browser is too old to use with Movim." -msgstr "Selaimesi on liian vanha Movimille, lataa uudempi" - -#: ../cache/locales.php:265 -msgid "" -"Movim cannot talk with the server, please try again later (Websocket " -"connection error)" -msgstr "" - -#: ../cache/locales.php:266 -msgid "Impossible login" -msgstr "" - -#: ../cache/locales.php:267 -msgid "Oops!" -msgstr "" - -#: ../cache/locales.php:268 ../cache/locales.php:449 ../cache/locales.php:455 -msgid "Unknown error" -msgstr "Tuntematon virhe" - -#: ../cache/locales.php:269 -msgid "Invalid username format" -msgstr "" - -#: ../cache/locales.php:270 -msgid "Invalid password format" -msgstr "" - -#: ../cache/locales.php:272 -msgid "A Movim session is already open on an other device" -msgstr "" - -#: ../cache/locales.php:273 -msgid "Movim failed to authenticate. You entered wrong data" -msgstr "Movim ei pystynyt todentamaan, annoit väärät tiedot" - -#: ../cache/locales.php:274 -msgid "Authentication mechanism not supported by Movim" -msgstr "" - -#: ../cache/locales.php:275 -msgid "The XMPP authentification failed" -msgstr "XMPP autentikointi epäonnistui" - -#: ../cache/locales.php:276 -#, php-format -msgid "" -"You can login with Facebook (chat only) using %syour.id@chat.facebook.com%s " -"and your password" -msgstr "" - -#: ../cache/locales.php:277 -#, php-format -msgid "%sGmail accounts are also compatible%s but are not fully supported" -msgstr "" - -#: ../cache/locales.php:278 -msgid "You can login using your favorite Jabber account" -msgstr "" - -#: ../cache/locales.php:279 -msgid "or with our demonstration account" -msgstr "" - -#: ../cache/locales.php:280 ../cache/locales.php:435 -msgid "Accounts" -msgstr "" - -#: ../cache/locales.php:281 -msgid "My address" -msgstr "Oma osoite" - -#: ../cache/locales.php:283 -msgid "Create one !" -msgstr "" - -#: ../cache/locales.php:284 -msgid "No account yet ?" -msgstr "" - -#: ../cache/locales.php:285 -msgid "Another account" -msgstr "" - -#: ../cache/locales.php:286 -msgid "You can login with accounts from theses servers" -msgstr "" - -#: ../cache/locales.php:287 -msgid "Connected" -msgstr "" - -#: ../cache/locales.php:288 -msgid "Population" -msgstr "" - -#: ../cache/locales.php:289 -msgid "Bad nickname (between 4 and 40 characters)" -msgstr "" - -#: ../cache/locales.php:292 -msgid "" -"Welcome on your news feed, here you will see all the posts published in the " -"groups you have subscribed." -msgstr "" - -#: ../cache/locales.php:293 -msgid "Refreshing all the streams" -msgstr "" - -#: ../cache/locales.php:294 -msgid "This post is public" -msgstr "" - -#: ../cache/locales.php:295 -msgid "Manage your members" -msgstr "" - -#: ../cache/locales.php:296 -msgid "Get the members" -msgstr "" - -#: ../cache/locales.php:297 -msgid "Affiliations saved" -msgstr "" - -#: ../cache/locales.php:298 -msgid "Manage your subscriptions" -msgstr "" - -#: ../cache/locales.php:299 -msgid "Manage the subscriptions" -msgstr "" - -#: ../cache/locales.php:300 -msgid "Get the subscriptions" -msgstr "" - -#: ../cache/locales.php:301 -msgid "Subscriptions saved" -msgstr "" - -#: ../cache/locales.php:302 -msgid "Pending Invitations" -msgstr "" - -#: ../cache/locales.php:303 -#, php-format -msgid "%s wants to talk with you" -msgstr "" - -#: ../cache/locales.php:304 -msgid "Manage" -msgstr "" - -#: ../cache/locales.php:305 ../cache/locales.php:338 -msgid "News Feed" -msgstr "" - -#: ../cache/locales.php:306 ../cache/locales.php:339 -msgid "Discover and register to the groups you are interested in" -msgstr "" - -#: ../cache/locales.php:307 ../cache/locales.php:340 ../cache/locales.php:482 -msgid "Preview" -msgstr "" - -#: ../cache/locales.php:308 ../cache/locales.php:341 ../cache/locales.php:478 -msgid "Help" -msgstr "Ohje" - -#: ../cache/locales.php:309 ../cache/locales.php:342 -msgid "More help" -msgstr "" - -#: ../cache/locales.php:310 ../cache/locales.php:343 -msgid "Markdown syntax manual" -msgstr "" - -#: ../cache/locales.php:311 ../cache/locales.php:344 ../cache/locales.php:681 -msgid "Title" -msgstr "" - -#: ../cache/locales.php:312 ../cache/locales.php:345 -msgid "Content" -msgstr "" - -#: ../cache/locales.php:313 ../cache/locales.php:346 -msgid "Link" -msgstr "" - -#: ../cache/locales.php:314 ../cache/locales.php:347 -msgid "Tags" -msgstr "" - -#: ../cache/locales.php:315 ../cache/locales.php:348 -msgid "Please enter a valid url" -msgstr "" - -#: ../cache/locales.php:316 ../cache/locales.php:349 -msgid "No content to preview" -msgstr "" - -#: ../cache/locales.php:317 ../cache/locales.php:350 ../cache/locales.php:687 -msgid "No content" -msgstr "" - -#: ../cache/locales.php:318 ../cache/locales.php:351 -msgid "Post published" -msgstr "" - -#: ../cache/locales.php:319 ../cache/locales.php:352 -msgid "Post deleted" -msgstr "" - -#: ../cache/locales.php:320 ../cache/locales.php:353 -msgid "This picture will be added to your gallery" -msgstr "" - -#: ../cache/locales.php:321 ../cache/locales.php:354 -msgid "What's Hot" -msgstr "" - -#: ../cache/locales.php:322 ../cache/locales.php:355 -msgid "New post" -msgstr "" - -#: ../cache/locales.php:323 ../cache/locales.php:357 -msgid "" -"You can also use services like Imgur or Flickr to host your picture and " -"paste the link here." -msgstr "" - -#: ../cache/locales.php:324 -#, php-format -msgid "This is a re-post from %s" -msgstr "" - -#: ../cache/locales.php:325 -#, php-format -msgid "See %s profile" -msgstr "" - -#: ../cache/locales.php:326 -msgid "Publish this post on your public feed?" -msgstr "" - -#: ../cache/locales.php:327 -msgid "Post published on your blog" -msgstr "" - -#: ../cache/locales.php:328 -msgid "Post removed from your blog" -msgstr "" - -#: ../cache/locales.php:329 ../cache/locales.php:701 -msgid "Delete this post" -msgstr "" - -#: ../cache/locales.php:330 -msgid "You are going to delete this post, please confirm your action" -msgstr "" - -#: ../cache/locales.php:331 -msgid "Comments disabled" -msgstr "" - -#: ../cache/locales.php:332 -msgid "Comment published" -msgstr "" - -#: ../cache/locales.php:333 -msgid "Disconnect" -msgstr "" - -#: ../cache/locales.php:334 -msgid "Your status here !" -msgstr "" - -#: ../cache/locales.php:335 -msgid "Status updated" -msgstr "" - -#: ../cache/locales.php:336 -msgid "Status" -msgstr "" - -#: ../cache/locales.php:337 -msgid "Presence" -msgstr "" - -#: ../cache/locales.php:356 -msgid "Publish" -msgstr "" - -#: ../cache/locales.php:358 -msgid "You cannot publish a post on this Group" -msgstr "" - -#: ../cache/locales.php:359 -msgid "" -"Some fields have been filled in. Do you still want to go back and loose " -"their content?" -msgstr "" - -#: ../cache/locales.php:360 -msgid "Shared" -msgstr "" - -#: ../cache/locales.php:362 -#, php-format -msgid "%s has been added to your public groups" -msgstr "" - -#: ../cache/locales.php:363 -#, php-format -msgid "%s has been removed from your public groups" -msgstr "" - -#: ../cache/locales.php:364 -msgid "Add a chatroom" -msgstr "" - -#: ../cache/locales.php:365 -msgid "You don't have any chatroom yet." -msgstr "" - -#: ../cache/locales.php:366 -msgid "Add one by clicking on the add button in the header." -msgstr "" - -#: ../cache/locales.php:367 -msgid "Chatrooms" -msgstr "" - -#: ../cache/locales.php:370 -msgid "My Favorite Room" -msgstr "" - -#: ../cache/locales.php:374 -msgid "Remove a chatroom" -msgstr "" - -#: ../cache/locales.php:375 -msgid "" -"You are going to remove the following chatroom. Please confirm your action." -msgstr "" - -#: ../cache/locales.php:378 -msgid "Users in the room" -msgstr "" - -#: ../cache/locales.php:379 -msgid "Please enter a correct nickname (6 to 40 characters)" -msgstr "" - -#: ../cache/locales.php:381 -msgid "Public chatroom" -msgstr "" - -#: ../cache/locales.php:382 -msgid "Please provide a room address" -msgstr "" - -#: ../cache/locales.php:383 -msgid "You are currently logued as an anonymous user." -msgstr "" - -#: ../cache/locales.php:384 -msgid "" -"You can join using your own account or create one on the login page by " -"loging out using the cross in the top-right corner." -msgstr "" - -#: ../cache/locales.php:385 -#, php-format -msgid "Login on %s" -msgstr "" - -#: ../cache/locales.php:386 -msgid "Your nickname" -msgstr "" - -#: ../cache/locales.php:387 -msgid "Ungrouped" -msgstr "Ryhmittämätön" - -#: ../cache/locales.php:388 -msgid "Show disconnected contacts" -msgstr "" - -#: ../cache/locales.php:389 -msgid "Hide disconnected contacts" -msgstr "" - -#: ../cache/locales.php:390 -#, php-format -msgid "Show group %s" -msgstr "" - -#: ../cache/locales.php:391 -#, php-format -msgid "Hide group %s" -msgstr "" - -#: ../cache/locales.php:392 -msgid "Please enter a valid Jabber ID" -msgstr "" - -#: ../cache/locales.php:393 -msgid "" -"No contacts ? You can add one using the + button bellow or going to the " -"Explore page" -msgstr "" - -#: ../cache/locales.php:394 -msgid "Show/Hide" -msgstr "" - -#: ../cache/locales.php:395 -msgid "Enter the Jabber ID of your contact." -msgstr "" - -#: ../cache/locales.php:396 -msgid "Press enter to validate." -msgstr "" - -#: ../cache/locales.php:397 -msgid "JID" -msgstr "" - -#: ../cache/locales.php:398 -msgid "Results" -msgstr "" - -#: ../cache/locales.php:399 -msgid "Contact added" -msgstr "" - -#: ../cache/locales.php:401 -msgid "Contact deleted" -msgstr "" - -#: ../cache/locales.php:403 -msgid "This is not a valid url" -msgstr "" - -#: ../cache/locales.php:404 -msgid "Sharing the URL" -msgstr "" - -#: ../cache/locales.php:405 -msgid "Statistics" -msgstr "" - -#: ../cache/locales.php:406 -msgid "Since" -msgstr "" - -#: ../cache/locales.php:407 -msgid "Sessions" -msgstr "" - -#: ../cache/locales.php:409 -msgid "Monthly Subscriptions" -msgstr "" - -#: ../cache/locales.php:410 -msgid "Monthly Subscriptions Cumulated" -msgstr "" - -#: ../cache/locales.php:412 -msgid "" -"Movim is a decentralized social network, before creating a new account you " -"need to choose a server to register." -msgstr "" - -#: ../cache/locales.php:413 -msgid "Your server here ?" -msgstr "" - -#: ../cache/locales.php:414 -msgid "Contact us to add yours to the officially supported servers list" -msgstr "" - -#: ../cache/locales.php:416 -msgid "No public feed for this contact" -msgstr "" - -#: ../cache/locales.php:417 -msgid "No contact specified" -msgstr "" - -#: ../cache/locales.php:418 ../cache/locales.php:473 -msgid "Profile" -msgstr "Profiili" - -#: ../cache/locales.php:419 -msgid "Profile Updated" -msgstr "" - -#: ../cache/locales.php:420 -msgid "Profile Not Updated" -msgstr "" - -#: ../cache/locales.php:421 -msgid "Your profile is now public" -msgstr "" - -#: ../cache/locales.php:422 -msgid "Your profile is now restricted" -msgstr "" - -#: ../cache/locales.php:436 -msgid "Twitter" -msgstr "" - -#: ../cache/locales.php:437 -msgid "Skype" -msgstr "" - -#: ../cache/locales.php:438 -msgid "Yahoo" -msgstr "" - -#: ../cache/locales.php:439 -msgid "Privacy Level" -msgstr "" - -#: ../cache/locales.php:440 -msgid "Is this profile public ?" -msgstr "" - -#: ../cache/locales.php:441 -msgid "" -"Please pay attention ! By making your profile public, all the information " -"listed above will be available for all the Movim users and on the whole " -"Internet." -msgstr "" - -#: ../cache/locales.php:442 -msgid "Call" -msgstr "" - -#: ../cache/locales.php:443 -msgid "Hang up" -msgstr "" - -#: ../cache/locales.php:444 -msgid "Connection" -msgstr "" - -#: ../cache/locales.php:445 ../cache/locales.php:451 -msgid "Hung up" -msgstr "" - -#: ../cache/locales.php:446 ../cache/locales.php:452 -msgid "Your contact is busy" -msgstr "" - -#: ../cache/locales.php:447 ../cache/locales.php:453 -msgid "Declined" -msgstr "" - -#: ../cache/locales.php:448 ../cache/locales.php:454 -msgid "Remote application incompatible" -msgstr "" - -#: ../cache/locales.php:450 ../cache/locales.php:456 -msgid "Is calling you" -msgstr "" - -#: ../cache/locales.php:457 -msgid "You don't have javascript enabled. Good luck with that." -msgstr "" - -#: ../cache/locales.php:458 -msgid "" -"Movim is a kickass distributed social networking platform that protect your " -"privacy an comes with a set of awesome features." -msgstr "" - -#: ../cache/locales.php:459 -msgid "Administration" -msgstr "" - -#: ../cache/locales.php:460 -msgid "Home" -msgstr "Etusivu" - -#: ../cache/locales.php:461 -msgid "Discover" -msgstr "" - -#: ../cache/locales.php:462 -msgid "Explore" -msgstr "" - -#: ../cache/locales.php:463 -msgid "Account Creation" -msgstr "Käyttäjätilin luominen" - -#: ../cache/locales.php:464 +#: [hello]news [page]news msgid "News" msgstr "" -#: ../cache/locales.php:465 -msgid "Avatar" -msgstr "Avatar" - -#: ../cache/locales.php:467 -msgid "Chats" +#: [hello]news_page +msgid "Read all theses articles on the News page" msgstr "" -#: ../cache/locales.php:470 -msgid "Server" +#: [hello]blog_title +msgid "Visit your public blog" msgstr "" -#: ../cache/locales.php:471 -msgid "Public Groups" +#: [hello]blog_text +msgid "See your public posts and share them with all your contacts" msgstr "" -#: ../cache/locales.php:472 -msgid "Viewer" +#: [hello]share_title +msgid "Universal share button" msgstr "" -#: ../cache/locales.php:474 -msgid "Media" +#: [hello]share_text +msgid "Bookmark or drag and drop the following button in your toolbar and use it on all the pages you want to share on Movim" msgstr "" -#: ../cache/locales.php:475 -msgid "Blog" +#: [hello]share_button +msgid "Share on Movim" msgstr "" -#: ../cache/locales.php:476 -msgid "About" +#: [help]faq +msgid "Frequently Asked Questions" msgstr "" -#: ../cache/locales.php:477 -msgid "Login" +#: [banner]title +msgid "What do the little banners refer to ?" +msgstr "Mitä nämä pienet bannerit ovat?" + +#: [banner]info1 +msgid "Thanks to these five little banners, you can quickly identitfy the level of confdentiality applied to the information you provide." +msgstr "Kiitos näiden viiden pienen bannerin, näet yksityisyyden tason jakamallesi tiedolle." + +#: [banner]white +msgid "White, only you can see the information" +msgstr "Valkoinen, vain sinä voit tähdä tämän" + +#: [banner]green +msgid "Green, you have chosen some contacts who can see your information" +msgstr "Vihreä, olet valinnut joitakin kontakteja jotka voivat nähdä tämän" + +#: [banner]orange +msgid "Orange, all your contact list can see your information" +msgstr "Oranssi, kaikki jotka ovat kontaktilistallasi voivat nähdä tämän" + +#: [banner]red +msgid "Red, everybody in the XMPP network can see your information" +msgstr "Punainen, vain ne jotka ovat XMPP verkossa voivat nähdä tämän" + +#: [banner]black +msgid "Black, the whole Internet can see your information" +msgstr "Musta, avoinna kaikille internet käyttäjille" + +#: [wiki]question +msgid "Looking for some documentation ?" msgstr "" -#: ../cache/locales.php:479 -msgid "Feed" -msgstr "Syöte" - -#: ../cache/locales.php:481 -msgid "Gallery" +#: [wiki]button +msgid "Read the Wiki" msgstr "" -#: ../cache/locales.php:483 -msgid "Visio-conference" +#: [ml]question +msgid "Talk with us by email ?" msgstr "" -#: ../cache/locales.php:484 -msgid "Pods" +#: [ml]button +msgid "Join the Mailing List" msgstr "" -#: ../cache/locales.php:485 -msgid "Share" +#: [chatroom]question +msgid "Chat with the team ?" msgstr "" -#: ../cache/locales.php:486 -msgid "Room" +#: [chatroom]button +msgid "Join the Chatroom" msgstr "" -#: ../cache/locales.php:487 -#, php-format -msgid "Error: %s" -msgstr "Virhe: %s" - -#: ../cache/locales.php:488 -#, php-format -msgid "Cannot load file '%s'" -msgstr "Ei voi ladata tiedostoa '%s'" - -#: ../cache/locales.php:489 -#, php-format -msgid "Route error, please set all the parameters for the page %s" +#: [init]location +msgid "Location node created" msgstr "" -#: ../cache/locales.php:490 -#, php-format -msgid "Requested widget '%s' doesn't exist." +#: [init]bookmark +msgid "Bookmark node created" msgstr "" -#: ../cache/locales.php:491 -#, php-format -msgid "Requested event '%s' not registered." +#: [init]vcard4 +msgid "Profile node created" msgstr "" -#: ../cache/locales.php:492 -msgid "Whoops!" +#: [init]avatar +msgid "Avatar node created" msgstr "" -#: ../cache/locales.php:493 -msgid "It seem that you don't have any pictures here?" +#: [init]subscriptions +msgid "Subscriptions node created" msgstr "" -#: ../cache/locales.php:494 -msgid "You can try to upload a couple by going to the Media page" +#: [init]microblog +msgid "Microblog node created" msgstr "" -#: ../cache/locales.php:495 -#, php-format -msgid "%s - About" +#: [location]title +msgid "Location" msgstr "" -#: ../cache/locales.php:496 -#, php-format -msgid "%s - Account" +#: [location]wrong_postition +msgid "Wrong position" msgstr "" -#: ../cache/locales.php:497 -#, php-format -msgid "%s - Administration Panel" +#: [location]updated +msgid "Location updated" msgstr "" -#: ../cache/locales.php:498 -#, php-format -msgid "%s - Blog" +#: [location]update +msgid "Update my position" msgstr "" -#: ../cache/locales.php:499 -#, php-format -msgid "%s - Configuration" -msgstr "%s - Konfigurointi" - -#: ../cache/locales.php:500 -#, php-format -msgid "%s - Discover" +#: [login_anonymous]bad_username +msgid "Bad nickname (between 4 and 40 characters)" msgstr "" -#: ../cache/locales.php:501 -#, php-format -msgid "%s - Explore" +#: [error]username +msgid "Wrong username" +msgstr "Väärä käyttäjänimi" + +#: [error]jid +msgid "Invalid JID" +msgstr "Väärä JID" + +#: [error]empty_challenge +msgid "Empty Challenge from the server" msgstr "" -#: ../cache/locales.php:502 -#, php-format -msgid "%s - Help Page" -msgstr "%s - Ohjesivu" +#: [error]dns +msgid "XMPP Domain error, your account is not a correct Jabber ID" +msgstr "XMPP domain -virhe, käyttäjätilisi ei ollut oikea Jabber ID" -#: ../cache/locales.php:503 -#, php-format -msgid "%s - Login to Movim" -msgstr "%s - Kirjaudu Movimiin" +#: [error]data_missings +msgid "Some data are missing !" +msgstr "Joitain tietoja puuttuu" -#: ../cache/locales.php:504 -#, php-format -msgid "%s - Welcome to Movim" -msgstr "%s - Tervetuloa käyttämään Movimia" +#: [error]wrong_password +msgid "Wrong password" +msgstr "Väärä salasana" -#: ../cache/locales.php:505 -#, php-format -msgid "%s - Media" +#: [error]internal +msgid "Internal server error" +msgstr "Sisäinen palvelinvirhe" + +#: [error]session +msgid "Session error" +msgstr "Istuntovirhe" + +#: [error]account_created +msgid "Account successfully created" +msgstr "Käyttäjätili luotiin onnistuneesti" + +#: [error]xmpp_unauthorized +msgctxt "[error]xmpp_unauthorized" +msgid "Your XMPP server is unauthorized" msgstr "" -#: ../cache/locales.php:506 -#, php-format -msgid "%s - News" +#: [error]mec_error +msgid "The server takes too much time to respond" msgstr "" -#: ../cache/locales.php:507 -#, php-format -msgid "%s - Group Configuration" +#: [error]too_old +msgid "Your web browser is too old to use with Movim." +msgstr "Selaimesi on liian vanha Movimille, lataa uudempi" + +#: [error]websocket +msgid "Movim cannot talk with the server, please try again later (Websocket connection error)" msgstr "" -#: ../cache/locales.php:508 -#, php-format -msgid "%s - Group" +#: [error]impossible +msgid "Impossible login" msgstr "" -#: ../cache/locales.php:509 -#, php-format -msgid "%s - 404" +#: [error]title +msgid "Oops!" msgstr "" -#: ../cache/locales.php:510 -#, php-format -msgid "%s - Profile" -msgstr "%s - Profiili" +#: [error]default [visio]unknown_error +msgid "Unknown error" +msgstr "Tuntematon virhe" -#: ../cache/locales.php:511 -#, php-format -msgid "%s - Server" +#: [error]login_format +msgid "Invalid username format" msgstr "" -#: ../cache/locales.php:512 -msgid "Validate" +#: [error]password_format +msgid "Invalid password format" msgstr "" -#: ../cache/locales.php:513 -msgid "Refresh" +#: [error]unauthorized +msgctxt "[error]unauthorized" +msgid "Your XMPP server is unauthorized" msgstr "" -#: ../cache/locales.php:514 -msgid "Add" -msgstr "Lisää uusi" - -#: ../cache/locales.php:515 -msgid "Delete" +#: [error]conflict +msgid "A Movim session is already open on an other device" msgstr "" -#: ../cache/locales.php:516 -msgid "Remove" +#: [error]wrong_account +msgid "Movim failed to authenticate. You entered wrong data" +msgstr "Movim ei pystynyt todentamaan, annoit väärät tiedot" + +#: [error]mechanism +msgid "Authentication mechanism not supported by Movim" msgstr "" -#: ../cache/locales.php:517 -msgid "Cancel" -msgstr "Peruuta" +#: [error]fail_auth +msgid "The XMPP authentification failed" +msgstr "XMPP autentikointi epäonnistui" -#: ../cache/locales.php:518 -msgid "Close" +#: [account]title [accounts]accounts_title +msgid "Accounts" msgstr "" -#: ../cache/locales.php:519 -msgid "Update" +#: [form]username +msgid "My address" +msgstr "Oma osoite" + +#: [form]create_one +msgid "Create one !" msgstr "" -#: ../cache/locales.php:520 -msgid "Updating" +#: [form]another_account +msgid "Another account" msgstr "" -#: ../cache/locales.php:521 +#: [form]no_account +msgid "No account yet ?" +msgstr "" + +#: [form]whitelist.info +msgid "You can login with accounts from theses servers" +msgstr "" + +#: [form]connected +msgid "Connected" +msgstr "" + +#: [form]population +msgid "Population" +msgstr "" + +#: [menu]empty_title +msgid "No news yet..." +msgstr "" + +#: [menu]empty +msgid "Welcome on your news feed, here you will see all the posts published by your contacts and in the groups you have subscribed." +msgstr "" + +#: [menu]refresh +msgid "Refreshing all the streams" +msgstr "" + +#: [menu]public +msgid "This post is public" +msgstr "" + +#: [affiliations]title +msgid "Manage your members" +msgstr "" + +#: [affiliations]get +msgid "Get the members" +msgstr "" + +#: [affiliations]saved +msgid "Affiliations saved" +msgstr "" + +#: [subscriptions]title +msgid "Manage your subscriptions" +msgstr "" + +#: [subscriptions]info +msgid "Manage the subscriptions" +msgstr "" + +#: [subscriptions]get +msgid "Get the subscriptions" +msgstr "" + +#: [subscriptions]saved +msgid "Subscriptions saved" +msgstr "" + +#: [notifs]title +msgid "Pending Invitations" +msgstr "" + +#: [notifs]wants_to_talk +msgid "%s wants to talk with you" +msgstr "" + +#: [notifs]manage +msgid "Manage" +msgstr "" + +#: [post]news_feed +msgid "News Feed" +msgstr "" + +#: [post]placeholder +msgid "Discover and register to the groups you are interested in" +msgstr "" + +#: [post]preview [page]preview +msgid "Preview" +msgstr "" + +#: [post]help [page]help +msgid "Help" +msgstr "Ohje" + +#: [post]help_more +msgid "More help" +msgstr "" + +#: [post]help_manual +msgid "Markdown syntax manual" +msgstr "" + +#: [post]title +msgid "Title" +msgstr "" + +#: [post]content +msgid "Content" +msgstr "" + +#: [post]link +msgid "Link" +msgstr "" + +#: [post]tags +msgid "Tags" +msgstr "" + +#: [post]valid_url [publish]valid_url +msgid "Please enter a valid url" +msgstr "" + +#: [post]no_content_preview [publish]no_content_preview +msgid "No content to preview" +msgstr "" + +#: [post]no_content [publish]no_content [post]empty +msgid "No content" +msgstr "" + +#: [post]published +msgid "Post published" +msgstr "" + +#: [post]deleted +msgid "Post deleted" +msgstr "" + +#: [post]gallery +msgid "This picture will be added to your gallery" +msgstr "" + +#: [post]hot +msgid "What's Hot" +msgstr "" + +#: [post]hot_text +msgid "Posts recently published in Groups that you are not subscribed (yet)" +msgstr "" + +#: [post]new [publish]new +msgid "New post" +msgstr "" + +#: [post]embed_tip +msgid "You can also use services like Imgur or Flickr to host your picture and paste the link here." +msgstr "" + +#: [post]repost +msgid "This is a re-post from %s" +msgstr "" + +#: [post]repost_profile +msgid "See %s profile" +msgstr "" + +#: [post]public +msgid "Publish this post publicly?" +msgstr "" + +#: [post]blog_add +msgid "Post published on your blog" +msgstr "" + +#: [post]blog_remove +msgid "Post removed from your blog" +msgstr "" + +#: [post]delete_title [post]delete +msgid "Delete this post" +msgstr "" + +#: [post]delete_text +msgid "You are going to delete this post, please confirm your action" +msgstr "" + +#: [post]comments_disabled +msgid "Comments disabled" +msgstr "" + +#: [post]comment_published +msgid "Comment published" +msgstr "" + +#: [status]disconnect +msgid "Disconnect" +msgstr "" + +#: [status]here +msgid "Your status here !" +msgstr "" + +#: [status]updated +msgid "Status updated" +msgstr "" + +#: [status]status +msgid "Status" +msgstr "" + +#: [status]presence +msgid "Presence" +msgstr "" + +#: [status]online +msgid "Online with Movim" +msgstr "" + +#: [publish]title +msgid "Publish" +msgstr "" + +#: [publish]attach +msgid "Add a file or a picture to your post" +msgstr "" + +#: [publish]no_publication +msgid "You cannot publish a post on this Group" +msgstr "" + +#: [publish]form_filled +msgid "Some fields have been filled in. Do you still want to go back and loose their content?" +msgstr "" + +#: [public_groups]shared +msgid "Shared" +msgstr "" + +#: [public_groups]added +msgid "%s has been added to your public groups" +msgstr "" + +#: [rooms]add +msgid "Add a chatroom" +msgstr "" + +#: [rooms]empty_text1 +msgid "You don't have any chatroom yet." +msgstr "" + +#: [rooms]empty_text2 +msgid "Add one by clicking on the add button in the header." +msgstr "" + +#: [chatrooms]title +msgid "Chatrooms" +msgstr "" + +#: [chatrooms]name_placeholder +msgid "My Favorite Room" +msgstr "" + +#: [chatrooms]users +msgid "Users in the room" +msgstr "" + +#: [chatrooms]bad_nickname +msgid "Please enter a correct nickname (2 to 40 characters)" +msgstr "" + +#: [room]anonymous_title +msgid "Public chatroom" +msgstr "" + +#: [room]no_room +msgid "Please provide a room address" +msgstr "" + +#: [room]anonymous_text1 +msgid "You are currently logued as an anonymous user." +msgstr "" + +#: [room]anonymous_text2 +msgid "You can join using your own account or create one on the login page by loging out using the cross in the top-right corner." +msgstr "" + +#: [room]anonymous_login +msgid "Login on %s" +msgstr "" + +#: [room]nick +msgid "Your nickname" +msgstr "" + +#: [roster]ungrouped +msgid "Ungrouped" +msgstr "Ryhmittämätön" + +#: [roster]show_disconnected +msgid "Show disconnected contacts" +msgstr "" + +#: [roster]hide_disconnected +msgid "Hide disconnected contacts" +msgstr "" + +#: [roster]show_group +msgid "Show group %s" +msgstr "" + +#: [roster]hide_group +msgid "Hide group %s" +msgstr "" + +#: [roster]jid_error +msgid "Please enter a valid Jabber ID" +msgstr "" + +#: [roster]no_contacts_title +#, fuzzy +msgid "No contacts ?" +msgstr "Kontaktit (%s)" + +#: [roster]no_contacts_text +msgid "You can add one using the + button bellow" +msgstr "" + +#: [roster]show_hide +msgid "Show/Hide" +msgstr "" + +#: [roster]add_contact_info1 +msgid "Enter the Jabber ID of your contact." +msgstr "" + +#: [roster]add_contact_info2 +msgid "Press enter to validate." +msgstr "" + +#: [roster]jid +msgid "JID" +msgstr "" + +#: [roster]results +msgid "Results" +msgstr "" + +#: [roster]added +msgid "Contact added" +msgstr "" + +#: [roster]deleted +msgid "Contact deleted" +msgstr "" + +#: [roster]search +msgid "Search" +msgstr "" + +#: [share]error +msgid "This is not a valid url" +msgstr "" + +#: [share]success +msgid "Sharing the URL" +msgstr "" + +#: [statistics]title +msgid "Statistics" +msgstr "" + +#: [statistics]since +msgid "Since" +msgstr "" + +#: [statistics]sessions +msgid "Sessions" +msgstr "" + +#: [statistics]monthly_sub +msgid "Monthly Subscriptions" +msgstr "" + +#: [statistics]monthly_sub_cum +msgid "Monthly Subscriptions Cumulated" +msgstr "" + +#: [subscribe]info +msgid "Movim is a decentralized social network, before creating a new account you need to choose a server to register." +msgstr "" + +#: [subscribe]server_question +msgid "Your server here ?" +msgstr "" + +#: [subscribe]server_contact +msgid "Contact us to add yours to the officially supported servers list" +msgstr "" + +#: [feed]nope +msgid "No public feed for this contact" +msgstr "" + +#: [feed]nope_contact +msgid "No contact specified" +msgstr "" + +#: [upload]title +msgid "Upload a file" +msgstr "" + +#: [upload]choose +msgid "Choose a file to upload" +msgstr "" + +#: [vcard]title [page]profile +msgid "Profile" +msgstr "Profiili" + +#: [vcard]updated +msgid "Profile Updated" +msgstr "" + +#: [vcard]not_updated +msgid "Profile Not Updated" +msgstr "" + +#: [vcard]public +msgid "Your profile is now public" +msgstr "" + +#: [vcard]restricted +msgid "Your profile is now restricted" +msgstr "" + +#: [general]nickname +#, fuzzy +msgctxt "[general]nickname" +msgid "Nickname" +msgstr "Lempinimi" + +#: [accounts]twitter +msgid "Twitter" +msgstr "" + +#: [accounts]skype +msgid "Skype" +msgstr "" + +#: [accounts]yahoo +msgid "Yahoo" +msgstr "" + +#: [accounts]accounts_nickname +#, fuzzy +msgctxt "[accounts]accounts_nickname" +msgid "Nickname" +msgstr "Lempinimi" + +#: [accounts]accounts_yahoo +msgid "Yahoo Account" +msgstr "" + +#: [privacy]privacy_title +msgid "Privacy Level" +msgstr "" + +#: [privacy]privacy_question +msgid "Is this profile public ?" +msgstr "" + +#: [privacy]privacy_info +msgid "Please pay attention ! By making your profile public, all the information listed above will be available for all the Movim users and on the whole Internet." +msgstr "" + +#: [save]submit [button]submit msgid "Submit" msgstr "Lähetä" -#: ../cache/locales.php:522 -msgid "Submitting" -msgstr "Lähetetään" - -#: ../cache/locales.php:523 +#: [save]reset [button]reset msgid "Reset" msgstr "Nollaa" -#: ../cache/locales.php:524 +#: [visio]hung_up +msgid "Hung up" +msgstr "" + +#: [visio]busy +msgid "Your contact is busy" +msgstr "" + +#: [visio]declined +msgid "Declined" +msgstr "" + +#: [visio]calling +msgid "Is calling you" +msgstr "" + +#: [visio]call +msgid "Call" +msgstr "" + +#: [visio]hang_up +msgid "Hang up" +msgstr "" + +#: [visio]connection +msgid "Connection" +msgstr "" + +#: [global]no_js +msgid "You don't have javascript enabled. Good luck with that." +msgstr "" + +#: [global]description +msgid "Movim is a kickass distributed social networking platform that protect your privacy an comes with a set of awesome features." +msgstr "" + +#: [page]administration +msgid "Administration" +msgstr "" + +#: [page]home +msgid "Home" +msgstr "Etusivu" + +#: [page]discover +msgid "Discover" +msgstr "" + +#: [page]explore +msgid "Explore" +msgstr "" + +#: [page]account_creation +msgid "Account Creation" +msgstr "Käyttäjätilin luominen" + +#: [page]avatar +msgid "Avatar" +msgstr "Avatar" + +#: [page]chats +msgid "Chats" +msgstr "" + +#: [page]server +msgid "Server" +msgstr "" + +#: [page]public_groups +msgid "Public Groups" +msgstr "" + +#: [page]viewer +msgid "Viewer" +msgstr "" + +#: [page]media +msgid "Media" +msgstr "" + +#: [page]blog +msgid "Blog" +msgstr "" + +#: [page]about +msgid "About" +msgstr "" + +#: [page]login +msgid "Login" +msgstr "" + +#: [page]feed +msgid "Feed" +msgstr "Syöte" + +#: [page]gallery +msgid "Gallery" +msgstr "" + +#: [page]visio +msgid "Visio-conference" +msgstr "" + +#: [page]pods +msgid "Pods" +msgstr "" + +#: [page]share +msgid "Share" +msgstr "" + +#: [page]room +msgid "Room" +msgstr "" + +#: [error]error +msgid "Error: %s" +msgstr "Virhe: %s" + +#: [error]cannot_load_file +msgid "Cannot load file '%s'" +msgstr "Ei voi ladata tiedostoa '%s'" + +#: [error]route +msgid "Route error, please set all the parameters for the page %s" +msgstr "" + +#: [error]widget_load_error +msgid "Requested widget '%s' doesn't exist." +msgstr "" + +#: [error]widget_call_error +msgid "Requested event '%s' not registered." +msgstr "" + +#: [error]whoops +msgid "Whoops!" +msgstr "" + +#: [error]media_not_found +msgid "It seem that you don't have any pictures here?" +msgstr "" + +#: [error]media_ask_upload +msgid "You can try to upload a couple by going to the Media page" +msgstr "" + +#: [title]about +msgid "%s - About" +msgstr "" + +#: [title]account +msgid "%s - Account" +msgstr "" + +#: [title]administration +msgid "%s - Administration Panel" +msgstr "" + +#: [title]blog +msgid "%s - Blog" +msgstr "" + +#: [title]configuration +msgid "%s - Configuration" +msgstr "%s - Konfigurointi" + +#: [title]discover +msgid "%s - Discover" +msgstr "" + +#: [title]explore +msgid "%s - Explore" +msgstr "" + +#: [title]help +msgid "%s - Help Page" +msgstr "%s - Ohjesivu" + +#: [title]login +msgid "%s - Login to Movim" +msgstr "%s - Kirjaudu Movimiin" + +#: [title]main +msgid "%s - Welcome to Movim" +msgstr "%s - Tervetuloa käyttämään Movimia" + +#: [title]media +msgid "%s - Media" +msgstr "" + +#: [title]news +msgid "%s - News" +msgstr "" + +#: [title]node_configuration +msgid "%s - Group Configuration" +msgstr "" + +#: [title]node +msgid "%s - Group" +msgstr "" + +#: [title]not_found +msgid "%s - 404" +msgstr "" + +#: [title]profile +msgid "%s - Profile" +msgstr "%s - Profiili" + +#: [title]server +msgid "%s - Server" +msgstr "" + +#: [button]validate +msgid "Validate" +msgstr "" + +#: [button]refresh +msgid "Refresh" +msgstr "" + +#: [button]add +msgid "Add" +msgstr "Lisää uusi" + +#: [button]delete +msgid "Delete" +msgstr "" + +#: [button]cancel +msgid "Cancel" +msgstr "Peruuta" + +#: [button]close +msgid "Close" +msgstr "" + +#: [button]update +msgid "Update" +msgstr "" + +#: [button]updating +msgid "Updating" +msgstr "" + +#: [button]submitting +msgid "Submitting" +msgstr "Lähetetään" + +#: [button]register msgid "Register" msgstr "" -#: ../cache/locales.php:525 +#: [button]unregister msgid "Unregister" msgstr "" -#: ../cache/locales.php:526 +#: [button]save msgid "Save" msgstr "" -#: ../cache/locales.php:527 +#: [button]clear msgid "Clear" msgstr "" -#: ../cache/locales.php:528 +#: [button]upload msgid "Upload" msgstr "" -#: ../cache/locales.php:529 +#: [button]come_in msgid "Come in!" msgstr "Tule sisään!" -#: ../cache/locales.php:530 +#: [button]connecting msgid "Connecting" msgstr "" -#: ../cache/locales.php:531 +#: [button]bool_yes msgid "Yes" msgstr "Kyllä" -#: ../cache/locales.php:532 +#: [button]bool_no msgid "No" msgstr "Ei" -#: ../cache/locales.php:534 +#: [button]return msgid "Return" msgstr "" -#: ../cache/locales.php:535 +#: [button]accept msgid "Accept" msgstr "Hyväksy" -#: ../cache/locales.php:536 +#: [button]refuse msgid "Refuse" msgstr "" -#: ../cache/locales.php:537 +#: [button]next msgid "Next" msgstr "" -#: ../cache/locales.php:538 +#: [button]previous msgid "Previous" msgstr "" -#: ../cache/locales.php:539 -#, php-format +#: [step]step msgid "Step %s" msgstr "" -#: ../cache/locales.php:542 +#: [day]title msgid "Day" msgstr "Päivä" -#: ../cache/locales.php:543 +#: [day]monday msgid "Monday" msgstr "Maanantai" -#: ../cache/locales.php:544 +#: [day]tuesday msgid "Tuesday" msgstr "Tiistai" -#: ../cache/locales.php:545 +#: [day]wednesday msgid "Wednesday" msgstr "Keskiviikko" -#: ../cache/locales.php:546 +#: [day]thursday msgid "Thursday" msgstr "Torstai" -#: ../cache/locales.php:547 +#: [day]friday msgid "Friday" msgstr "Perjantai" -#: ../cache/locales.php:548 +#: [day]saturday msgid "Saturday" msgstr "Launtai" -#: ../cache/locales.php:549 +#: [day]sunday msgid "Sunday" msgstr "" -#: ../cache/locales.php:550 ../cache/locales.php:559 +#: [gender]nil +#, fuzzy +msgctxt "[gender]nil" msgid "None" msgstr "Ei mitään" -#: ../cache/locales.php:551 +#: [gender]male msgid "Male" msgstr "Mies" -#: ../cache/locales.php:552 +#: [gender]female msgid "Female" msgstr "Nainen" -#: ../cache/locales.php:553 +#: [gender]other msgid "Other" msgstr "Muu" -#: ../cache/locales.php:554 +#: [client]bot msgid "Bot" msgstr "Botti" -#: ../cache/locales.php:555 +#: [client]desktop msgid "Desktop" msgstr "Työpöytä" -#: ../cache/locales.php:556 +#: [client]phone msgid "Phone" msgstr "Puhelin" -#: ../cache/locales.php:557 +#: [client]web msgid "Web" msgstr "" -#: ../cache/locales.php:558 +#: [client]registered msgid "Registered" msgstr "" -#: ../cache/locales.php:560 +#: [marital]nil +#, fuzzy +msgctxt "[marital]nil" +msgid "None" +msgstr "Ei mitään" + +#: [marital]single msgid "Single" msgstr "Sinkku" -#: ../cache/locales.php:561 +#: [marital]relationship msgid "In a relationship" msgstr "Parisuhteessa" -#: ../cache/locales.php:562 +#: [marital]married msgid "Married" msgstr "Naimisissa" -#: ../cache/locales.php:563 +#: [marital]divorced msgid "Divorced" msgstr "Eronnut" -#: ../cache/locales.php:564 +#: [marital]widowed msgid "Widowed" msgstr "Leski" -#: ../cache/locales.php:565 +#: [marital]cohabiting msgid "Cohabiting" msgstr "Avoliitossa" -#: ../cache/locales.php:566 +#: [marital]union msgid "Civil Union" msgstr "Rekisteröity parisuhde" -#: ../cache/locales.php:567 +#: [flag]white msgid "Not shared" msgstr "" -#: ../cache/locales.php:568 +#: [flag]green msgid "Shared with one contact" msgstr "" -#: ../cache/locales.php:569 +#: [flag]orange msgid "Shared with all contacts" msgstr "" -#: ../cache/locales.php:570 +#: [flag]red msgid "Shared with the XMPP network" msgstr "" -#: ../cache/locales.php:571 +#: [flag]black msgid "Shared with the whole Internet" msgstr "" -#: ../cache/locales.php:572 +#: [presence]online msgid "Online" msgstr "Paikalla" -#: ../cache/locales.php:573 +#: [presence]away msgid "Away" msgstr "Poissa" -#: ../cache/locales.php:574 +#: [presence]dnd msgid "Do Not Disturb" msgstr "Älä häiritse" -#: ../cache/locales.php:575 +#: [presence]xa msgid "Extended Away" msgstr "Laajennettu poissaolo" -#: ../cache/locales.php:576 +#: [presence]offline msgid "Offline" msgstr "Poissa verkosta" -#: ../cache/locales.php:577 +#: [presence]error msgid "Error" msgstr "" -#: ../cache/locales.php:578 +#: [mood]afraid msgid "afraid" msgstr "" -#: ../cache/locales.php:579 +#: [mood]amazed msgid "amazed" msgstr "" -#: ../cache/locales.php:580 +#: [mood]amorous msgid "amorous" msgstr "" -#: ../cache/locales.php:581 +#: [mood]angry msgid "angry" msgstr "" -#: ../cache/locales.php:582 +#: [mood]annoyed msgid "annoyed" msgstr "" -#: ../cache/locales.php:583 +#: [mood]anxious msgid "anxious" msgstr "" -#: ../cache/locales.php:584 +#: [mood]aroused msgid "aroused" msgstr "" -#: ../cache/locales.php:585 +#: [mood]ashamed msgid "ashamed" msgstr "" -#: ../cache/locales.php:586 +#: [mood]bored msgid "bored" msgstr "" -#: ../cache/locales.php:587 +#: [mood]brave msgid "brave" msgstr "" -#: ../cache/locales.php:588 +#: [mood]calm msgid "calm" msgstr "" -#: ../cache/locales.php:589 +#: [mood]cautious msgid "cautious" msgstr "" -#: ../cache/locales.php:590 +#: [mood]cold msgid "cold" msgstr "" -#: ../cache/locales.php:591 +#: [mood]confident msgid "confident" msgstr "" -#: ../cache/locales.php:592 +#: [mood]confused msgid "confused" msgstr "" -#: ../cache/locales.php:593 +#: [mood]contemplative msgid "contemplative" msgstr "" -#: ../cache/locales.php:594 +#: [mood]contented msgid "contented" msgstr "" -#: ../cache/locales.php:595 +#: [mood]cranky msgid "cranky" msgstr "" -#: ../cache/locales.php:596 +#: [mood]crazy msgid "crazy" msgstr "" -#: ../cache/locales.php:597 +#: [mood]creative msgid "creative" msgstr "" -#: ../cache/locales.php:598 +#: [mood]curious msgid "curious" msgstr "" -#: ../cache/locales.php:599 +#: [mood]dejected msgid "dejected" msgstr "" -#: ../cache/locales.php:600 +#: [mood]depressed msgid "depressed" msgstr "" -#: ../cache/locales.php:601 +#: [mood]disappointed msgid "disappointed" msgstr "" -#: ../cache/locales.php:602 +#: [mood]disgusted msgid "disgusted" msgstr "" -#: ../cache/locales.php:603 +#: [mood]dismayed msgid "dismayed" msgstr "" -#: ../cache/locales.php:604 +#: [mood]distracted msgid "distracted" msgstr "" -#: ../cache/locales.php:605 +#: [mood]embarrassed msgid "embarrassed" msgstr "" -#: ../cache/locales.php:606 +#: [mood]envious msgid "envious" msgstr "" -#: ../cache/locales.php:607 +#: [mood]excited msgid "excited" msgstr "" -#: ../cache/locales.php:608 +#: [mood]flirtatious msgid "flirtatious" msgstr "" -#: ../cache/locales.php:609 +#: [mood]frustated msgid "frustated" msgstr "" -#: ../cache/locales.php:610 +#: [mood]grateful msgid "grateful" msgstr "" -#: ../cache/locales.php:611 +#: [mood]grieving msgid "grieving" msgstr "" -#: ../cache/locales.php:612 +#: [mood]grumpy msgid "grumpy" msgstr "" -#: ../cache/locales.php:613 +#: [mood]guilty msgid "guilty" msgstr "" -#: ../cache/locales.php:614 +#: [mood]happy msgid "happy" msgstr "" -#: ../cache/locales.php:615 +#: [mood]hopeful msgid "hopeful" msgstr "" -#: ../cache/locales.php:616 +#: [mood]hot msgid "hot" msgstr "" -#: ../cache/locales.php:617 +#: [mood]humbled msgid "humbled" msgstr "" -#: ../cache/locales.php:618 +#: [mood]humiliated msgid "humiliated" msgstr "" -#: ../cache/locales.php:619 +#: [mood]hungry msgid "hungry" msgstr "" -#: ../cache/locales.php:620 +#: [mood]hurt msgid "hurt" msgstr "" -#: ../cache/locales.php:621 +#: [mood]impressed msgid "impressed" msgstr "" -#: ../cache/locales.php:622 +#: [mood]in_awe msgid "in awe" msgstr "" -#: ../cache/locales.php:623 +#: [mood]in_love msgid "in love" msgstr "" -#: ../cache/locales.php:624 +#: [mood]indignant msgid "indignant" msgstr "" -#: ../cache/locales.php:625 +#: [mood]interested msgid "interested" msgstr "" -#: ../cache/locales.php:626 +#: [mood]intoxicated msgid "intoxicated" msgstr "" -#: ../cache/locales.php:627 +#: [mood]invincible msgid "invincible" msgstr "" -#: ../cache/locales.php:628 +#: [mood]jealous msgid "jealous" msgstr "" -#: ../cache/locales.php:629 +#: [mood]lonely msgid "lonely" msgstr "" -#: ../cache/locales.php:630 +#: [mood]lost msgid "lost" msgstr "" -#: ../cache/locales.php:631 +#: [mood]lucky msgid "lucky" msgstr "" -#: ../cache/locales.php:632 +#: [mood]mean msgid "mean" msgstr "" -#: ../cache/locales.php:633 +#: [mood]moody msgid "moody" msgstr "" -#: ../cache/locales.php:634 +#: [mood]nervous msgid "nervous" msgstr "" -#: ../cache/locales.php:635 +#: [mood]neutral msgid "neutral" msgstr "" -#: ../cache/locales.php:636 +#: [mood]offended msgid "offended" msgstr "" -#: ../cache/locales.php:637 +#: [mood]outraged msgid "outraged" msgstr "" -#: ../cache/locales.php:638 +#: [mood]playful msgid "playful" msgstr "" -#: ../cache/locales.php:639 +#: [mood]proud msgid "proud" msgstr "" -#: ../cache/locales.php:640 +#: [mood]relaxed msgid "relaxed" msgstr "" -#: ../cache/locales.php:641 +#: [mood]relieved msgid "relieved" msgstr "" -#: ../cache/locales.php:642 -msgid "remorseful" -msgstr "" - -#: ../cache/locales.php:643 +#: [mood]restless msgid "restless" msgstr "" -#: ../cache/locales.php:644 +#: [mood]sad msgid "sad" msgstr "" -#: ../cache/locales.php:645 +#: [mood]sarcastic msgid "sarcastic" msgstr "" -#: ../cache/locales.php:646 +#: [mood]satisfied msgid "satisfied" msgstr "" -#: ../cache/locales.php:647 +#: [mood]serious msgid "serious" msgstr "" -#: ../cache/locales.php:648 +#: [mood]shocked msgid "shocked" msgstr "" -#: ../cache/locales.php:649 +#: [mood]shy msgid "shy" msgstr "" -#: ../cache/locales.php:650 +#: [mood]sick msgid "sick" msgstr "" -#: ../cache/locales.php:651 +#: [mood]sleepy msgid "sleepy" msgstr "" -#: ../cache/locales.php:652 +#: [mood]spontaneous msgid "spontaneous" msgstr "" -#: ../cache/locales.php:653 +#: [mood]stressed msgid "stressed" msgstr "" -#: ../cache/locales.php:654 +#: [mood]strong msgid "strong" msgstr "" -#: ../cache/locales.php:655 +#: [mood]surprised msgid "surprised" msgstr "" -#: ../cache/locales.php:656 +#: [mood]thankful msgid "thankful" msgstr "" -#: ../cache/locales.php:657 +#: [mood]thirsty msgid "thirsty" msgstr "" -#: ../cache/locales.php:658 +#: [mood]tired msgid "tired" msgstr "" -#: ../cache/locales.php:659 +#: [mood]undefined msgid "undefined" msgstr "" -#: ../cache/locales.php:660 +#: [mood]weak msgid "weak" msgstr "" -#: ../cache/locales.php:661 +#: [mood]worried msgid "worried" msgstr "" -#: ../cache/locales.php:662 +#: [month]title msgid "Month" msgstr "Kuukausi" -#: ../cache/locales.php:663 +#: [month]january msgid "January" msgstr "Tammikuu" -#: ../cache/locales.php:664 +#: [month]february msgid "February" msgstr "Helmikuu" -#: ../cache/locales.php:665 +#: [month]march msgid "March" msgstr "Maaliskuu" -#: ../cache/locales.php:666 +#: [month]april msgid "April" msgstr "Huhtikuu" -#: ../cache/locales.php:667 +#: [month]may msgid "May" msgstr "Toukokuu" -#: ../cache/locales.php:668 +#: [month]june msgid "June" msgstr "Kesäkuu" -#: ../cache/locales.php:669 +#: [month]july msgid "July" msgstr "Heinäkuu" -#: ../cache/locales.php:670 +#: [month]august msgid "August" msgstr "Elokuu" -#: ../cache/locales.php:671 +#: [month]september msgid "September" msgstr "Syyskuu" -#: ../cache/locales.php:672 +#: [month]october msgid "October" msgstr "Lokakuu" -#: ../cache/locales.php:673 +#: [month]november msgid "November" msgstr "Marraskuu" -#: ../cache/locales.php:674 +#: [month]december msgid "December" msgstr "Joulukuu" -#: ../cache/locales.php:675 +#: [year]title msgid "Year" msgstr "Vuosi" -#: ../cache/locales.php:676 +#: [date]today msgid "Today" msgstr "Tänään" -#: ../cache/locales.php:677 +#: [date]tomorrow msgid "Tomorrow" msgstr "Huomenna" -#: ../cache/locales.php:678 +#: [date]yesterday msgid "Yesterday" msgstr "Eilen" -#: ../cache/locales.php:679 -#, php-format -msgid " %d days ago" +#: [date]ago +#, fuzzy +msgid "%d days ago" msgstr " %d päivää sitten" -#: ../cache/locales.php:680 +#: [date]day msgid "day" msgstr "päivä" -#: ../cache/locales.php:682 +#: [post]whats_new msgid "What's new ?" msgstr "" -#: ../cache/locales.php:683 +#: [post]place msgid "Place" msgstr "" -#: ../cache/locales.php:684 +#: [post]by msgid "by" msgstr "" -#: ../cache/locales.php:685 +#: [post]geolocalisation msgid "Geolocalisation" msgstr "" -#: ../cache/locales.php:686 +#: [post]email msgid "email" msgstr "" -#: ../cache/locales.php:688 +#: [post]no_comments msgid "No comments yet" msgstr "" -#: ../cache/locales.php:689 +#: [post]no_comments_stream msgid "No comments stream" msgstr "" -#: ../cache/locales.php:690 +#: [post]no_load msgid "Your feed cannot be loaded." msgstr "Syötettäsi ei voitu ladata" -#: ../cache/locales.php:691 +#: [post]older msgid "Get older posts" msgstr "Hae vanhat postaukset" -#: ../cache/locales.php:692 -#, php-format +#: [post]new_items msgid "%s new items" msgstr "" -#: ../cache/locales.php:693 +#: [post]comment_error msgid "Comment publication error" msgstr "" -#: ../cache/locales.php:694 +#: [post]comments_older msgid "Show the older comments" msgstr "" -#: ../cache/locales.php:695 -msgid "Loading comments ..." -msgstr "" +#: [post]comments_loading +#, fuzzy +msgid "Loading comments..." +msgstr "Ladataan sinun syötteitä ..." -#: ../cache/locales.php:696 +#: [post]comments_get msgid "Get the comments" msgstr "" -#: ../cache/locales.php:697 +#: [post]comment_add msgid "Add a comment" msgstr "" -#: ../cache/locales.php:698 +#: [post]share msgid "Share with" msgstr "" -#: ../cache/locales.php:699 +#: [post]share_everyone msgid "Everyone" msgstr "" -#: ../cache/locales.php:700 +#: [post]share_your_contacts msgid "Your contacts" msgstr "" -#: ../cache/locales.php:702 +#: [post]updated msgid "Updated" msgstr "" -#: ../cache/locales.php:703 +#: [post]content_not_found msgid "Content not found" msgstr "" -#: ../cache/locales.php:704 +#: [post]default_title msgid "Contact publication" msgstr "" -#: ../cache/locales.php:705 +#: [post]comments msgid "Comments" msgstr "" -#: ../cache/locales.php:706 +#: [api]error msgid "The API is not reachable, try again later" msgstr "" -#: ../cache/locales.php:707 +#: [field]type_here msgid "Type here" msgstr "" #~ msgid "PHP version mismatch. Movim requires PHP 5.3 minimum." #~ msgstr "PHP versio ei yhteensopiva. Movim vaatii vähintään PHP 5.3:n" -#, php-format #~ msgid "Movim requires the %s extension." #~ msgstr "Movim vaatii %s laajennuksen." #~ msgid "Movim's folder must be writable." #~ msgstr "Movim -kansioon täytyy olla kirjoitusoikeudet" -#, php-format #~ msgid "Couldn't create configuration file '%s'." #~ msgstr "Ei voitu luoda asetustiedostoa '%s'" #~ msgid "Compatibility Test" #~ msgstr "Yhteensopivuustesti" -#~ msgid "" -#~ "The following requirements were not met. Please make sure they are all " -#~ "satisfied in order to install Movim." -#~ msgstr "" -#~ "Seuraavia vaatimuksia ei voitu täyttää. Varmista että kaikki vaatimukset " -#~ "täytetty että voit asentaa Movimin." +#~ msgid "The following requirements were not met. Please make sure they are all satisfied in order to install Movim." +#~ msgstr "Seuraavia vaatimuksia ei voitu täyttää. Varmista että kaikki vaatimukset täytetty että voit asentaa Movimin." #~ msgid "User not logged in." #~ msgstr "Käyttäjä ei ole kirjautunut sisään." @@ -2614,21 +2738,15 @@ msgstr "" #~ msgid "JID not provided." #~ msgstr "JID ei määritetty." -#, php-format #~ msgid "jid '%s' is incorrect" #~ msgstr "jid '%s' on väärin" -#, php-format #~ msgid "Cannot open log file '%s'" #~ msgstr "Ei voi avata lokitiedostoa '%s'" -#, php-format #~ msgid "%s - Account Creation" #~ msgstr "%s - Tilin luominen" -#~ msgid "Remove this contact" -#~ msgstr "Poista tämä kontakti" - #~ msgid "Debug console" #~ msgstr "Debug konsoli" @@ -2644,7 +2762,6 @@ msgstr "" #~ msgid "Loading the contact feed ..." #~ msgstr "Ladataan kontaktit-feediä" -#, php-format #~ msgid "Install the %s package" #~ msgstr "Asenna %s paketti" @@ -2654,35 +2771,21 @@ msgstr "" #~ msgid "Actual version : " #~ msgstr "Nykyinen versio: " -#, php-format #~ msgid "Install %s and %s packages" #~ msgstr "Asenna %s ja %s paketit" #~ msgid "Update your PHP version or contact your server administrator" #~ msgstr "Päivitä PHP versiosi tai ota yhteys palvelimen ylläpitäjään" -#~ msgid "Enable read and write rights on Movim's root folder" -#~ msgstr "kirjoitus- ja lukuoikeudet Movim-juurihakemistoon" +#~ msgid "Keep in mind that Movim is still under development and will handle many personal details. Its use can potentially endanger your data. Always pay attention to information that you submit." +#~ msgstr "Muista että Movim on yhä työn alla ja ylläpitää henkilökohtaisia tietoja. Käyttö vielä tässä vaiheessa voi joissain tapauksissa vaarantaa yksityisyyden. Ole huolellinen jakaessasi tietoja." -#~ msgid "" -#~ "Keep in mind that Movim is still under development and will handle many " -#~ "personal details. Its use can potentially endanger your data. Always pay " -#~ "attention to information that you submit." -#~ msgstr "" -#~ "Muista että Movim on yhä työn alla ja ylläpitää henkilökohtaisia tietoja. " -#~ "Käyttö vielä tässä vaiheessa voi joissain tapauksissa vaarantaa " -#~ "yksityisyyden. Ole huolellinen jakaessasi tietoja." - -#~ msgid "" -#~ "Before you enjoy your social network, a few adjustements are required." -#~ msgstr "" -#~ "Ennen kuin voit nauttia sosiaalisesta verkosta, tarvitaan vielä vähän " -#~ "säätämistä" +#~ msgid "Before you enjoy your social network, a few adjustements are required." +#~ msgstr "Ennen kuin voit nauttia sosiaalisesta verkosta, tarvitaan vielä vähän säätämistä" #~ msgid "Thank you for downloading Movim!" #~ msgstr "Kiitos että latasit Movimin!" -#, php-format #~ msgid "Couldn't create directory '%s'." #~ msgstr "Kansiota '%s' ei voitu luoda" @@ -2713,10 +2816,6 @@ msgstr "" #~ msgid "Success !" #~ msgstr "Onnistui!" -#~ msgid "Database Detected" -#~ msgstr "Tietokanta tunnistettu" - -#, php-format #~ msgid "Please remove the %s folder in order to complete the installation" #~ msgstr "Poista %s kansio että voit saattaa asennuksen loppuun" @@ -2726,7 +2825,6 @@ msgstr "" #~ msgid "Connecting..." #~ msgstr "Yhdistetään..." -#, php-format #~ msgid "%s - Add An Account" #~ msgstr "%s - Lisää käyttäjätili" @@ -2751,12 +2849,8 @@ msgstr "" #~ msgid "Username already taken" #~ msgstr "Käyttäjänimi on jo käytössä" -#~ msgid "" -#~ "Firstly fill in this blank with a brand new account ID, this address will " -#~ "follow you on all the Movim network !" -#~ msgstr "" -#~ "Ensiksi anna uusi tilin ID-tunniste, tämä tunniste on sinun käytössä koko " -#~ "Movim verkossa." +#~ msgid "Firstly fill in this blank with a brand new account ID, this address will follow you on all the Movim network !" +#~ msgstr "Ensiksi anna uusi tilin ID-tunniste, tämä tunniste on sinun käytössä koko Movim verkossa." #~ msgid "Make sure your password is safe :" #~ msgstr "Pidä huolta että salasanasi on turvallinen:" @@ -2774,8 +2868,7 @@ msgstr "" #~ msgstr "Luo" #~ msgid "A capital letter, a digit and a special character are recommended" -#~ msgstr "" -#~ "Suositellaan käyttämään iso kirjainta, numeroa ja/tai erikoismerkkiä." +#~ msgstr "Suositellaan käyttämään iso kirjainta, numeroa ja/tai erikoismerkkiä." #~ msgid "8 characters" #~ msgstr "8 merkkiä" @@ -2789,17 +2882,11 @@ msgstr "" #~ msgid "Address" #~ msgstr "Osoite" -#~ msgid "Loading your feed ..." -#~ msgstr "Ladataan sinun syötteitä ..." - #~ msgid "Client Type" #~ msgstr "Asiakasohjelma" -#~ msgid "" -#~ "Your server doesn't support post publication, you can only read contact's " -#~ "feeds" -#~ msgstr "" -#~ "Palvelimesi ei tue postauksen julakisua, voit vain lukea kontaktisi syötteet" +#~ msgid "Your server doesn't support post publication, you can only read contact's feeds" +#~ msgstr "Palvelimesi ei tue postauksen julakisua, voit vain lukea kontaktisi syötteet" #~ msgid "My Posts" #~ msgstr "Minun postaukset" @@ -2810,7 +2897,6 @@ msgstr "" #~ msgid "talkative" #~ msgstr "puhelias" -#, php-format #~ msgid "You can now access your shiny Movim instance %sJump In !%s" #~ msgstr "Voi nyt mennä uudenkarheaan Movim instanssiisi %s hyppää sisään %s" @@ -2820,27 +2906,11 @@ msgstr "" #~ msgid "The current BOSH URL in invalid" #~ msgstr "Nykyinen BOSH url on epäkelpo" -#, php-format -#~ msgid "" -#~ "Although Movim is evolving fast, many (many) features are missing. Be " -#~ "patient ;). You can have a look %s at next versions's roadmaps %s to know if " -#~ "the one you want is on its way." -#~ msgstr "" -#~ "Vaikka Movim kehittyy nopeasti, useat ominaisuudet saattavat vielä olla " -#~ "puutteellisia. Ole kärsivällinen ;) Voit katsoa jo etukäteen %s tulevien " -#~ "versioiden ominaisuuksia %s." +#~ msgid "Although Movim is evolving fast, many (many) features are missing. Be patient ;). You can have a look %s at next versions's roadmaps %s to know if the one you want is on its way." +#~ msgstr "Vaikka Movim kehittyy nopeasti, useat ominaisuudet saattavat vielä olla puutteellisia. Ole kärsivällinen ;) Voit katsoa jo etukäteen %s tulevien versioiden ominaisuuksia %s." -#, php-format -#~ msgid "" -#~ "Don't forget that Movim is an open source project, a helping hand is always " -#~ "welcome (see %s Can I participate %s)" -#~ msgstr "" -#~ "Movim on avoimen lähdekoodin projekti, auttavat kädet ovat aina " -#~ "tervetulleita (katso %s Miten voin osallistua %s)" - -#, php-format -#~ msgid "Contacts (%s)" -#~ msgstr "Kontaktit (%s)" +#~ msgid "Don't forget that Movim is an open source project, a helping hand is always welcome (see %s Can I participate %s)" +#~ msgstr "Movim on avoimen lähdekoodin projekti, auttavat kädet ovat aina tervetulleita (katso %s Miten voin osallistua %s)" #~ msgid "No profile yet ?" #~ msgstr "Ei vielä käyttäjätunnusta?" @@ -2860,42 +2930,18 @@ msgstr "" #~ msgid "Follow" #~ msgstr "Seuraa" -#~ msgid "" -#~ "Some features are missing/I can't do everything I used to do on other social " -#~ "networks" -#~ msgstr "" -#~ "Joitain ominaisuuksia puuttuu / en voi tehdä kaikkea mitä muissa " -#~ "sosiaalisissa verkoissa" +#~ msgid "Some features are missing/I can't do everything I used to do on other social networks" +#~ msgstr "Joitain ominaisuuksia puuttuu / en voi tehdä kaikkea mitä muissa sosiaalisissa verkoissa" -#, php-format -#~ msgid "" -#~ "Visit the page %s What is Movim ? %s to know more about the project, its " -#~ "aims and understand how it works." -#~ msgstr "" -#~ "Vieraile %s Mikä Movim on? %s sivulla saadaksesi tietoa projektista, " -#~ "tavoitteista ja ymmärtääksesi sen toimintaa." +#~ msgid "Visit the page %s What is Movim ? %s to know more about the project, its aims and understand how it works." +#~ msgstr "Vieraile %s Mikä Movim on? %s sivulla saadaksesi tietoa projektista, tavoitteista ja ymmärtääksesi sen toimintaa." -#, php-format -#~ msgid "" -#~ "Go to the %s to the Frequently Asked Questions %s or come ask your question " -#~ "on the official chatroom %s or via our mailing-list (%s see the dedicated " -#~ "page %s)." -#~ msgstr "" -#~ "Vieräile %s Usein Kysytyissä Kysymyksissä (FAQ/UKK) %s tai kysy meidän " -#~ "virallisessa chatissa tai %s tai meidän postituslistalla (%s katso sivu%s)." +#~ msgid "Go to the %s to the Frequently Asked Questions %s or come ask your question on the official chatroom %s or via our mailing-list (%s see the dedicated page %s)." +#~ msgstr "Vieräile %s Usein Kysytyissä Kysymyksissä (FAQ/UKK) %s tai kysy meidän virallisessa chatissa tai %s tai meidän postituslistalla (%s katso sivu%s)." -#~ msgid "" -#~ "Some errors were detected. Please correct them for the installation to " -#~ "proceed." -#~ msgstr "" -#~ "Joitain virheitä huomattiin, ole hyvä ja korjaa virheet että voidaan jatkaa " -#~ "asentamista." +#~ msgid "Some errors were detected. Please correct them for the installation to proceed." +#~ msgstr "Joitain virheitä huomattiin, ole hyvä ja korjaa virheet että voidaan jatkaa asentamista." -#, php-format -#~ msgid "This server hosts %s accounts" -#~ msgstr "Tämä palvelin ylläpitää %s käyttäjätiliä" - -#, php-format #~ msgid "Cannot load element value '%s'" #~ msgstr "Ei voi ladata elementin arvoa '%s'" @@ -2905,11 +2951,9 @@ msgstr "" #~ msgid "What is Movim?" #~ msgstr "Mikä Movim on?" -#, php-format #~ msgid "XMPP connection through Bosh failed with error '%s'" #~ msgstr "XMPP yhteys Boshin kautta epäonnistui, virhekoodi '%s'" -#, php-format #~ msgid "Database connection failed with error '%s'" #~ msgstr "Yhteys tietokantaan epäonnistui, virhekoodi '%s'" @@ -2919,6 +2963,5 @@ msgstr "" #~ msgid "Valid Bosh" #~ msgstr "Validi Bosh-yhteys" -#, php-format #~ msgid "Bosh connection failed with error '%s'" #~ msgstr "Bosh yhteys epäonnistui, virhekoodi '%s'" diff --git a/sources/locales/fr.po b/sources/locales/fr.po index 270947e..6c6142a 100644 --- a/sources/locales/fr.po +++ b/sources/locales/fr.po @@ -1,2662 +1,2776 @@ # French translations for Movim Website package. # This file is distributed under the same license as the Movim Website package. # This file was translated from CodingTeam at . +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/About/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Account/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AccountNext/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AdHoc/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AdminDB/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AdminMain/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AdminTest/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Api/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Avatar/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Blog/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Bookmark/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Chat/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Chats/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/ConfigData/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Config/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Contact/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Group/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Groups/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Header/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Hello/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Help/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Init/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Location/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/LoginAnonymous/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Login/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Menu/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/NodeAffiliations/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/NodeSubscriptions/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Notifs/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Post/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Presence/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Publish/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/PubsubSubscriptionConfig/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Rooms/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Roster/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Share/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Statistics/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Subscribe/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Syndication/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Upload/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Vcard4/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/VisioExt/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Visio/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../locales/locales.ini msgid "" msgstr "" "Project-Id-Version: Movim Website\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-06-08 22:06+0200\n" +"POT-Creation-Date: 2015-08-20 15:17+0200\n" "PO-Revision-Date: 2015-06-10 08:09+0000\n" "Last-Translator: Axelos \n" "Language-Team: \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2015-06-18 21:08+0000\n" "X-Generator: Launchpad (build 17570)\n" -"Language: \n" -#: ../cache/locales.php:2 +#: [about]thanks msgid "Thanks" msgstr "Remerciements" -#: ../cache/locales.php:3 +#: [about]developers msgid "Developers" msgstr "Développeurs" -#: ../cache/locales.php:4 +#: [about]translators msgid "Translators" msgstr "Traducteurs" -#: ../cache/locales.php:5 +#: [about]software msgid "Software" msgstr "Logiciels" -#: ../cache/locales.php:6 +#: [about]resources msgid "Resources" msgstr "Ressources" -#: ../cache/locales.php:7 ../cache/locales.php:83 ../cache/locales.php:85 +#: [about]api [schema]api [api]title msgid "API" msgstr "API" -#: ../cache/locales.php:8 -msgid "" -"Movim is an XMPP-based communication platform. All the project, except the " -"following software and resources, is under" -msgstr "" -"Movim est une plateforme de communication construite sur XMPP. L’intégralité " -"du projet, à l’exception des ressources et logiciels suivants, est sous la " -"licence" +#: [about]info +msgid "Movim is an XMPP-based communication platform. All the project, except the following software and resources, is under" +msgstr "Movim est une plateforme de communication construite sur XMPP. L’intégralité du projet, à l’exception des ressources et logiciels suivants, est sous la licence" -#: ../cache/locales.php:9 +#: [account]title msgid "Account" msgstr "Compte" -#: ../cache/locales.php:10 -msgid "The password has been updated" -msgstr "Le mot de passe a été mis à jour" +#: [account]password_change_title +#, fuzzy +msgid "Change my password" +msgstr "Mot de passe incorrect" -#: ../cache/locales.php:11 -msgid "Please provide a valid password (6 characters minimum)" -msgstr "Veuillez entrer un mot de passe valide (6 lettres minimum)" - -#: ../cache/locales.php:12 -msgid "The provided passwords are not the same" -msgstr "Les mot de passes renseignés ne sont pas identiques" - -#: ../cache/locales.php:13 -msgid "Delete my account" -msgstr "Supprimer mon compte" - -#: ../cache/locales.php:14 -msgid "" -"You will delete your XMPP account and all the relative information linked to " -"it (profile, contacts and publications)." -msgstr "" -"Vous allez supprimer votre compte XMPP ainsi que l'ensemble des informations " -"liés à celui-ci (profil, contacts et billets)." - -#: ../cache/locales.php:15 -msgid "Are you sure that you want to delete it ?" -msgstr "Êtes-vous sûr de vouloir le supprimer?" - -#: ../cache/locales.php:16 ../cache/locales.php:411 -msgid "Create a new account" -msgstr "Créer un nouveau compte" - -#: ../cache/locales.php:17 -msgid "No account creation form found on the server" -msgstr "Aucun formulaire de création de compte n’a été trouvé sur le serveur" - -#: ../cache/locales.php:18 ../cache/locales.php:172 -msgid "on" -msgstr "sur" - -#: ../cache/locales.php:19 -msgid "Your acccount has been successfully registered" -msgstr "Votre compte a été correctement enregistré" - -#: ../cache/locales.php:20 -msgid "Loading" -msgstr "Chargement en cours" - -#: ../cache/locales.php:21 -msgid "Not Acceptable" -msgstr "Non acceptable" - -#: ../cache/locales.php:22 -msgid "The registration system of this server is currently unavailable" -msgstr "" -"Le système d’enregistrement de ce serveur est actuellement indisponible" - -#: ../cache/locales.php:23 -msgid "" -"This server use an external system for the registration, please click on the " -"following URL." -msgstr "" -"Ce serveur utilise un service externe pour enregistrer les nouveaux " -"utilisateurs, veuillez s’il vous plaît cliquer sur le lien suivant." - -#: ../cache/locales.php:24 -msgid "Actions" -msgstr "Actions" - -#: ../cache/locales.php:25 ../cache/locales.php:82 -msgid "Database" -msgstr "Base de données" - -#: ../cache/locales.php:26 -msgid "Modl wasn't able to connect to the database" -msgstr "Modl n’a pas été en mesure de se connecter à la base de données" - -#: ../cache/locales.php:27 -msgid "Movim is connected to the database" -msgstr "Movim est connecté à la base de données" - -#: ../cache/locales.php:28 -msgid "The database need to be updated" -msgstr "La base de données doit être mise à jour" - -#: ../cache/locales.php:29 -msgid "Movim database is up to date" -msgstr "La base de donnée est à jour" - -#: ../cache/locales.php:30 -msgid "Database Type" -msgstr "Type de base de données" - -#: ../cache/locales.php:31 ../cache/locales.php:50 ../cache/locales.php:540 -msgid "Username" -msgstr "Identifiant" - -#: ../cache/locales.php:32 ../cache/locales.php:51 ../cache/locales.php:282 -#: ../cache/locales.php:541 +#: [account]password [db]password [credentials]password [form]password +#: [input]password msgid "Password" msgstr "Mot de passe" -#: ../cache/locales.php:33 +#: [account]password_confirmation +#, fuzzy +msgid "Password confirmation" +msgstr "%s – Configuration" + +#: [account]password_changed +msgid "The password has been updated" +msgstr "Le mot de passe a été mis à jour" + +#: [account]password_not_valid +msgid "Please provide a valid password (6 characters minimum)" +msgstr "Veuillez entrer un mot de passe valide (6 lettres minimum)" + +#: [account]password_not_same +msgid "The provided passwords are not the same" +msgstr "Les mot de passes renseignés ne sont pas identiques" + +#: [account]delete_title +msgid "Delete my account" +msgstr "Supprimer mon compte" + +#: [account]delete +#, fuzzy +msgid "Delete your account" +msgstr "Supprimer mon compte" + +#: [account]delete_text +msgid "You will delete your XMPP account and all the relative information linked to it (profile, contacts and publications)." +msgstr "Vous allez supprimer votre compte XMPP ainsi que l'ensemble des informations liés à celui-ci (profil, contacts et billets)." + +#: [account]delete_text_confirm +msgid "Are you sure that you want to delete it ?" +msgstr "Êtes-vous sûr de vouloir le supprimer?" + +#: [account]gateway_title +msgid "Gateway" +msgstr "" + +#: [create]title [subscribe]title +msgid "Create a new account" +msgstr "Créer un nouveau compte" + +#: [create]notfound +msgid "No account creation form found on the server" +msgstr "Aucun formulaire de création de compte n’a été trouvé sur le serveur" + +#: [create]server_on +msgid "on" +msgstr "sur" + +#: [create]successfull +msgid "Your acccount has been successfully registered" +msgstr "Votre compte a été correctement enregistré" + +#: [create]loading +msgid "Loading" +msgstr "Chargement en cours" + +#: [error]not_acceptable +msgid "Not Acceptable" +msgstr "Non acceptable" + +#: [error]service_unavailable +msgid "The registration system of this server is currently unavailable" +msgstr "Le système d’enregistrement de ce serveur est actuellement indisponible" + +#: [oob]about +msgid "This server use an external system for the registration, please click on the following URL." +msgstr "Ce serveur utilise un service externe pour enregistrer les nouveaux utilisateurs, veuillez s’il vous plaît cliquer sur le lien suivant." + +#: [adhoc]title +msgid "Actions" +msgstr "Actions" + +#: [db]legend [schema]database +msgid "Database" +msgstr "Base de données" + +#: [db]connect_error +msgid "Modl wasn't able to connect to the database" +msgstr "Modl n’a pas été en mesure de se connecter à la base de données" + +#: [db]connect_success +msgid "Movim is connected to the database" +msgstr "Movim est connecté à la base de données" + +#: [db]update +msgid "The database need to be updated" +msgstr "La base de données doit être mise à jour" + +#: [db]up_to_date +msgid "Movim database is up to date" +msgstr "La base de donnée est à jour" + +#: [db]type +msgid "Database Type" +msgstr "Type de base de données" + +#: [db]username [credentials]username [input]username +msgid "Username" +msgstr "Identifiant" + +#: [db]host msgid "Host" msgstr "Hôte" -#: ../cache/locales.php:34 +#: [db]port msgid "Port" msgstr "Port" -#: ../cache/locales.php:35 -msgid "Database Name" +#: [db]name +#, fuzzy +msgid "Database sName" msgstr "Nom de la base de données" -#: ../cache/locales.php:36 +#: [admin]general msgid "General Settings" msgstr "Paramètres généraux" -#: ../cache/locales.php:37 +#: [general]theme msgid "Theme" msgstr "Thème" -#: ../cache/locales.php:38 +#: [general]language msgid "Default language" msgstr "Langue par défaut" -#: ../cache/locales.php:39 -msgid "Environment" -msgstr "Environnement" - -#: ../cache/locales.php:40 +#: [general]log_verbosity msgid "Log verbosity" msgstr "Niveau de détail des journaux" -#: ../cache/locales.php:41 +#: [general]timezone msgid "Server Timezone" msgstr "Fuseau horaire du serveur" -#: ../cache/locales.php:42 +#: [general]limit msgid "User folder size limit (in bytes)" msgstr "Taille limite du dossier des utilisateurs (en octets)" -#: ../cache/locales.php:43 +#: [websocket]title msgid "WebSocket Configuration" msgstr "Configuration du WebSocket" -#: ../cache/locales.php:44 +#: [websocket]info msgid "Enter here a valid WebSocket URI in the form" msgstr "Veuillez saisir une URI WebSocket valide dans le formulaire" -#: ../cache/locales.php:45 +#: [websocket]label msgid "WebSocket URI" msgstr "URI du WebSocket" -#: ../cache/locales.php:46 -msgid "" -"If you change the URI, please restart the daemon to reload the configuration" -msgstr "" -"Si vous changez l’URI, veuillez relancer le démon afin de prendre en compte " -"la configuration" +#: [websocket]save_info +msgid "If you change the URI, please restart the daemon to reload the configuration" +msgstr "Si vous changez l’URI, veuillez relancer le démon afin de prendre en compte la configuration" -#: ../cache/locales.php:47 +#: [websocket]publics msgid "Public WebSockets" msgstr "WebSockets publics" -#: ../cache/locales.php:48 +#: [credentials]title msgid "Administration Credential" msgstr "Identification de l’administrateur" -#: ../cache/locales.php:49 +#: [credentials]info msgid "Change the default credentials admin/password" msgstr "Modifiez les paramètres d’identification admin / password" -#: ../cache/locales.php:52 +#: [credentials]re_password msgid "Retype password" msgstr "Ressaisissez le mot de passe" -#: ../cache/locales.php:53 +#: [whitelist]title msgid "Whitelist - XMPP Server" msgstr "Serveurs XMPP : Liste blanche" -#: ../cache/locales.php:54 -msgid "" -"If you want to specify a list of authorized XMPP servers on your Movim pod " -"and forbid the connection on all the others please put their domain name " -"here, with comma (ex: movim.eu,jabber.fr)" -msgstr "" -"Si vous souhaitez établir une liste de serveurs XMPP autorisés sur votre pod " -"Movim et interdire la connexion à tous les autres, veuillez saisir la liste " -"de leurs noms de domaine, séparés par une virgule (ex : movim.eu, jabber.fr)." +#: [whitelist]info1 +msgid "If you want to specify a list of authorized XMPP servers on your Movim pod and forbid the connection on all the others please put their domain name here, with comma (ex: movim.eu,jabber.fr)" +msgstr "Si vous souhaitez établir une liste de serveurs XMPP autorisés sur votre pod Movim et interdire la connexion à tous les autres, veuillez saisir la liste de leurs noms de domaine, séparés par une virgule (ex : movim.eu, jabber.fr)." -#: ../cache/locales.php:55 -msgid "" -"Leave this field blank if you allow the access to all the XMPP accounts." -msgstr "" -"Laissez ce champ vide si vous souhaitez autoriser la connexion à tous les " -"comptes XMPP." +#: [whitelist]info2 +msgid "Leave this field blank if you allow the access to all the XMPP accounts." +msgstr "Laissez ce champ vide si vous souhaitez autoriser la connexion à tous les comptes XMPP." -#: ../cache/locales.php:56 +#: [whitelist]label msgid "List of whitelisted XMPP servers" msgstr "Liste blanche des serveurs XMPP" -#: ../cache/locales.php:57 ../cache/locales.php:61 +#: [information]title +#, fuzzy +msgctxt "[information]title" msgid "Information Message" msgstr "Message d’information" -#: ../cache/locales.php:58 +#: [information]description msgid "Description" msgstr "Description" -#: ../cache/locales.php:59 +#: [information]info1 msgid "This message will be displayed on the login page" msgstr "Ce message sera affiché sur la page de connexion." -#: ../cache/locales.php:60 -msgid "Leave this field blank if you don't want to show any message." +#: [information]info2 +#, fuzzy +msgid "Leave this field blank if you dont want to show any message." msgstr "Laissez ce champ vide si vous ne voulez afficher aucun message." -#: ../cache/locales.php:62 +#: [information]label +#, fuzzy +msgctxt "[information]label" +msgid "Information Message" +msgstr "Message d’information" + +#: [log]empty msgid "Empty" msgstr "Vide" -#: ../cache/locales.php:63 +#: [log]syslog msgid "Syslog" msgstr "Journal système (syslog)" -#: ../cache/locales.php:64 +#: [log]syslog_files msgid "Syslog and files" msgstr "Journal système et fichiers" -#: ../cache/locales.php:65 +#: [rewrite]title msgid "URL Rewriting" msgstr "Réécriture d'URL" -#: ../cache/locales.php:66 +#: [rewrite]info msgid "The URL Rewriting can be enabled" msgstr "La réécriture d'URL peut être activée" -#: ../cache/locales.php:67 +#: [admin]compatibility msgid "General Overview" msgstr "Aperçu général" -#: ../cache/locales.php:68 -msgid "" -"Movim has found some issues or things that need to be fixed or improved" -msgstr "" -"Movim a rencontré des problèmes ou des choses qui doivent être corrigés ou " -"améliorés" +#: [compatibility]info +msgid "Movim has found some issues or things that need to be fixed or improved" +msgstr "Movim a rencontré des problèmes ou des choses qui doivent être corrigés ou améliorés" -#: ../cache/locales.php:69 -#, php-format +#: [compatibility]php1 msgid "Update your PHP-Version: %s" msgstr "Mettez à jour votre version de PHP : %s" -#: ../cache/locales.php:70 +#: [compatibility]php2 msgid "Required: 5.3.0" msgstr "Requis : 5.3.0" -#: ../cache/locales.php:71 +#: [compatibility]curl msgid "Install the php5-curl library" msgstr "Installer la bibliothèque php5-curl" -#: ../cache/locales.php:72 +#: [compatibility]imagick msgid "Install the php5-imagick library" msgstr "Installez la bibliothèque php5-imagick" -#: ../cache/locales.php:73 +#: [compatibility]gd msgid "Install the php5-gd library" msgstr "Installez la librairie php5-gd" -#: ../cache/locales.php:74 -msgid "Read and write rights for the webserver in Movim's root directory" -msgstr "" -"Droits de lecture et d’écriture pour le serveur web dans le dossier racine " -"de Movim" +#: [compatibility]rights +#, fuzzy +msgid "Read and write rights for the webserver in Movims root directory" +msgstr "Droits de lecture et d’écriture pour le serveur web dans le dossier racine de Movim" -#: ../cache/locales.php:75 +#: [compatibility]rewrite msgid "The URL Rewriting support is currently disabled" -msgstr "" -"Le support des URI simplifiées (URL Rewriting) est actuellement désactivé" +msgstr "Le support des URI simplifiées (URL Rewriting) est actuellement désactivé" -#: ../cache/locales.php:76 +#: [compatibility]db msgid "The database need to be updated, go to the database panel to fix this" -msgstr "" -"La base de données doit être mise à jour, allez dans son panneau pour " -"résoudre ce problème" +msgstr "La base de données doit être mise à jour, allez dans son panneau pour résoudre ce problème" -#: ../cache/locales.php:77 -msgid "" -"WebSocket connection error, check if the Movim Daemon is running and is " -"reacheable" +#: [compatibility]websocket +msgid "WebSocket connection error, check if the Movim Daemon is running and is reachable" msgstr "" -#: ../cache/locales.php:78 -msgid "" -"XMPP Websocket connection error, please check the validity of the URL given " -"in the General Configuration" -msgstr "" -"Erreur de connexion XMPP Websocket, s'il vous plaît vérifier la validité de " -"l'URL donnée dans la configuration générale" +#: [compatibility]xmpp_websocket +msgid "XMPP Websocket connection error, please check the validity of the URL given in the General Configuration" +msgstr "Erreur de connexion XMPP Websocket, s'il vous plaît vérifier la validité de l'URL donnée dans la configuration générale" -#: ../cache/locales.php:79 +#: [schema]browser msgid "Browser" msgstr "Navigateur" -#: ../cache/locales.php:80 +#: [schema]movim msgid "Movim Core" msgstr "" -#: ../cache/locales.php:81 +#: [schema]daemon msgid "Movim Daemon" msgstr "Démon Movim" -#: ../cache/locales.php:84 +#: [schema]xmpp msgid "XMPP" msgstr "XMPP" -#: ../cache/locales.php:86 -#, php-format -msgid "" -"Here you can register your pod on the official %sMovim API%s and be listed " -"on %sthe pods page%s." -msgstr "" -"Vous pouvez enregistrer ici votre pod sur %sl’API officielle%s et être listé " -"sur %sla page des pods%s." +#: [api]info +msgid "Here you can register your pod on the official %sMovim API%s and be listed on %sthe pods page%s." +msgstr "Vous pouvez enregistrer ici votre pod sur %sl’API officielle%s et être listé sur %sla page des pods%s." -#: ../cache/locales.php:87 +#: [api]register msgid "Your pod is not registered on the API" msgstr "Votre pod n’est pas enregistré sur l’API" -#: ../cache/locales.php:88 +#: [api]registered msgid "Your pod is registered on the API" msgstr "Votre pod est enregistré sur l’API" -#: ../cache/locales.php:89 +#: [api]wait msgid "Your pod is not yet validated" msgstr "Votre pod n’est pas encore validé" -#: ../cache/locales.php:90 +#: [api]validated msgid "Your pod is validated" msgstr "Votre pod est validé" -#: ../cache/locales.php:91 -msgid "" -"You asked to be removed from the API, this request will be processed in a " -"couple of hours" -msgstr "" -"Votre demande de désinscription a été prise en compte, elle sera effective " -"dans quelques heures" +#: [api]unregister +msgid "You asked to be removed from the API, this request will be processed in a couple of hours" +msgstr "Votre demande de désinscription a été prise en compte, elle sera effective dans quelques heures" -#: ../cache/locales.php:92 ../cache/locales.php:147 +#: [api]conf_updated [config]updated msgid "Configuration updated" msgstr "Configuration mise à jour" -#: ../cache/locales.php:93 +#: [avatar]file msgid "File" msgstr "Fichier" -#: ../cache/locales.php:94 +#: [avatar]use_it msgid "Use it" msgstr "Utiliser" -#: ../cache/locales.php:95 +#: [avatar]webcam msgid "Webcam" msgstr "Caméra" -#: ../cache/locales.php:96 +#: [avatar]cheese msgid "Cheese !" msgstr "Souriez !" -#: ../cache/locales.php:97 +#: [avatar]snapshot msgid "Take a webcam snapshot" msgstr "Prendre une photo avec votre webcam" -#: ../cache/locales.php:98 +#: [avatar]updated msgid "Avatar Updated" msgstr "Avatar mis à jour" -#: ../cache/locales.php:99 +#: [avatar]not_updated msgid "Avatar Not Updated" msgstr "Avatar non mis à jour" -#: ../cache/locales.php:100 ../cache/locales.php:415 -#, php-format +#: [blog]title [feed]title msgid "%s's feed" msgstr "Flux de %s" -#: ../cache/locales.php:101 +#: [blog]empty msgid "This user has not posted anything right now" msgstr "Cet utilisateur n'a rien publié pour le moment" -#: ../cache/locales.php:102 +#: [title]conferences msgid "Conferences" msgstr "Conférences" -#: ../cache/locales.php:103 ../cache/locales.php:193 ../cache/locales.php:217 -#: ../cache/locales.php:468 +#: [title]groups [group]empty_title [menu]groups [page]groups msgid "Groups" msgstr "Groupes" -#: ../cache/locales.php:104 +#: [chatroom]add msgid "Add a new Chat Room" msgstr "Ajouter un nouveau salon" -#: ../cache/locales.php:105 ../cache/locales.php:368 +#: [chatroom]id [chatrooms]id msgid "Chat Room ID" msgstr "Identifiant du salon" -#: ../cache/locales.php:106 ../cache/locales.php:116 ../cache/locales.php:156 -#: ../cache/locales.php:361 ../cache/locales.php:369 ../cache/locales.php:424 +#: [chatroom]name +#, fuzzy +msgctxt "[chatroom]name" msgid "Name" msgstr "Nom" -#: ../cache/locales.php:107 ../cache/locales.php:157 ../cache/locales.php:371 -#: ../cache/locales.php:425 +#: [chatroom]nickname [general]nickname [chatrooms]nickname msgid "Nickname" msgstr "Pseudonyme" -#: ../cache/locales.php:108 +#: [chatroom]autojoin_label msgid "Do you want do join automaticaly this Chat Room ?" msgstr "Voulez vous rejoindre automatiquement ce salon ?" -#: ../cache/locales.php:109 ../cache/locales.php:372 +#: [chatroom]bad_id [chatrooms]bad_id msgid "Bad Chatroom ID" msgstr "Mauvais identifiant de salon de discussion" -#: ../cache/locales.php:110 ../cache/locales.php:373 +#: [chatroom]empty_name [chatrooms]empty_name msgid "Empty name" msgstr "Nom vide" -#: ../cache/locales.php:111 ../cache/locales.php:380 +#: [bookmarks]updated msgid "Bookmarks updated" msgstr "Signets mis à jour" -#: ../cache/locales.php:112 -msgid "An error occured : " +#: [bookmarks]error +#, fuzzy +msgid "An error occured :" msgstr "Une erreur s’est produite : " -#: ../cache/locales.php:113 +#: [bookmarks]configure msgid "Configure" msgstr "Configurer" -#: ../cache/locales.php:114 +#: [url]add msgid "Add a new URL" msgstr "Ajouter un nouveau lien" -#: ../cache/locales.php:115 +#: [url]url msgid "URL" msgstr "URL" -#: ../cache/locales.php:117 +#: [url]name +#, fuzzy +msgctxt "[url]name" +msgid "Name" +msgstr "Nom" + +#: [message]published msgid "Message Published" msgstr "Message publié" -#: ../cache/locales.php:118 ../cache/locales.php:138 +#: [message]encrypted msgid "Encrypted message" msgstr "Message chiffré" -#: ../cache/locales.php:119 +#: [message]composing [chats]composing msgid "Composing..." msgstr "Rédige..." -#: ../cache/locales.php:120 +#: [message]paused [chats]paused msgid "Paused..." msgstr "En pause…" -#: ../cache/locales.php:121 +#: [message]gone msgid "Contact gone" msgstr "Le contact est absent pour le moment" -#: ../cache/locales.php:122 -#, php-format +#: [chat]attention msgid "%s needs your attention" msgstr "%s a besoin de votre attention" -#: ../cache/locales.php:123 +#: [chat]placeholder msgid "Your message here..." msgstr "Votre message ici…" -#: ../cache/locales.php:124 +#: [chat]smileys msgid "Smileys" msgstr "Émoticônes" -#: ../cache/locales.php:125 ../cache/locales.php:139 +#: [chat]empty_title [button]chat msgid "Chat" msgstr "Clavardage" -#: ../cache/locales.php:126 +#: [chat]empty_text msgid "Discuss with your contacts" msgstr "Discuter avec vos contacts" -#: ../cache/locales.php:127 -msgid "Members" -msgstr "Membres" - -#: ../cache/locales.php:128 ../cache/locales.php:376 -msgid "Connected to the chatroom" -msgstr "Connecté au salon" - -#: ../cache/locales.php:129 ../cache/locales.php:377 -msgid "Disconnected from the chatroom" -msgstr "Déconnecté du salon" - -#: ../cache/locales.php:130 ../cache/locales.php:200 ../cache/locales.php:469 -msgid "Configuration" -msgstr "Configuration" - -#: ../cache/locales.php:131 -msgid "Configuration saved" -msgstr "Configuration enregistrée" - -#: ../cache/locales.php:132 -msgid "Subject" -msgstr "Sujet" - -#: ../cache/locales.php:133 -msgid "Subject changed" -msgstr "Sujet mis à jour" - -#: ../cache/locales.php:134 -msgid "Open a new conversation by clicking on the plus button bellow" -msgstr "" -"Commencez une nouvelle conversation en cliquant sur le bouton plus ci-dessous" - -#: ../cache/locales.php:135 -msgid "Chat with a contact" -msgstr "Discuter avec un contact" - -#: ../cache/locales.php:136 +#: [chat]frequent [chats]frequent msgid "Frequent contacts" msgstr "Contacts fréquent" -#: ../cache/locales.php:137 +#: [chatroom]members +msgid "Members" +msgstr "Membres" + +#: [chatroom]connected [chatrooms]connected +msgid "Connected to the chatroom" +msgstr "Connecté au salon" + +#: [chatroom]disconnected [chatrooms]disconnected +msgid "Disconnected from the chatroom" +msgstr "Déconnecté du salon" + +#: [chatroom]config [group]configuration [page]configuration +msgid "Configuration" +msgstr "Configuration" + +#: [chatroom]config_saved +msgid "Configuration saved" +msgstr "Configuration enregistrée" + +#: [chatroom]subject +msgid "Subject" +msgstr "Sujet" + +#: [chatroom]subject_changed +msgid "Subject changed" +msgstr "Sujet mis à jour" + +#: [chats]empty_title +#, fuzzy +msgid "No chats yet..." +msgstr "Pas de commentaires pour le moment" + +#: [chats]empty +#, fuzzy +msgid "Open a new conversation by clicking on the plus button bellow or visit the Contacts page." +msgstr "Commencez une nouvelle conversation en cliquant sur le bouton plus ci-dessous" + +#: [chats]add +msgid "Chat with a contact" +msgstr "Discuter avec un contact" + +#: [chats]more msgid "Load more contacts" msgstr "Afficher plus de contacts" -#: ../cache/locales.php:140 -msgid "General" -msgstr "Paramètres généraux" - -#: ../cache/locales.php:141 -msgid "Language" -msgstr "Langue" - -#: ../cache/locales.php:142 -msgid "Roster display" -msgstr "Affichage de la liste de contact" - -#: ../cache/locales.php:143 -msgid "Show the offline contacts" -msgstr "Afficher les contacts hors ligne" - -#: ../cache/locales.php:144 -msgid "Hide the offline contacts" -msgstr "Cacher les contacts hors ligne" - -#: ../cache/locales.php:145 -msgid "Appearence" -msgstr "Apparence" - -#: ../cache/locales.php:146 -msgid "This configuration is shared wherever you are connected !" -msgstr "Cette configuration est partagée partout où vous vous connectez !" - -#: ../cache/locales.php:148 -msgid "Notify on incoming message" -msgstr "Notifier lors d’un message entrant" - -#: ../cache/locales.php:149 -msgid "Use desktop notifications" -msgstr "Utiliser les notifications bureau" - -#: ../cache/locales.php:150 +#: [title]data msgid "Data" msgstr "Données" -#: ../cache/locales.php:151 +#: [title]cache msgid "Cache" msgstr "Cache" -#: ../cache/locales.php:152 ../cache/locales.php:218 ../cache/locales.php:466 +#: [title]contacts [menu]contacts [page]contacts msgid "Contacts" msgstr "Contacts" -#: ../cache/locales.php:153 ../cache/locales.php:480 +#: [title]posts [page]posts msgid "Posts" msgstr "Billets" -#: ../cache/locales.php:154 +#: [title]messages msgid "Messages" msgstr "Messages" -#: ../cache/locales.php:155 ../cache/locales.php:423 +#: [config]general +msgid "General" +msgstr "Paramètres généraux" + +#: [config]language +msgid "Language" +msgstr "Langue" + +#: [config]roster +msgid "Roster display" +msgstr "Affichage de la liste de contact" + +#: [config]roster_show +msgid "Show the offline contacts" +msgstr "Afficher les contacts hors ligne" + +#: [config]roster_hide +msgid "Hide the offline contacts" +msgstr "Cacher les contacts hors ligne" + +#: [config]appearence +msgid "Appearence" +msgstr "Apparence" + +#: [config]info +#, fuzzy +msgid "This configuration is shared wherever you are connected" +msgstr "Cette configuration est partagée partout où vous vous connectez !" + +#: [notifications]message +msgid "Notify on incoming message" +msgstr "Notifier lors d’un message entrant" + +#: [notifications]desktop +msgid "Use desktop notifications" +msgstr "Utiliser les notifications bureau" + +#: [general]legend [general]general_title msgid "General Informations" msgstr "Informations générales" -#: ../cache/locales.php:158 ../cache/locales.php:427 +#: [general]name [public_groups]name [chatrooms]name +msgid "Name" +msgstr "Nom" + +#: [general]date_of_birth msgid "Date of Birth" msgstr "Date de naissance" -#: ../cache/locales.php:159 ../cache/locales.php:428 +#: [general]gender msgid "Gender" msgstr "Sexe" -#: ../cache/locales.php:160 ../cache/locales.php:429 +#: [general]marital msgid "Marital Status" msgstr "Situation familiale" -#: ../cache/locales.php:161 ../cache/locales.php:426 +#: [general]email msgid "Email" msgstr "Courriel" -#: ../cache/locales.php:162 ../cache/locales.php:430 +#: [general]website msgid "Website" msgstr "Site web" -#: ../cache/locales.php:163 ../cache/locales.php:431 +#: [general]about msgid "About Me" msgstr "À propos de moi" -#: ../cache/locales.php:164 +#: [general]accounts msgid "Other Accounts" msgstr "Autres comptes" -#: ../cache/locales.php:165 +#: [general]tune msgid "Is Listening" msgstr "En écoute" -#: ../cache/locales.php:166 ../cache/locales.php:432 +#: [position]legend [position]position_title msgid "Geographic Position" msgstr "Position géographique" -#: ../cache/locales.php:167 ../cache/locales.php:433 +#: [position]locality msgid "Locality" msgstr "Ville" -#: ../cache/locales.php:168 ../cache/locales.php:434 +#: [position]country msgid "Country" msgstr "Pays" -#: ../cache/locales.php:169 +#: [mood]title msgid "Mood" msgstr "Humeur" -#: ../cache/locales.php:170 +#: [mood]im msgid "I'm " msgstr "Je suis " -#: ../cache/locales.php:171 +#: [listen]title msgid "Listening" msgstr "En écoute" -#: ../cache/locales.php:173 +#: [last]title msgid "Last seen" msgstr "Dernière apparition" -#: ../cache/locales.php:174 +#: [client]title msgid "Client Informations" msgstr "Informations sur le client" -#: ../cache/locales.php:175 +#: [explore]last_registered msgid "Last registered" msgstr "Dernier enregistré" -#: ../cache/locales.php:176 +#: [explore]explore msgid "Find some new friends" msgstr "Cherche de nouveaux amis" -#: ../cache/locales.php:177 ../cache/locales.php:533 +#: [edit]title [button]edit msgid "Edit" msgstr "Modifier" -#: ../cache/locales.php:178 +#: [edit]alias msgid "Alias" msgstr "Alias" -#: ../cache/locales.php:179 +#: [edit]group msgid "Group" msgstr "Groupe" -#: ../cache/locales.php:180 ../cache/locales.php:400 +#: [edit]updated [roster]updated msgid "Contact updated" msgstr "Contact mis à jour" -#: ../cache/locales.php:181 +#: [delete]title msgid "Are you sure?" msgstr "Êtes-vous sûr ?" -#: ../cache/locales.php:182 -msgid "" -"You are going to delete one of your contacts, please confirm your action" -msgstr "" -"Vous allez supprimer l’un de vos contacts, confirmez s’il vous plaît." +#: [delete]text +msgid "You are going to delete one of your contacts, please confirm your action" +msgstr "Vous allez supprimer l’un de vos contacts, confirmez s’il vous plaît." -#: ../cache/locales.php:183 -#, php-format +#: [age]years msgid "%s years" msgstr "%s ans" -#: ../cache/locales.php:184 +#: [blog]last msgid "Last public post" msgstr "Derniers billets public" -#: ../cache/locales.php:185 +#: [subscription]to +#, fuzzy +msgid "You can see this contact status" +msgstr "Pas de flux public pour ce contact" + +#: [subscription]to_button +msgid "Share my status" +msgstr "" + +#: [subscription]to_text +msgid "But this contact cannot see yours" +msgstr "" + +#: [subscription]from +#, fuzzy +msgid "You are not subscribed to this contact" +msgstr "Vous allez vous désinscrire de ce Groupe." + +#: [subscription]from_button +#, fuzzy +msgid "Ask to subscribe" +msgstr "%s souscrits" + +#: [subscription]from_text +msgid "But this contact can still see if you are online" +msgstr "" + +#: [subscription]nil +#, fuzzy +msgid "No subscriptions" +msgstr "Abonnements" + +#: [subscription]nil_button +msgid "Invite" +msgstr "" + +#: [subscription]nil_text +msgid "This contact is in your contact list but there is no subscriptions between the two accounts" +msgstr "" + +#: [group]subscribe msgid "Subscribe" msgstr "S’abonner" -#: ../cache/locales.php:186 +#: [group]subscribed msgid "Subscribed" msgstr "Abonné" -#: ../cache/locales.php:187 +#: [group]unsubscribe msgid "Unsubscribe" msgstr "Se désabonner" -#: ../cache/locales.php:188 +#: [group]unsubscribe_text msgid "You are going to unsubscribe from this Group" msgstr "Vous allez vous désinscrire de ce Groupe." -#: ../cache/locales.php:189 +#: [group]unsubscribed msgid "Unsubscribed" msgstr "Désinscrit(e)" -#: ../cache/locales.php:190 +#: [group]share_label msgid "Make your membership to this group public to your friends" msgstr "Partagez votre adhésion à ce groupe avec vos amis" -#: ../cache/locales.php:191 +#: [group]label_label msgid "Give a label for this group" msgstr "Donnez un nom personnalisé pour ce Groupe" -#: ../cache/locales.php:192 +#: [group]sure msgid "Are you sure ?" msgstr "Êtes-vous sûr ?" -#: ../cache/locales.php:194 +#: [group]empty_text msgid "Discover, follow and share" msgstr "Découvrire, suivre et partager" -#: ../cache/locales.php:195 +#: [group]empty msgid "Something bad happened to this group" msgstr "Ce groupe ne semble pas disponible pour le moment" -#: ../cache/locales.php:196 +#: [group]config_saved msgid "Group configuration saved" msgstr "Configuration du groupe sauvegardée" -#: ../cache/locales.php:197 +#: [group]delete_title msgid "Delete the group" msgstr "Supprimer ce groupe" -#: ../cache/locales.php:198 -msgid "" -"You are going to delete the following group. Please confirm your action." +#: [group]delete_text +msgid "You are going to delete the following group. Please confirm your action." msgstr "Vous allez supprimer ce groupe. Veuillez confirmer votre action." -#: ../cache/locales.php:199 -msgid "" -"It seems that this group doesn't exists anymore. Do you want to remove it " -"from your subscriptions?" -msgstr "" -"Il semblerait que que groupe n'existe plus. Souhaitez-vous le supprimer de " -"vos favoris?" +#: [group]delete_clean_text +msgid "It seems that this group doesn't exists anymore. Do you want to remove it from your subscriptions?" +msgstr "Il semblerait que que groupe n'existe plus. Souhaitez-vous le supprimer de vos favoris?" -#: ../cache/locales.php:201 ../cache/locales.php:408 +#: [group]counter +msgid "%s groups on this server" +msgstr "" + +#: [group]subscriptions [statistics]subscriptions msgid "Subscriptions" msgstr "Abonnements" -#: ../cache/locales.php:202 ../cache/locales.php:290 +#: [group]servers +#, fuzzy +msgid "Groups servers" +msgstr "Groupes" + +#: [group]search_server +msgid "Search for a new server" +msgstr "" + +#: [group]help_info1 +msgid "Groups are the perfect way to share posts about topics that you like with all the other Movim's users." +msgstr "" + +#: [group]help_info2 +msgid "Choose a server and a Group and subscribe to it using the %s button in the header. You can also create a new one using the %s button." +msgstr "" + +#: [group]help_info3 +msgid "Done? You can now publish a new post in the Group by using the %s button." +msgstr "" + +#: [group]help_info4 +msgid "You will find a list of all your subscribed Groups in My Subscriptions and receive instantly all the new incoming posts in the %sNews%s page." +msgstr "" + +#: [groups]empty_title msgid "Hello" msgstr "Salut" -#: ../cache/locales.php:203 ../cache/locales.php:225 ../cache/locales.php:291 +#: [groups]contact_post [hello]contact_post [menu]contact_post msgid "Contact post" msgstr "Billet d’un contact" -#: ../cache/locales.php:204 -msgid "" -"You don't have any subscriptions yet, select a group server above to start " -"exploring." -msgstr "" -"Vous n'avez souscrit à aucun groupe pour le moment, choisissez un serveur de " -"groupes ci-dessous et commencer à explorer." +#: [groups]empty_text1 +msgid "You don't have any subscriptions yet, select a group server above to start exploring." +msgstr "Vous n'avez souscrit à aucun groupe pour le moment, choisissez un serveur de groupes ci-dessous et commencer à explorer." -#: ../cache/locales.php:205 +#: [groups]empty_text2 msgid "Subscribe to your favorite feeds by bookmarking them." msgstr "Souscrivez à vos groupes favorits en les mettant en favoris." -#: ../cache/locales.php:206 +#: [groups]subscriptions msgid "My Subscriptions" msgstr "Mes Souscriptions" -#: ../cache/locales.php:207 +#: [groups]add msgid "Create a new Group" msgstr "Créer un nouveau Groupe" -#: ../cache/locales.php:208 +#: [groups]name msgid "Group name" msgstr "Nom du Groupe" -#: ../cache/locales.php:209 +#: [groups]name_example msgid "My Little Pony - Fan Club" msgstr "Mon Petit Poney – Fan-club" -#: ../cache/locales.php:210 +#: [groups]created msgid "Group created successfully" msgstr "Groupe créé avec succès" -#: ../cache/locales.php:211 +#: [groups]deleted msgid "Group deleted successfully" msgstr "Groupe supprimé avec succès" -#: ../cache/locales.php:212 +#: [groups]name_error msgid "Please provide a valid group name (4 characters minimum)" msgstr "" -#: ../cache/locales.php:213 +#: [groups]no_creation msgid "You cannot create a new Group on this server" msgstr "" -#: ../cache/locales.php:214 -#, php-format +#: [groups]sub msgid "%s subscribers" msgstr "%s souscrits" -#: ../cache/locales.php:215 -#, php-format +#: [groups]num msgid "%s posts" msgstr "%s billets" -#: ../cache/locales.php:216 +#: [groups]disco_error +#, fuzzy +msgid "This server doesn't exists" +msgstr "Ce serveur héberge %s comptes" + +#: [menu]all msgid "All" msgstr "Tous" -#: ../cache/locales.php:219 +#: [menu]refresh msgid "Refresh all the streams" msgstr "Rafraîchir tous les flux" -#: ../cache/locales.php:220 ../cache/locales.php:402 -msgid "Search" -msgstr "Rechercher" +#: [roster]search +#, fuzzy +msgid "Search in your contacts" +msgstr "Discuter avec vos contacts" -#: ../cache/locales.php:221 +#: [hello]active_contacts +#, fuzzy +msgid "Active contacts" +msgstr "Vos contacts" + +#: [hello]chat msgid "Go on the Chat page" msgstr "Aller sur la page Discussions" -#: ../cache/locales.php:222 -msgid "Read all theses articles on the News page" -msgstr "Lire tous ces articles sur la page Actualité" - -#: ../cache/locales.php:223 -msgid "Visit your public blog" -msgstr "Aller sur votre blog publique" - -#: ../cache/locales.php:224 -msgid "See your public posts and share them with all your contacts" -msgstr "Voir vos billets publics et les partager avec tous vos contacts" - -#: ../cache/locales.php:226 -msgid "Universal share button" -msgstr "Bouton partager universel." - -#: ../cache/locales.php:227 -msgid "" -"Bookmark or drag and drop the following button in your toolbar and use it on " -"all the pages you want to share on Movim" -msgstr "" -"Cliquez-déposez ou mettez en favoris dans votre navigateur le bouton suivant " -"et utilisez le sur toutes les pages que vous voulez partager sur Movim" - -#: ../cache/locales.php:228 -msgid "Share on Movim" -msgstr "Partager sur Movim" - -#: ../cache/locales.php:229 -msgid "Frequently Asked Questions" -msgstr "Foire aux questions" - -#: ../cache/locales.php:230 -msgid "What do the little banners refer to ?" -msgstr "À quoi correspondent les petits fanions de l’interface ?" - -#: ../cache/locales.php:231 -msgid "" -"Thanks to these five little banners, you can quickly identitfy the level of " -"confdentiality applied to the information you provide." -msgstr "" -"Ces 5 petits fanions vous permettent, en un coup d’œil, de connaitre la " -"confidentialité des données que vous publiez." - -#: ../cache/locales.php:232 -msgid "White, only you can see the information" -msgstr "Blanc, les données ne sont visibles que par vous-même" - -#: ../cache/locales.php:233 -msgid "Green, you have chosen some contacts who can see your information" -msgstr "Vert, les données ne sont visibles que par les contacts choisis" - -#: ../cache/locales.php:234 -msgid "Orange, all your contact list can see your information" -msgstr "Orange, les données sont visibles par toute votre liste de contacts" - -#: ../cache/locales.php:235 -msgid "Red, everybody in the XMPP network can see your information" -msgstr "" -"Rouge, les données sont visibles par tout le monde au sein du réseau XMPP" - -#: ../cache/locales.php:236 -msgid "Black, the whole Internet can see your information" -msgstr "Noir, les données sont visibles par tout le monde sur internet" - -#: ../cache/locales.php:237 -msgid "Looking for some documentation ?" -msgstr "Vous cherchez de la documentation?" - -#: ../cache/locales.php:238 -msgid "Read the Wiki" -msgstr "Lisez le wiki" - -#: ../cache/locales.php:239 -msgid "Talk with us by email ?" -msgstr "Nous contacter par courriel ?" - -#: ../cache/locales.php:240 -msgid "Join the Mailing List" -msgstr "Rejoindre la Mailing-list" - -#: ../cache/locales.php:241 -msgid "Chat with the team ?" -msgstr "Discuter avec l’équipe ?" - -#: ../cache/locales.php:242 -msgid "Join the Chatroom" -msgstr "Rejoindre le salon de discussion" - -#: ../cache/locales.php:243 -msgid "Location node created" -msgstr "Nœud de géolocalisation créé" - -#: ../cache/locales.php:244 -msgid "Bookmark node created" -msgstr "Nœud des signets créé" - -#: ../cache/locales.php:245 -msgid "Profile node created" -msgstr "Nœud du profil créé" - -#: ../cache/locales.php:246 -msgid "Avatar node created" -msgstr "Nœud de l’avatar créé" - -#: ../cache/locales.php:247 -msgid "Subscriptions node created" -msgstr "Nœud des abonnements créé" - -#: ../cache/locales.php:248 -msgid "Microblog node created" -msgstr "Nœud du microblog créé" - -#: ../cache/locales.php:249 -msgid "Location" -msgstr "Position" - -#: ../cache/locales.php:250 -msgid "Wrong position" -msgstr "Mauvaise position" - -#: ../cache/locales.php:251 -msgid "Location updated" -msgstr "Position géographique mise à jour" - -#: ../cache/locales.php:252 -msgid "Update my position" -msgstr "Mettre à jour ma position" - -#: ../cache/locales.php:253 -msgid "Wrong username" -msgstr "Nom d’utilisateur incorrect" - -#: ../cache/locales.php:254 -msgid "Invalid JID" -msgstr "Identifiant Jabber incorrect" - -#: ../cache/locales.php:255 -msgid "Empty Challenge from the server" -msgstr "La paquet Challenge du serveur est vide" - -#: ../cache/locales.php:256 -msgid "XMPP Domain error, your account is not a correct Jabber ID" -msgstr "" -"Erreur de domaine XMPP, votre compte n’est pas un identifiant Jabber correct" - -#: ../cache/locales.php:257 -msgid "Some data are missing !" -msgstr "Il manque des informations !" - -#: ../cache/locales.php:258 -msgid "Wrong password" -msgstr "Mot de passe incorrect" - -#: ../cache/locales.php:259 -msgid "Internal server error" -msgstr "Erreur interne du serveur" - -#: ../cache/locales.php:260 -msgid "Session error" -msgstr "Erreur de session" - -#: ../cache/locales.php:261 -msgid "Account successfully created" -msgstr "Compte créé avec succès" - -#: ../cache/locales.php:262 ../cache/locales.php:271 -msgid "Your XMPP server is unauthorized" -msgstr "Votre compte XMPP n’est pas autorisé à se connecter" - -#: ../cache/locales.php:263 -msgid "The server takes too much time to respond" -msgstr "Le serveur met trop de temps à répondre" - -#: ../cache/locales.php:264 -msgid "Your web browser is too old to use with Movim." -msgstr "Votre navigateur est trop vieux pour prendre en charge Movim" - -#: ../cache/locales.php:265 -msgid "" -"Movim cannot talk with the server, please try again later (Websocket " -"connection error)" -msgstr "" -"Movim ne peut pas communiquer avec le serveur, veuillez réessayer plus tard " -"(erreur de connexion WebSocket)" - -#: ../cache/locales.php:266 -msgid "Impossible login" -msgstr "Authentification impossible" - -#: ../cache/locales.php:267 -msgid "Oops!" -msgstr "Oups !" - -#: ../cache/locales.php:268 ../cache/locales.php:449 ../cache/locales.php:455 -msgid "Unknown error" -msgstr "Erreur inconnue" - -#: ../cache/locales.php:269 -msgid "Invalid username format" -msgstr "Le format de l'identifiant n'est pas correct" - -#: ../cache/locales.php:270 -msgid "Invalid password format" -msgstr "Mot de passe non valide" - -#: ../cache/locales.php:272 -msgid "A Movim session is already open on an other device" -msgstr "Une session Movim est déjà ouverte sur un autre ordinateur." - -#: ../cache/locales.php:273 -msgid "Movim failed to authenticate. You entered wrong data" -msgstr "" -"Movim n’a pas pu vous authentifier. Vous avez entré des données erronées." - -#: ../cache/locales.php:274 -msgid "Authentication mechanism not supported by Movim" -msgstr "Le mécanisme d’authentification n’est pas supporté par Movim" - -#: ../cache/locales.php:275 -msgid "The XMPP authentification failed" -msgstr "L’authentification au serveur XMPP a échoué" - -#: ../cache/locales.php:276 -#, php-format -msgid "" -"You can login with Facebook (chat only) using %syour.id@chat.facebook.com%s " -"and your password" -msgstr "" -"Vous pouvez vous connecter avec Facebook (messagerie instantanée uniquement) " -"en entrant %svotre.id@chat.facebook.com%s et votre mot de passe" - -#: ../cache/locales.php:277 -#, php-format -msgid "%sGmail accounts are also compatible%s but are not fully supported" -msgstr "" -"%sLes comptes Gmail sont aussi compatibles%s mais ne sont pas complètement " -"pris en charge" - -#: ../cache/locales.php:278 -msgid "You can login using your favorite Jabber account" -msgstr "Vous pouvez vous connecter avec votre compte Jabber favori" - -#: ../cache/locales.php:279 -msgid "or with our demonstration account" -msgstr "ou avec notre compte de démonstration" - -#: ../cache/locales.php:280 ../cache/locales.php:435 -msgid "Accounts" -msgstr "Comptes" - -#: ../cache/locales.php:281 -msgid "My address" -msgstr "Mon adresse" - -#: ../cache/locales.php:283 -msgid "Create one !" -msgstr "Créez-en un !" - -#: ../cache/locales.php:284 -msgid "No account yet ?" -msgstr "Pas encore de compte ?" - -#: ../cache/locales.php:285 -msgid "Another account" -msgstr "Autre compte" - -#: ../cache/locales.php:286 -msgid "You can login with accounts from theses servers" -msgstr "" -"Vous pouvez vous authentifier avec des comptes venant des serveurs suivants" - -#: ../cache/locales.php:287 -msgid "Connected" -msgstr "Connecté" - -#: ../cache/locales.php:288 -msgid "Population" -msgstr "Population" - -#: ../cache/locales.php:289 -msgid "Bad nickname (between 4 and 40 characters)" -msgstr "" - -#: ../cache/locales.php:292 -msgid "" -"Welcome on your news feed, here you will see all the posts published in the " -"groups you have subscribed." -msgstr "" -"Bienvenue sur flux d’actualité, ici vous verrez tous les billets publiés " -"dans les groupes auxquels vous vous êtes abonnés." - -#: ../cache/locales.php:293 -msgid "Refreshing all the streams" -msgstr "Rafraîchir tous les flux" - -#: ../cache/locales.php:294 -msgid "This post is public" -msgstr "Ce billet est public" - -#: ../cache/locales.php:295 -msgid "Manage your members" -msgstr "Gérer vos membres" - -#: ../cache/locales.php:296 -msgid "Get the members" -msgstr "Récupérer les membres" - -#: ../cache/locales.php:297 -msgid "Affiliations saved" -msgstr "Affiliations sauvegardées" - -#: ../cache/locales.php:298 -msgid "Manage your subscriptions" -msgstr "Gérer vos abonnements" - -#: ../cache/locales.php:299 -msgid "Manage the subscriptions" -msgstr "Gérer les abonnements" - -#: ../cache/locales.php:300 -msgid "Get the subscriptions" -msgstr "Récupérer les abonnements" - -#: ../cache/locales.php:301 -msgid "Subscriptions saved" -msgstr "Abonnements sauvegardés" - -#: ../cache/locales.php:302 -msgid "Pending Invitations" -msgstr "Invitations en attente" - -#: ../cache/locales.php:303 -#, php-format -msgid "%s wants to talk with you" -msgstr "%s veut parler avec vous" - -#: ../cache/locales.php:304 -msgid "Manage" -msgstr "Gérer" - -#: ../cache/locales.php:305 ../cache/locales.php:338 -msgid "News Feed" -msgstr "Fil d’actualité" - -#: ../cache/locales.php:306 ../cache/locales.php:339 -msgid "Discover and register to the groups you are interested in" -msgstr "Découvrez et rejoignez les groupes qui vous intéressent" - -#: ../cache/locales.php:307 ../cache/locales.php:340 ../cache/locales.php:482 -msgid "Preview" -msgstr "Aperçu" - -#: ../cache/locales.php:308 ../cache/locales.php:341 ../cache/locales.php:478 -msgid "Help" -msgstr "Aide" - -#: ../cache/locales.php:309 ../cache/locales.php:342 -msgid "More help" -msgstr "Aide supplémentaire" - -#: ../cache/locales.php:310 ../cache/locales.php:343 -msgid "Markdown syntax manual" -msgstr "Manuel d'utilisation de la syntaxe Markdown" - -#: ../cache/locales.php:311 ../cache/locales.php:344 ../cache/locales.php:681 -msgid "Title" -msgstr "Titre" - -#: ../cache/locales.php:312 ../cache/locales.php:345 -msgid "Content" -msgstr "Contenu" - -#: ../cache/locales.php:313 ../cache/locales.php:346 -msgid "Link" -msgstr "Lien" - -#: ../cache/locales.php:314 ../cache/locales.php:347 -msgid "Tags" -msgstr "Étiquettes" - -#: ../cache/locales.php:315 ../cache/locales.php:348 -msgid "Please enter a valid url" -msgstr "Veuillez entrer une URL valide" - -#: ../cache/locales.php:316 ../cache/locales.php:349 -msgid "No content to preview" -msgstr "Pas de contenu à afficher" - -#: ../cache/locales.php:317 ../cache/locales.php:350 ../cache/locales.php:687 -msgid "No content" -msgstr "Aucun contenu" - -#: ../cache/locales.php:318 ../cache/locales.php:351 -msgid "Post published" -msgstr "Bilet publié" - -#: ../cache/locales.php:319 ../cache/locales.php:352 -msgid "Post deleted" -msgstr "Billet effacé" - -#: ../cache/locales.php:320 ../cache/locales.php:353 -msgid "This picture will be added to your gallery" -msgstr "Cette image va être ajoutée à votre galerie" - -#: ../cache/locales.php:321 ../cache/locales.php:354 -msgid "What's Hot" -msgstr "Quoi de neuf" - -#: ../cache/locales.php:322 ../cache/locales.php:355 -msgid "New post" -msgstr "Nouveau billet" - -#: ../cache/locales.php:323 ../cache/locales.php:357 -msgid "" -"You can also use services like Imgur or Flickr to host your picture and " -"paste the link here." -msgstr "" -"Vous pouvez également utiliser des services comme Imgur ou Flickr pour " -"héberger vos images et coller le lien résultant ici." - -#: ../cache/locales.php:324 -#, php-format -msgid "This is a re-post from %s" -msgstr "" - -#: ../cache/locales.php:325 -#, php-format -msgid "See %s profile" -msgstr "" - -#: ../cache/locales.php:326 -msgid "Publish this post on your public feed?" -msgstr "Publier ce billet sur votre flux public?" - -#: ../cache/locales.php:327 -msgid "Post published on your blog" -msgstr "Billet publié sur votre blog" - -#: ../cache/locales.php:328 -msgid "Post removed from your blog" -msgstr "Billet retiré de votre blog" - -#: ../cache/locales.php:329 ../cache/locales.php:701 -msgid "Delete this post" -msgstr "Supprimer ce billet" - -#: ../cache/locales.php:330 -msgid "You are going to delete this post, please confirm your action" -msgstr "Vous allez supprimer ce billet, veuillez confirmer votre action." - -#: ../cache/locales.php:331 -msgid "Comments disabled" -msgstr "Commentaires désactivés." - -#: ../cache/locales.php:332 -msgid "Comment published" -msgstr "Commentaire publié." - -#: ../cache/locales.php:333 -msgid "Disconnect" -msgstr "Se déconnecter" - -#: ../cache/locales.php:334 -msgid "Your status here !" -msgstr "Votre statut ici !" - -#: ../cache/locales.php:335 -msgid "Status updated" -msgstr "Statut mis à jour" - -#: ../cache/locales.php:336 -msgid "Status" -msgstr "Statut" - -#: ../cache/locales.php:337 -msgid "Presence" -msgstr "Présence" - -#: ../cache/locales.php:356 -msgid "Publish" -msgstr "" - -#: ../cache/locales.php:358 -msgid "You cannot publish a post on this Group" -msgstr "" - -#: ../cache/locales.php:359 -msgid "" -"Some fields have been filled in. Do you still want to go back and loose " -"their content?" -msgstr "" - -#: ../cache/locales.php:360 -msgid "Shared" -msgstr "Partagé" - -#: ../cache/locales.php:362 -#, php-format -msgid "%s has been added to your public groups" -msgstr "%s a été ajouté à vos groupes publics" - -#: ../cache/locales.php:363 -#, php-format -msgid "%s has been removed from your public groups" -msgstr "%s a été supprimé de vos groupes publics" - -#: ../cache/locales.php:364 -msgid "Add a chatroom" -msgstr "Ajouter un salon de discussion" - -#: ../cache/locales.php:365 -msgid "You don't have any chatroom yet." -msgstr "Vous n'avez pas encore de salon de discussions." - -#: ../cache/locales.php:366 -msgid "Add one by clicking on the add button in the header." -msgstr "Ajoutez en un en cliquant sur le bouton plus dans l'entête." - -#: ../cache/locales.php:367 -msgid "Chatrooms" -msgstr "Salons de discussion" - -#: ../cache/locales.php:370 -msgid "My Favorite Room" -msgstr "Mon salon préféré" - -#: ../cache/locales.php:374 -msgid "Remove a chatroom" -msgstr "Enlever un salon de discussion" - -#: ../cache/locales.php:375 -msgid "" -"You are going to remove the following chatroom. Please confirm your action." -msgstr "" -"Vous allez supprimer le salon de discussion suivant de vos signets. " -"Confirmez s’il vous plaît." - -#: ../cache/locales.php:378 -msgid "Users in the room" -msgstr "Utilisateurs du salon" - -#: ../cache/locales.php:379 -msgid "Please enter a correct nickname (6 to 40 characters)" -msgstr "" - -#: ../cache/locales.php:381 -msgid "Public chatroom" -msgstr "" - -#: ../cache/locales.php:382 -msgid "Please provide a room address" -msgstr "" - -#: ../cache/locales.php:383 -msgid "You are currently logued as an anonymous user." -msgstr "" - -#: ../cache/locales.php:384 -msgid "" -"You can join using your own account or create one on the login page by " -"loging out using the cross in the top-right corner." -msgstr "" - -#: ../cache/locales.php:385 -#, php-format -msgid "Login on %s" -msgstr "" - -#: ../cache/locales.php:386 -msgid "Your nickname" -msgstr "" - -#: ../cache/locales.php:387 -msgid "Ungrouped" -msgstr "Dégroupé" - -#: ../cache/locales.php:388 -msgid "Show disconnected contacts" -msgstr "Afficher les contacts déconnectés" - -#: ../cache/locales.php:389 -msgid "Hide disconnected contacts" -msgstr "Masquer les contacts déconnectés" - -#: ../cache/locales.php:390 -#, php-format -msgid "Show group %s" -msgstr "Groupe %s affiché" - -#: ../cache/locales.php:391 -#, php-format -msgid "Hide group %s" -msgstr "Groupe %s caché" - -#: ../cache/locales.php:392 -msgid "Please enter a valid Jabber ID" -msgstr "Veuillez entrer un identifiant Jabber valide" - -#: ../cache/locales.php:393 -msgid "" -"No contacts ? You can add one using the + button bellow or going to the " -"Explore page" -msgstr "" -"Pas de contacts ? Vous pouvez en ajouter un en cliquant sur le bouton + ci-" -"dessous ou aller sur la page Explorer" - -#: ../cache/locales.php:394 -msgid "Show/Hide" -msgstr "Afficher / Masquer" - -#: ../cache/locales.php:395 -msgid "Enter the Jabber ID of your contact." -msgstr "Entrez l’identifiant Jabber de votre contact." - -#: ../cache/locales.php:396 -msgid "Press enter to validate." -msgstr "Appuyez sur entrer pour valider." - -#: ../cache/locales.php:397 -msgid "JID" -msgstr "Identifiant Jabber" - -#: ../cache/locales.php:398 -msgid "Results" -msgstr "Résultats" - -#: ../cache/locales.php:399 -msgid "Contact added" -msgstr "Contact ajouté" - -#: ../cache/locales.php:401 -msgid "Contact deleted" -msgstr "Contact supprimé" - -#: ../cache/locales.php:403 -msgid "This is not a valid url" -msgstr "Cette URL n'est pas valide" - -#: ../cache/locales.php:404 -msgid "Sharing the URL" -msgstr "Partage de l'URL" - -#: ../cache/locales.php:405 -msgid "Statistics" -msgstr "Statistiques" - -#: ../cache/locales.php:406 -msgid "Since" -msgstr "Depuis" - -#: ../cache/locales.php:407 -msgid "Sessions" -msgstr "Sessions" - -#: ../cache/locales.php:409 -msgid "Monthly Subscriptions" -msgstr "Souscriptions par mois" - -#: ../cache/locales.php:410 -msgid "Monthly Subscriptions Cumulated" -msgstr "Souscriptions par mois cumulés" - -#: ../cache/locales.php:412 -msgid "" -"Movim is a decentralized social network, before creating a new account you " -"need to choose a server to register." -msgstr "" -"Movim est un réseau social décentralisé, avant de créer un compte vous devez " -"choisir un serveur sur lequel vous inscrire." - -#: ../cache/locales.php:413 -msgid "Your server here ?" -msgstr "Votre serveur ici ?" - -#: ../cache/locales.php:414 -msgid "Contact us to add yours to the officially supported servers list" -msgstr "" -"Contactez-nous pour ajouter le vôtre à la liste des serveurs officiellement " -"pris en charge" - -#: ../cache/locales.php:416 -msgid "No public feed for this contact" -msgstr "Pas de flux public pour ce contact" - -#: ../cache/locales.php:417 -msgid "No contact specified" -msgstr "Aucun contact indiqué" - -#: ../cache/locales.php:418 ../cache/locales.php:473 -msgid "Profile" -msgstr "Profil" - -#: ../cache/locales.php:419 -msgid "Profile Updated" -msgstr "Profil mis à jour" - -#: ../cache/locales.php:420 -msgid "Profile Not Updated" -msgstr "Profil non mis à jour" - -#: ../cache/locales.php:421 -msgid "Your profile is now public" -msgstr "Votre profil est maintenant public" - -#: ../cache/locales.php:422 -msgid "Your profile is now restricted" -msgstr "Votre profil est maintenant restreint" - -#: ../cache/locales.php:436 -msgid "Twitter" -msgstr "Twitter" - -#: ../cache/locales.php:437 -msgid "Skype" -msgstr "Skype" - -#: ../cache/locales.php:438 -msgid "Yahoo" -msgstr "Yahoo" - -#: ../cache/locales.php:439 -msgid "Privacy Level" -msgstr "Niveau de confidentialité" - -#: ../cache/locales.php:440 -msgid "Is this profile public ?" -msgstr "Ce profil est-il public ?" - -#: ../cache/locales.php:441 -msgid "" -"Please pay attention ! By making your profile public, all the information " -"listed above will be available for all the Movim users and on the whole " -"Internet." -msgstr "" -"Faites attention ! En rendant votre profil public, toutes les informations " -"listées ci-dessus seront visibles par les utilisateurs de Movim mais " -"également par tous les internautes." - -#: ../cache/locales.php:442 -msgid "Call" -msgstr "Appeler" - -#: ../cache/locales.php:443 -msgid "Hang up" -msgstr "Raccrocher" - -#: ../cache/locales.php:444 -msgid "Connection" -msgstr "Connexion" - -#: ../cache/locales.php:445 ../cache/locales.php:451 -msgid "Hung up" -msgstr "Fin d'appel" - -#: ../cache/locales.php:446 ../cache/locales.php:452 -msgid "Your contact is busy" -msgstr "Votre contact est occupé" - -#: ../cache/locales.php:447 ../cache/locales.php:453 -msgid "Declined" -msgstr "Rejeté" - -#: ../cache/locales.php:448 ../cache/locales.php:454 -msgid "Remote application incompatible" -msgstr "L’application distante est incompatible" - -#: ../cache/locales.php:450 ../cache/locales.php:456 -msgid "Is calling you" -msgstr "Vous appelle" - -#: ../cache/locales.php:457 -msgid "You don't have javascript enabled. Good luck with that." -msgstr "JavaScript est désactivé sur votre navigateur." - -#: ../cache/locales.php:458 -msgid "" -"Movim is a kickass distributed social networking platform that protect your " -"privacy an comes with a set of awesome features." -msgstr "" -"Movim est un réseau social innovant et distribué protégeant votre vie privée " -"et apportant plein de fonctionnalités toutes plus géniales les unes que les " -"autres." - -#: ../cache/locales.php:459 -msgid "Administration" -msgstr "Administration" - -#: ../cache/locales.php:460 -msgid "Home" -msgstr "Accueil" - -#: ../cache/locales.php:461 -msgid "Discover" -msgstr "Découvrir" - -#: ../cache/locales.php:462 -msgid "Explore" -msgstr "Explorer" - -#: ../cache/locales.php:463 -msgid "Account Creation" -msgstr "Création de compte" - -#: ../cache/locales.php:464 +#: [hello]news [page]news msgid "News" msgstr "Actualité" -#: ../cache/locales.php:465 -msgid "Avatar" -msgstr "Avatar" +#: [hello]news_page +msgid "Read all theses articles on the News page" +msgstr "Lire tous ces articles sur la page Actualité" -#: ../cache/locales.php:467 -msgid "Chats" -msgstr "Discussions" +#: [hello]blog_title +msgid "Visit your public blog" +msgstr "Aller sur votre blog publique" -#: ../cache/locales.php:470 -msgid "Server" -msgstr "Serveur" +#: [hello]blog_text +msgid "See your public posts and share them with all your contacts" +msgstr "Voir vos billets publics et les partager avec tous vos contacts" -#: ../cache/locales.php:471 -msgid "Public Groups" -msgstr "Groupes publics" +#: [hello]share_title +msgid "Universal share button" +msgstr "Bouton partager universel." -#: ../cache/locales.php:472 -msgid "Viewer" -msgstr "Visionneuse" +#: [hello]share_text +msgid "Bookmark or drag and drop the following button in your toolbar and use it on all the pages you want to share on Movim" +msgstr "Cliquez-déposez ou mettez en favoris dans votre navigateur le bouton suivant et utilisez le sur toutes les pages que vous voulez partager sur Movim" -#: ../cache/locales.php:474 -msgid "Media" -msgstr "Médias" +#: [hello]share_button +msgid "Share on Movim" +msgstr "Partager sur Movim" -#: ../cache/locales.php:475 -msgid "Blog" -msgstr "Blog" +#: [help]faq +msgid "Frequently Asked Questions" +msgstr "Foire aux questions" -#: ../cache/locales.php:476 -msgid "About" -msgstr "À propos" +#: [banner]title +msgid "What do the little banners refer to ?" +msgstr "À quoi correspondent les petits fanions de l’interface ?" -#: ../cache/locales.php:477 -msgid "Login" -msgstr "Connexion" +#: [banner]info1 +msgid "Thanks to these five little banners, you can quickly identitfy the level of confdentiality applied to the information you provide." +msgstr "Ces 5 petits fanions vous permettent, en un coup d’œil, de connaitre la confidentialité des données que vous publiez." -#: ../cache/locales.php:479 -msgid "Feed" -msgstr "Flux" +#: [banner]white +msgid "White, only you can see the information" +msgstr "Blanc, les données ne sont visibles que par vous-même" -#: ../cache/locales.php:481 -msgid "Gallery" -msgstr "Galerie" +#: [banner]green +msgid "Green, you have chosen some contacts who can see your information" +msgstr "Vert, les données ne sont visibles que par les contacts choisis" -#: ../cache/locales.php:483 -msgid "Visio-conference" -msgstr "Vidéoconférence" +#: [banner]orange +msgid "Orange, all your contact list can see your information" +msgstr "Orange, les données sont visibles par toute votre liste de contacts" -#: ../cache/locales.php:484 -msgid "Pods" -msgstr "Pods" +#: [banner]red +msgid "Red, everybody in the XMPP network can see your information" +msgstr "Rouge, les données sont visibles par tout le monde au sein du réseau XMPP" -#: ../cache/locales.php:485 -msgid "Share" -msgstr "Partager" +#: [banner]black +msgid "Black, the whole Internet can see your information" +msgstr "Noir, les données sont visibles par tout le monde sur internet" -#: ../cache/locales.php:486 -msgid "Room" +#: [wiki]question +msgid "Looking for some documentation ?" +msgstr "Vous cherchez de la documentation?" + +#: [wiki]button +msgid "Read the Wiki" +msgstr "Lisez le wiki" + +#: [ml]question +msgid "Talk with us by email ?" +msgstr "Nous contacter par courriel ?" + +#: [ml]button +msgid "Join the Mailing List" +msgstr "Rejoindre la Mailing-list" + +#: [chatroom]question +msgid "Chat with the team ?" +msgstr "Discuter avec l’équipe ?" + +#: [chatroom]button +msgid "Join the Chatroom" +msgstr "Rejoindre le salon de discussion" + +#: [init]location +msgid "Location node created" +msgstr "Nœud de géolocalisation créé" + +#: [init]bookmark +msgid "Bookmark node created" +msgstr "Nœud des signets créé" + +#: [init]vcard4 +msgid "Profile node created" +msgstr "Nœud du profil créé" + +#: [init]avatar +msgid "Avatar node created" +msgstr "Nœud de l’avatar créé" + +#: [init]subscriptions +msgid "Subscriptions node created" +msgstr "Nœud des abonnements créé" + +#: [init]microblog +msgid "Microblog node created" +msgstr "Nœud du microblog créé" + +#: [location]title +msgid "Location" +msgstr "Position" + +#: [location]wrong_postition +msgid "Wrong position" +msgstr "Mauvaise position" + +#: [location]updated +msgid "Location updated" +msgstr "Position géographique mise à jour" + +#: [location]update +msgid "Update my position" +msgstr "Mettre à jour ma position" + +#: [login_anonymous]bad_username +msgid "Bad nickname (between 4 and 40 characters)" msgstr "" -#: ../cache/locales.php:487 -#, php-format -msgid "Error: %s" -msgstr "Erreur : %s" +#: [error]username +msgid "Wrong username" +msgstr "Nom d’utilisateur incorrect" -#: ../cache/locales.php:488 -#, php-format -msgid "Cannot load file '%s'" -msgstr "Le fichier « %s » n’est pas accessible" +#: [error]jid +msgid "Invalid JID" +msgstr "Identifiant Jabber incorrect" -#: ../cache/locales.php:489 -#, php-format -msgid "Route error, please set all the parameters for the page %s" +#: [error]empty_challenge +msgid "Empty Challenge from the server" +msgstr "La paquet Challenge du serveur est vide" + +#: [error]dns +msgid "XMPP Domain error, your account is not a correct Jabber ID" +msgstr "Erreur de domaine XMPP, votre compte n’est pas un identifiant Jabber correct" + +#: [error]data_missings +msgid "Some data are missing !" +msgstr "Il manque des informations !" + +#: [error]wrong_password +msgid "Wrong password" +msgstr "Mot de passe incorrect" + +#: [error]internal +msgid "Internal server error" +msgstr "Erreur interne du serveur" + +#: [error]session +msgid "Session error" +msgstr "Erreur de session" + +#: [error]account_created +msgid "Account successfully created" +msgstr "Compte créé avec succès" + +#: [error]xmpp_unauthorized +#, fuzzy +msgctxt "[error]xmpp_unauthorized" +msgid "Your XMPP server is unauthorized" +msgstr "Votre compte XMPP n’est pas autorisé à se connecter" + +#: [error]mec_error +msgid "The server takes too much time to respond" +msgstr "Le serveur met trop de temps à répondre" + +#: [error]too_old +msgid "Your web browser is too old to use with Movim." +msgstr "Votre navigateur est trop vieux pour prendre en charge Movim" + +#: [error]websocket +msgid "Movim cannot talk with the server, please try again later (Websocket connection error)" +msgstr "Movim ne peut pas communiquer avec le serveur, veuillez réessayer plus tard (erreur de connexion WebSocket)" + +#: [error]impossible +msgid "Impossible login" +msgstr "Authentification impossible" + +#: [error]title +msgid "Oops!" +msgstr "Oups !" + +#: [error]default [visio]unknown_error +msgid "Unknown error" +msgstr "Erreur inconnue" + +#: [error]login_format +msgid "Invalid username format" +msgstr "Le format de l'identifiant n'est pas correct" + +#: [error]password_format +msgid "Invalid password format" +msgstr "Mot de passe non valide" + +#: [error]unauthorized +#, fuzzy +msgctxt "[error]unauthorized" +msgid "Your XMPP server is unauthorized" +msgstr "Votre compte XMPP n’est pas autorisé à se connecter" + +#: [error]conflict +msgid "A Movim session is already open on an other device" +msgstr "Une session Movim est déjà ouverte sur un autre ordinateur." + +#: [error]wrong_account +msgid "Movim failed to authenticate. You entered wrong data" +msgstr "Movim n’a pas pu vous authentifier. Vous avez entré des données erronées." + +#: [error]mechanism +msgid "Authentication mechanism not supported by Movim" +msgstr "Le mécanisme d’authentification n’est pas supporté par Movim" + +#: [error]fail_auth +msgid "The XMPP authentification failed" +msgstr "L’authentification au serveur XMPP a échoué" + +#: [account]title [accounts]accounts_title +msgid "Accounts" +msgstr "Comptes" + +#: [form]username +msgid "My address" +msgstr "Mon adresse" + +#: [form]create_one +msgid "Create one !" +msgstr "Créez-en un !" + +#: [form]another_account +msgid "Another account" +msgstr "Autre compte" + +#: [form]no_account +msgid "No account yet ?" +msgstr "Pas encore de compte ?" + +#: [form]whitelist.info +msgid "You can login with accounts from theses servers" +msgstr "Vous pouvez vous authentifier avec des comptes venant des serveurs suivants" + +#: [form]connected +msgid "Connected" +msgstr "Connecté" + +#: [form]population +msgid "Population" +msgstr "Population" + +#: [menu]empty_title +#, fuzzy +msgid "No news yet..." +msgstr "Pas de commentaires pour le moment" + +#: [menu]empty +#, fuzzy +msgid "Welcome on your news feed, here you will see all the posts published by your contacts and in the groups you have subscribed." +msgstr "Bienvenue sur flux d’actualité, ici vous verrez tous les billets publiés dans les groupes auxquels vous vous êtes abonnés." + +#: [menu]refresh +msgid "Refreshing all the streams" +msgstr "Rafraîchir tous les flux" + +#: [menu]public +msgid "This post is public" +msgstr "Ce billet est public" + +#: [affiliations]title +msgid "Manage your members" +msgstr "Gérer vos membres" + +#: [affiliations]get +msgid "Get the members" +msgstr "Récupérer les membres" + +#: [affiliations]saved +msgid "Affiliations saved" +msgstr "Affiliations sauvegardées" + +#: [subscriptions]title +msgid "Manage your subscriptions" +msgstr "Gérer vos abonnements" + +#: [subscriptions]info +msgid "Manage the subscriptions" +msgstr "Gérer les abonnements" + +#: [subscriptions]get +msgid "Get the subscriptions" +msgstr "Récupérer les abonnements" + +#: [subscriptions]saved +msgid "Subscriptions saved" +msgstr "Abonnements sauvegardés" + +#: [notifs]title +msgid "Pending Invitations" +msgstr "Invitations en attente" + +#: [notifs]wants_to_talk +msgid "%s wants to talk with you" +msgstr "%s veut parler avec vous" + +#: [notifs]manage +msgid "Manage" +msgstr "Gérer" + +#: [post]news_feed +msgid "News Feed" +msgstr "Fil d’actualité" + +#: [post]placeholder +msgid "Discover and register to the groups you are interested in" +msgstr "Découvrez et rejoignez les groupes qui vous intéressent" + +#: [post]preview [page]preview +msgid "Preview" +msgstr "Aperçu" + +#: [post]help [page]help +msgid "Help" +msgstr "Aide" + +#: [post]help_more +msgid "More help" +msgstr "Aide supplémentaire" + +#: [post]help_manual +msgid "Markdown syntax manual" +msgstr "Manuel d'utilisation de la syntaxe Markdown" + +#: [post]title +msgid "Title" +msgstr "Titre" + +#: [post]content +msgid "Content" +msgstr "Contenu" + +#: [post]link +msgid "Link" +msgstr "Lien" + +#: [post]tags +msgid "Tags" +msgstr "Étiquettes" + +#: [post]valid_url [publish]valid_url +msgid "Please enter a valid url" +msgstr "Veuillez entrer une URL valide" + +#: [post]no_content_preview [publish]no_content_preview +msgid "No content to preview" +msgstr "Pas de contenu à afficher" + +#: [post]no_content [publish]no_content [post]empty +msgid "No content" +msgstr "Aucun contenu" + +#: [post]published +msgid "Post published" +msgstr "Bilet publié" + +#: [post]deleted +msgid "Post deleted" +msgstr "Billet effacé" + +#: [post]gallery +msgid "This picture will be added to your gallery" +msgstr "Cette image va être ajoutée à votre galerie" + +#: [post]hot +msgid "What's Hot" +msgstr "Quoi de neuf" + +#: [post]hot_text +msgid "Posts recently published in Groups that you are not subscribed (yet)" msgstr "" -"Erreur de chemin, veuillez configurer tous les paramètres de la page %s" -#: ../cache/locales.php:490 -#, php-format -msgid "Requested widget '%s' doesn't exist." -msgstr "Le widget '%s' demandé n’existe pas." +#: [post]new [publish]new +msgid "New post" +msgstr "Nouveau billet" -#: ../cache/locales.php:491 -#, php-format -msgid "Requested event '%s' not registered." -msgstr "L’évènement '%s' n’est pas enregistré." +#: [post]embed_tip +msgid "You can also use services like Imgur or Flickr to host your picture and paste the link here." +msgstr "Vous pouvez également utiliser des services comme Imgur ou Flickr pour héberger vos images et coller le lien résultant ici." -#: ../cache/locales.php:492 -msgid "Whoops!" -msgstr "Oups !" +#: [post]repost +msgid "This is a re-post from %s" +msgstr "" -#: ../cache/locales.php:493 -msgid "It seem that you don't have any pictures here?" -msgstr "Il semblerait que vous n’avez aucune image ici ?" +#: [post]repost_profile +msgid "See %s profile" +msgstr "" -#: ../cache/locales.php:494 -msgid "You can try to upload a couple by going to the Media page" -msgstr "Vous pouvez essayer d’en envoyer via la page Médias" +#: [post]public +#, fuzzy +msgid "Publish this post publicly?" +msgstr "Publier ce billet sur votre flux public?" -#: ../cache/locales.php:495 -#, php-format -msgid "%s - About" -msgstr "%s – À propos" +#: [post]blog_add +msgid "Post published on your blog" +msgstr "Billet publié sur votre blog" -#: ../cache/locales.php:496 -#, php-format -msgid "%s - Account" -msgstr "%s – Compte" +#: [post]blog_remove +msgid "Post removed from your blog" +msgstr "Billet retiré de votre blog" -#: ../cache/locales.php:497 -#, php-format -msgid "%s - Administration Panel" -msgstr "%s – Panneau d’administration" +#: [post]delete_title [post]delete +msgid "Delete this post" +msgstr "Supprimer ce billet" -#: ../cache/locales.php:498 -#, php-format -msgid "%s - Blog" -msgstr "%s – Blog" +#: [post]delete_text +msgid "You are going to delete this post, please confirm your action" +msgstr "Vous allez supprimer ce billet, veuillez confirmer votre action." -#: ../cache/locales.php:499 -#, php-format -msgid "%s - Configuration" -msgstr "%s – Configuration" +#: [post]comments_disabled +msgid "Comments disabled" +msgstr "Commentaires désactivés." -#: ../cache/locales.php:500 -#, php-format -msgid "%s - Discover" -msgstr "%s – Découvrir" +#: [post]comment_published +msgid "Comment published" +msgstr "Commentaire publié." -#: ../cache/locales.php:501 -#, php-format -msgid "%s - Explore" -msgstr "%s – Explorer" +#: [status]disconnect +msgid "Disconnect" +msgstr "Se déconnecter" -#: ../cache/locales.php:502 -#, php-format -msgid "%s - Help Page" -msgstr "%s – Page d’aide" +#: [status]here +msgid "Your status here !" +msgstr "Votre statut ici !" -#: ../cache/locales.php:503 -#, php-format -msgid "%s - Login to Movim" -msgstr "%s – Connexion à Movim" +#: [status]updated +msgid "Status updated" +msgstr "Statut mis à jour" -#: ../cache/locales.php:504 -#, php-format -msgid "%s - Welcome to Movim" -msgstr "%s – Bienvenue sur Movim" +#: [status]status +msgid "Status" +msgstr "Statut" -#: ../cache/locales.php:505 -#, php-format -msgid "%s - Media" -msgstr "%s – Médias" +#: [status]presence +msgid "Presence" +msgstr "Présence" -#: ../cache/locales.php:506 -#, php-format -msgid "%s - News" -msgstr "%s – Actualités" +#: [status]online +msgid "Online with Movim" +msgstr "" -#: ../cache/locales.php:507 -#, php-format -msgid "%s - Group Configuration" -msgstr "%s – Configuration du groupe" +#: [publish]title +msgid "Publish" +msgstr "" -#: ../cache/locales.php:508 -#, php-format -msgid "%s - Group" -msgstr "%s – Groupe" +#: [publish]attach +msgid "Add a file or a picture to your post" +msgstr "" -#: ../cache/locales.php:509 -#, php-format -msgid "%s - 404" -msgstr "%s – 404" +#: [publish]no_publication +msgid "You cannot publish a post on this Group" +msgstr "" -#: ../cache/locales.php:510 -#, php-format -msgid "%s - Profile" -msgstr "%s – Profil" +#: [publish]form_filled +msgid "Some fields have been filled in. Do you still want to go back and loose their content?" +msgstr "" -#: ../cache/locales.php:511 -#, php-format -msgid "%s - Server" -msgstr "%s – Serveur" +#: [public_groups]shared +msgid "Shared" +msgstr "Partagé" -#: ../cache/locales.php:512 -msgid "Validate" -msgstr "Valider" +#: [public_groups]added +msgid "%s has been added to your public groups" +msgstr "%s a été ajouté à vos groupes publics" -#: ../cache/locales.php:513 -msgid "Refresh" -msgstr "Rafraîchir" +#: [rooms]add +msgid "Add a chatroom" +msgstr "Ajouter un salon de discussion" -#: ../cache/locales.php:514 -msgid "Add" -msgstr "Ajouter" +#: [rooms]empty_text1 +msgid "You don't have any chatroom yet." +msgstr "Vous n'avez pas encore de salon de discussions." -#: ../cache/locales.php:515 -msgid "Delete" -msgstr "Supprimer" +#: [rooms]empty_text2 +msgid "Add one by clicking on the add button in the header." +msgstr "Ajoutez en un en cliquant sur le bouton plus dans l'entête." -#: ../cache/locales.php:516 -msgid "Remove" -msgstr "Retirer" +#: [chatrooms]title +msgid "Chatrooms" +msgstr "Salons de discussion" -#: ../cache/locales.php:517 -msgid "Cancel" -msgstr "Annuler" +#: [chatrooms]name_placeholder +msgid "My Favorite Room" +msgstr "Mon salon préféré" -#: ../cache/locales.php:518 -msgid "Close" -msgstr "Fermer" +#: [chatrooms]users +msgid "Users in the room" +msgstr "Utilisateurs du salon" -#: ../cache/locales.php:519 -msgid "Update" -msgstr "Mettre à jour" +#: [chatrooms]bad_nickname +msgid "Please enter a correct nickname (2 to 40 characters)" +msgstr "" -#: ../cache/locales.php:520 -msgid "Updating" -msgstr "Actualisation" +#: [room]anonymous_title +msgid "Public chatroom" +msgstr "" -#: ../cache/locales.php:521 +#: [room]no_room +msgid "Please provide a room address" +msgstr "" + +#: [room]anonymous_text1 +msgid "You are currently logued as an anonymous user." +msgstr "" + +#: [room]anonymous_text2 +msgid "You can join using your own account or create one on the login page by loging out using the cross in the top-right corner." +msgstr "" + +#: [room]anonymous_login +msgid "Login on %s" +msgstr "" + +#: [room]nick +msgid "Your nickname" +msgstr "" + +#: [roster]ungrouped +msgid "Ungrouped" +msgstr "Dégroupé" + +#: [roster]show_disconnected +msgid "Show disconnected contacts" +msgstr "Afficher les contacts déconnectés" + +#: [roster]hide_disconnected +msgid "Hide disconnected contacts" +msgstr "Masquer les contacts déconnectés" + +#: [roster]show_group +msgid "Show group %s" +msgstr "Groupe %s affiché" + +#: [roster]hide_group +msgid "Hide group %s" +msgstr "Groupe %s caché" + +#: [roster]jid_error +msgid "Please enter a valid Jabber ID" +msgstr "Veuillez entrer un identifiant Jabber valide" + +#: [roster]no_contacts_title +#, fuzzy +msgid "No contacts ?" +msgstr "Vos contacts" + +#: [roster]no_contacts_text +#, fuzzy +msgid "You can add one using the + button bellow" +msgstr "Pas de contacts ? Vous pouvez en ajouter un en cliquant sur le bouton + ci-dessous ou aller sur la page Explorer" + +#: [roster]show_hide +msgid "Show/Hide" +msgstr "Afficher / Masquer" + +#: [roster]add_contact_info1 +msgid "Enter the Jabber ID of your contact." +msgstr "Entrez l’identifiant Jabber de votre contact." + +#: [roster]add_contact_info2 +msgid "Press enter to validate." +msgstr "Appuyez sur entrer pour valider." + +#: [roster]jid +msgid "JID" +msgstr "Identifiant Jabber" + +#: [roster]results +msgid "Results" +msgstr "Résultats" + +#: [roster]added +msgid "Contact added" +msgstr "Contact ajouté" + +#: [roster]deleted +msgid "Contact deleted" +msgstr "Contact supprimé" + +#: [roster]search +msgid "Search" +msgstr "Rechercher" + +#: [share]error +msgid "This is not a valid url" +msgstr "Cette URL n'est pas valide" + +#: [share]success +msgid "Sharing the URL" +msgstr "Partage de l'URL" + +#: [statistics]title +msgid "Statistics" +msgstr "Statistiques" + +#: [statistics]since +msgid "Since" +msgstr "Depuis" + +#: [statistics]sessions +msgid "Sessions" +msgstr "Sessions" + +#: [statistics]monthly_sub +msgid "Monthly Subscriptions" +msgstr "Souscriptions par mois" + +#: [statistics]monthly_sub_cum +msgid "Monthly Subscriptions Cumulated" +msgstr "Souscriptions par mois cumulés" + +#: [subscribe]info +msgid "Movim is a decentralized social network, before creating a new account you need to choose a server to register." +msgstr "Movim est un réseau social décentralisé, avant de créer un compte vous devez choisir un serveur sur lequel vous inscrire." + +#: [subscribe]server_question +msgid "Your server here ?" +msgstr "Votre serveur ici ?" + +#: [subscribe]server_contact +msgid "Contact us to add yours to the officially supported servers list" +msgstr "Contactez-nous pour ajouter le vôtre à la liste des serveurs officiellement pris en charge" + +#: [feed]nope +msgid "No public feed for this contact" +msgstr "Pas de flux public pour ce contact" + +#: [feed]nope_contact +msgid "No contact specified" +msgstr "Aucun contact indiqué" + +#: [upload]title +#, fuzzy +msgid "Upload a file" +msgstr "Téléverser" + +#: [upload]choose +msgid "Choose a file to upload" +msgstr "" + +#: [vcard]title [page]profile +msgid "Profile" +msgstr "Profil" + +#: [vcard]updated +msgid "Profile Updated" +msgstr "Profil mis à jour" + +#: [vcard]not_updated +msgid "Profile Not Updated" +msgstr "Profil non mis à jour" + +#: [vcard]public +msgid "Your profile is now public" +msgstr "Votre profil est maintenant public" + +#: [vcard]restricted +msgid "Your profile is now restricted" +msgstr "Votre profil est maintenant restreint" + +#: [general]nickname +#, fuzzy +msgctxt "[general]nickname" +msgid "Nickname" +msgstr "Pseudonyme" + +#: [accounts]twitter +msgid "Twitter" +msgstr "Twitter" + +#: [accounts]skype +msgid "Skype" +msgstr "Skype" + +#: [accounts]yahoo +msgid "Yahoo" +msgstr "Yahoo" + +#: [accounts]accounts_nickname +#, fuzzy +msgctxt "[accounts]accounts_nickname" +msgid "Nickname" +msgstr "Pseudonyme" + +#: [accounts]accounts_yahoo +#, fuzzy +msgid "Yahoo Account" +msgstr "Compte" + +#: [privacy]privacy_title +msgid "Privacy Level" +msgstr "Niveau de confidentialité" + +#: [privacy]privacy_question +msgid "Is this profile public ?" +msgstr "Ce profil est-il public ?" + +#: [privacy]privacy_info +msgid "Please pay attention ! By making your profile public, all the information listed above will be available for all the Movim users and on the whole Internet." +msgstr "Faites attention ! En rendant votre profil public, toutes les informations listées ci-dessus seront visibles par les utilisateurs de Movim mais également par tous les internautes." + +#: [save]submit [button]submit msgid "Submit" msgstr "Envoyer" -#: ../cache/locales.php:522 -msgid "Submitting" -msgstr "Envoi" - -#: ../cache/locales.php:523 +#: [save]reset [button]reset msgid "Reset" msgstr "Réinitialiser" -#: ../cache/locales.php:524 +#: [visio]hung_up +msgid "Hung up" +msgstr "Fin d'appel" + +#: [visio]busy +msgid "Your contact is busy" +msgstr "Votre contact est occupé" + +#: [visio]declined +msgid "Declined" +msgstr "Rejeté" + +#: [visio]calling +msgid "Is calling you" +msgstr "Vous appelle" + +#: [visio]call +msgid "Call" +msgstr "Appeler" + +#: [visio]hang_up +msgid "Hang up" +msgstr "Raccrocher" + +#: [visio]connection +msgid "Connection" +msgstr "Connexion" + +#: [global]no_js +msgid "You don't have javascript enabled. Good luck with that." +msgstr "JavaScript est désactivé sur votre navigateur." + +#: [global]description +msgid "Movim is a kickass distributed social networking platform that protect your privacy an comes with a set of awesome features." +msgstr "Movim est un réseau social innovant et distribué protégeant votre vie privée et apportant plein de fonctionnalités toutes plus géniales les unes que les autres." + +#: [page]administration +msgid "Administration" +msgstr "Administration" + +#: [page]home +msgid "Home" +msgstr "Accueil" + +#: [page]discover +msgid "Discover" +msgstr "Découvrir" + +#: [page]explore +msgid "Explore" +msgstr "Explorer" + +#: [page]account_creation +msgid "Account Creation" +msgstr "Création de compte" + +#: [page]avatar +msgid "Avatar" +msgstr "Avatar" + +#: [page]chats +msgid "Chats" +msgstr "Discussions" + +#: [page]server +msgid "Server" +msgstr "Serveur" + +#: [page]public_groups +msgid "Public Groups" +msgstr "Groupes publics" + +#: [page]viewer +msgid "Viewer" +msgstr "Visionneuse" + +#: [page]media +msgid "Media" +msgstr "Médias" + +#: [page]blog +msgid "Blog" +msgstr "Blog" + +#: [page]about +msgid "About" +msgstr "À propos" + +#: [page]login +msgid "Login" +msgstr "Connexion" + +#: [page]feed +msgid "Feed" +msgstr "Flux" + +#: [page]gallery +msgid "Gallery" +msgstr "Galerie" + +#: [page]visio +msgid "Visio-conference" +msgstr "Vidéoconférence" + +#: [page]pods +msgid "Pods" +msgstr "Pods" + +#: [page]share +msgid "Share" +msgstr "Partager" + +#: [page]room +msgid "Room" +msgstr "" + +#: [error]error +msgid "Error: %s" +msgstr "Erreur : %s" + +#: [error]cannot_load_file +msgid "Cannot load file '%s'" +msgstr "Le fichier « %s » n’est pas accessible" + +#: [error]route +msgid "Route error, please set all the parameters for the page %s" +msgstr "Erreur de chemin, veuillez configurer tous les paramètres de la page %s" + +#: [error]widget_load_error +msgid "Requested widget '%s' doesn't exist." +msgstr "Le widget '%s' demandé n’existe pas." + +#: [error]widget_call_error +msgid "Requested event '%s' not registered." +msgstr "L’évènement '%s' n’est pas enregistré." + +#: [error]whoops +msgid "Whoops!" +msgstr "Oups !" + +#: [error]media_not_found +msgid "It seem that you don't have any pictures here?" +msgstr "Il semblerait que vous n’avez aucune image ici ?" + +#: [error]media_ask_upload +msgid "You can try to upload a couple by going to the Media page" +msgstr "Vous pouvez essayer d’en envoyer via la page Médias" + +#: [title]about +msgid "%s - About" +msgstr "%s – À propos" + +#: [title]account +msgid "%s - Account" +msgstr "%s – Compte" + +#: [title]administration +msgid "%s - Administration Panel" +msgstr "%s – Panneau d’administration" + +#: [title]blog +msgid "%s - Blog" +msgstr "%s – Blog" + +#: [title]configuration +msgid "%s - Configuration" +msgstr "%s – Configuration" + +#: [title]discover +msgid "%s - Discover" +msgstr "%s – Découvrir" + +#: [title]explore +msgid "%s - Explore" +msgstr "%s – Explorer" + +#: [title]help +msgid "%s - Help Page" +msgstr "%s – Page d’aide" + +#: [title]login +msgid "%s - Login to Movim" +msgstr "%s – Connexion à Movim" + +#: [title]main +msgid "%s - Welcome to Movim" +msgstr "%s – Bienvenue sur Movim" + +#: [title]media +msgid "%s - Media" +msgstr "%s – Médias" + +#: [title]news +msgid "%s - News" +msgstr "%s – Actualités" + +#: [title]node_configuration +msgid "%s - Group Configuration" +msgstr "%s – Configuration du groupe" + +#: [title]node +msgid "%s - Group" +msgstr "%s – Groupe" + +#: [title]not_found +msgid "%s - 404" +msgstr "%s – 404" + +#: [title]profile +msgid "%s - Profile" +msgstr "%s – Profil" + +#: [title]server +msgid "%s - Server" +msgstr "%s – Serveur" + +#: [button]validate +msgid "Validate" +msgstr "Valider" + +#: [button]refresh +msgid "Refresh" +msgstr "Rafraîchir" + +#: [button]add +msgid "Add" +msgstr "Ajouter" + +#: [button]delete +msgid "Delete" +msgstr "Supprimer" + +#: [button]cancel +msgid "Cancel" +msgstr "Annuler" + +#: [button]close +msgid "Close" +msgstr "Fermer" + +#: [button]update +msgid "Update" +msgstr "Mettre à jour" + +#: [button]updating +msgid "Updating" +msgstr "Actualisation" + +#: [button]submitting +msgid "Submitting" +msgstr "Envoi" + +#: [button]register msgid "Register" msgstr "S’inscrire" -#: ../cache/locales.php:525 +#: [button]unregister msgid "Unregister" msgstr "Se désinscrire" -#: ../cache/locales.php:526 +#: [button]save msgid "Save" msgstr "Sauvegarder" -#: ../cache/locales.php:527 +#: [button]clear msgid "Clear" msgstr "Vider" -#: ../cache/locales.php:528 +#: [button]upload msgid "Upload" msgstr "Téléverser" -#: ../cache/locales.php:529 +#: [button]come_in msgid "Come in!" msgstr "Entrez !" -#: ../cache/locales.php:530 +#: [button]connecting msgid "Connecting" msgstr "Connexion" -#: ../cache/locales.php:531 +#: [button]bool_yes msgid "Yes" msgstr "Oui" -#: ../cache/locales.php:532 +#: [button]bool_no msgid "No" msgstr "Non" -#: ../cache/locales.php:534 +#: [button]return msgid "Return" msgstr "Retour" -#: ../cache/locales.php:535 +#: [button]accept msgid "Accept" msgstr "Accepter" -#: ../cache/locales.php:536 +#: [button]refuse msgid "Refuse" msgstr "Refuser" -#: ../cache/locales.php:537 +#: [button]next msgid "Next" msgstr "Suivant" -#: ../cache/locales.php:538 +#: [button]previous msgid "Previous" msgstr "Précédent" -#: ../cache/locales.php:539 -#, php-format +#: [step]step msgid "Step %s" msgstr "Étape %s" -#: ../cache/locales.php:542 +#: [day]title msgid "Day" msgstr "Jour" -#: ../cache/locales.php:543 +#: [day]monday msgid "Monday" msgstr "Lundi" -#: ../cache/locales.php:544 +#: [day]tuesday msgid "Tuesday" msgstr "Mardi" -#: ../cache/locales.php:545 +#: [day]wednesday msgid "Wednesday" msgstr "Mercredi" -#: ../cache/locales.php:546 +#: [day]thursday msgid "Thursday" msgstr "Jeudi" -#: ../cache/locales.php:547 +#: [day]friday msgid "Friday" msgstr "Vendredi" -#: ../cache/locales.php:548 +#: [day]saturday msgid "Saturday" msgstr "Samedi" -#: ../cache/locales.php:549 +#: [day]sunday msgid "Sunday" msgstr "Dimanche" -#: ../cache/locales.php:550 ../cache/locales.php:559 +#: [gender]nil +#, fuzzy +msgctxt "[gender]nil" msgid "None" msgstr "Aucun" -#: ../cache/locales.php:551 +#: [gender]male msgid "Male" msgstr "Homme" -#: ../cache/locales.php:552 +#: [gender]female msgid "Female" msgstr "Femme" -#: ../cache/locales.php:553 +#: [gender]other msgid "Other" msgstr "Autre" -#: ../cache/locales.php:554 +#: [client]bot msgid "Bot" msgstr "Robot" -#: ../cache/locales.php:555 +#: [client]desktop msgid "Desktop" msgstr "Bureau" -#: ../cache/locales.php:556 +#: [client]phone msgid "Phone" msgstr "Téléphone" -#: ../cache/locales.php:557 +#: [client]web msgid "Web" msgstr "Web" -#: ../cache/locales.php:558 +#: [client]registered msgid "Registered" msgstr "Inscrit" -#: ../cache/locales.php:560 +#: [marital]nil +#, fuzzy +msgctxt "[marital]nil" +msgid "None" +msgstr "Aucun" + +#: [marital]single msgid "Single" msgstr "Célibataire" -#: ../cache/locales.php:561 +#: [marital]relationship msgid "In a relationship" msgstr "En couple" -#: ../cache/locales.php:562 +#: [marital]married msgid "Married" msgstr "Marié(e)" -#: ../cache/locales.php:563 +#: [marital]divorced msgid "Divorced" msgstr "Divorcé(e)" -#: ../cache/locales.php:564 +#: [marital]widowed msgid "Widowed" msgstr "Veuf(ve)" -#: ../cache/locales.php:565 +#: [marital]cohabiting msgid "Cohabiting" msgstr "En concubinage" -#: ../cache/locales.php:566 +#: [marital]union msgid "Civil Union" msgstr "Union civile" -#: ../cache/locales.php:567 +#: [flag]white msgid "Not shared" msgstr "Non partagé" -#: ../cache/locales.php:568 +#: [flag]green msgid "Shared with one contact" msgstr "Partagé avec un contact" -#: ../cache/locales.php:569 +#: [flag]orange msgid "Shared with all contacts" msgstr "Partagé avec tous les contacts" -#: ../cache/locales.php:570 +#: [flag]red msgid "Shared with the XMPP network" msgstr "Partagé avec le réseau XMPP" -#: ../cache/locales.php:571 +#: [flag]black msgid "Shared with the whole Internet" msgstr "Partagé avec tout Internet" -#: ../cache/locales.php:572 +#: [presence]online msgid "Online" msgstr "En ligne" -#: ../cache/locales.php:573 +#: [presence]away msgid "Away" msgstr "Absent(e)" -#: ../cache/locales.php:574 +#: [presence]dnd msgid "Do Not Disturb" msgstr "Ne pas déranger" -#: ../cache/locales.php:575 +#: [presence]xa msgid "Extended Away" msgstr "Absence prolongée" -#: ../cache/locales.php:576 +#: [presence]offline msgid "Offline" msgstr "Hors ligne" -#: ../cache/locales.php:577 +#: [presence]error msgid "Error" msgstr "Erreur" -#: ../cache/locales.php:578 +#: [mood]afraid msgid "afraid" msgstr "appeuré(e)" -#: ../cache/locales.php:579 +#: [mood]amazed msgid "amazed" msgstr "stupéfait(e)" -#: ../cache/locales.php:580 +#: [mood]amorous msgid "amorous" msgstr "amoureux(se)" -#: ../cache/locales.php:581 +#: [mood]angry msgid "angry" msgstr "fâché(e)" -#: ../cache/locales.php:582 +#: [mood]annoyed msgid "annoyed" msgstr "contrarié(e)" -#: ../cache/locales.php:583 +#: [mood]anxious msgid "anxious" msgstr "anxieux(se)" -#: ../cache/locales.php:584 +#: [mood]aroused msgid "aroused" msgstr "agité(e)" -#: ../cache/locales.php:585 +#: [mood]ashamed msgid "ashamed" msgstr "honteux(se)" -#: ../cache/locales.php:586 +#: [mood]bored msgid "bored" msgstr "lassé(e)" -#: ../cache/locales.php:587 +#: [mood]brave msgid "brave" msgstr "courageux(se)" -#: ../cache/locales.php:588 +#: [mood]calm msgid "calm" msgstr "calme" -#: ../cache/locales.php:589 +#: [mood]cautious msgid "cautious" msgstr "prudent(e)" -#: ../cache/locales.php:590 +#: [mood]cold msgid "cold" msgstr "frileux(se)" -#: ../cache/locales.php:591 +#: [mood]confident msgid "confident" msgstr "confiant(e)" -#: ../cache/locales.php:592 +#: [mood]confused msgid "confused" msgstr "désorienté(e)" -#: ../cache/locales.php:593 +#: [mood]contemplative msgid "contemplative" msgstr "contemplatif(ve)" -#: ../cache/locales.php:594 +#: [mood]contented msgid "contented" msgstr "satisfait(e)" -#: ../cache/locales.php:595 +#: [mood]cranky msgid "cranky" msgstr "grincheux(se)" -#: ../cache/locales.php:596 +#: [mood]crazy msgid "crazy" msgstr "fou(folle)" -#: ../cache/locales.php:597 +#: [mood]creative msgid "creative" msgstr "créatif(ve)" -#: ../cache/locales.php:598 +#: [mood]curious msgid "curious" msgstr "curieux(se)" -#: ../cache/locales.php:599 +#: [mood]dejected msgid "dejected" msgstr "abattu(e)" -#: ../cache/locales.php:600 +#: [mood]depressed msgid "depressed" msgstr "déprimé(e)" -#: ../cache/locales.php:601 +#: [mood]disappointed msgid "disappointed" msgstr "déçu(e)" -#: ../cache/locales.php:602 +#: [mood]disgusted msgid "disgusted" msgstr "dégouté(e)" -#: ../cache/locales.php:603 +#: [mood]dismayed msgid "dismayed" msgstr "consterné(e)" -#: ../cache/locales.php:604 +#: [mood]distracted msgid "distracted" msgstr "distrait(e)" -#: ../cache/locales.php:605 +#: [mood]embarrassed msgid "embarrassed" msgstr "embarrassé(e)" -#: ../cache/locales.php:606 +#: [mood]envious msgid "envious" msgstr "envieux(se)" -#: ../cache/locales.php:607 +#: [mood]excited msgid "excited" msgstr "excité(e)" -#: ../cache/locales.php:608 +#: [mood]flirtatious msgid "flirtatious" msgstr "charmeur(se)" -#: ../cache/locales.php:609 +#: [mood]frustated msgid "frustated" msgstr "frustré(e)" -#: ../cache/locales.php:610 +#: [mood]grateful msgid "grateful" msgstr "reconnaissant(e)" -#: ../cache/locales.php:611 +#: [mood]grieving msgid "grieving" msgstr "endeuillé(e)" -#: ../cache/locales.php:612 +#: [mood]grumpy msgid "grumpy" msgstr "ronchon(ne)" -#: ../cache/locales.php:613 +#: [mood]guilty msgid "guilty" msgstr "coupable" -#: ../cache/locales.php:614 +#: [mood]happy msgid "happy" msgstr "heureux(se)" -#: ../cache/locales.php:615 +#: [mood]hopeful msgid "hopeful" msgstr "optimiste" -#: ../cache/locales.php:616 +#: [mood]hot msgid "hot" msgstr "chaud" -#: ../cache/locales.php:617 +#: [mood]humbled msgid "humbled" msgstr "humble" -#: ../cache/locales.php:618 +#: [mood]humiliated msgid "humiliated" msgstr "humilié(e)" -#: ../cache/locales.php:619 +#: [mood]hungry msgid "hungry" msgstr "affamé(e)" -#: ../cache/locales.php:620 +#: [mood]hurt msgid "hurt" msgstr "blessé(e)" -#: ../cache/locales.php:621 +#: [mood]impressed msgid "impressed" msgstr "impressionné(e)" -#: ../cache/locales.php:622 +#: [mood]in_awe msgid "in awe" msgstr "admiratif(ve)" -#: ../cache/locales.php:623 +#: [mood]in_love msgid "in love" msgstr "amoureux(se)" -#: ../cache/locales.php:624 +#: [mood]indignant msgid "indignant" msgstr "indigné(e)" -#: ../cache/locales.php:625 +#: [mood]interested msgid "interested" msgstr "intéressé(e)" -#: ../cache/locales.php:626 +#: [mood]intoxicated msgid "intoxicated" msgstr "intoxiqué(e)" -#: ../cache/locales.php:627 +#: [mood]invincible msgid "invincible" msgstr "invincible" -#: ../cache/locales.php:628 +#: [mood]jealous msgid "jealous" msgstr "jaloux(se)" -#: ../cache/locales.php:629 +#: [mood]lonely msgid "lonely" msgstr "seul(e)" -#: ../cache/locales.php:630 +#: [mood]lost msgid "lost" msgstr "perdu(e)" -#: ../cache/locales.php:631 +#: [mood]lucky msgid "lucky" msgstr "chanceux(se)" -#: ../cache/locales.php:632 +#: [mood]mean msgid "mean" msgstr "méchant(e)" -#: ../cache/locales.php:633 +#: [mood]moody msgid "moody" msgstr "maussade" -#: ../cache/locales.php:634 +#: [mood]nervous msgid "nervous" msgstr "nerveux(se)" -#: ../cache/locales.php:635 +#: [mood]neutral msgid "neutral" msgstr "neutre" -#: ../cache/locales.php:636 +#: [mood]offended msgid "offended" msgstr "offensé(e)" -#: ../cache/locales.php:637 +#: [mood]outraged msgid "outraged" msgstr "outré(e)" -#: ../cache/locales.php:638 +#: [mood]playful msgid "playful" msgstr "joueur(se)" -#: ../cache/locales.php:639 +#: [mood]proud msgid "proud" msgstr "fier(ère)" -#: ../cache/locales.php:640 +#: [mood]relaxed msgid "relaxed" msgstr "relaxé(e)" -#: ../cache/locales.php:641 +#: [mood]relieved msgid "relieved" msgstr "soulagé(e)" -#: ../cache/locales.php:642 -msgid "remorseful" -msgstr "plein de remords" - -#: ../cache/locales.php:643 +#: [mood]restless msgid "restless" msgstr "impatient(e)" -#: ../cache/locales.php:644 +#: [mood]sad msgid "sad" msgstr "triste" -#: ../cache/locales.php:645 +#: [mood]sarcastic msgid "sarcastic" msgstr "sarcastique" -#: ../cache/locales.php:646 +#: [mood]satisfied msgid "satisfied" msgstr "satisfait(e)" -#: ../cache/locales.php:647 +#: [mood]serious msgid "serious" msgstr "sérieux(se)" -#: ../cache/locales.php:648 +#: [mood]shocked msgid "shocked" msgstr "choqué(e)" -#: ../cache/locales.php:649 +#: [mood]shy msgid "shy" msgstr "timide" -#: ../cache/locales.php:650 +#: [mood]sick msgid "sick" msgstr "malade" -#: ../cache/locales.php:651 +#: [mood]sleepy msgid "sleepy" msgstr "somnolent(e)" -#: ../cache/locales.php:652 +#: [mood]spontaneous msgid "spontaneous" msgstr "spontané(e)" -#: ../cache/locales.php:653 +#: [mood]stressed msgid "stressed" msgstr "stressé(e)" -#: ../cache/locales.php:654 +#: [mood]strong msgid "strong" msgstr "fort(e)" -#: ../cache/locales.php:655 +#: [mood]surprised msgid "surprised" msgstr "surpris(e)" -#: ../cache/locales.php:656 +#: [mood]thankful msgid "thankful" msgstr "reconnaissant(e)" -#: ../cache/locales.php:657 +#: [mood]thirsty msgid "thirsty" msgstr "assoiffé(e)" -#: ../cache/locales.php:658 +#: [mood]tired msgid "tired" msgstr "fatigué(e)" -#: ../cache/locales.php:659 +#: [mood]undefined msgid "undefined" msgstr "indéfini" -#: ../cache/locales.php:660 +#: [mood]weak msgid "weak" msgstr "faible" -#: ../cache/locales.php:661 +#: [mood]worried msgid "worried" msgstr "inquiet(ète)" -#: ../cache/locales.php:662 +#: [month]title msgid "Month" msgstr "Mois" -#: ../cache/locales.php:663 +#: [month]january msgid "January" msgstr "Janvier" -#: ../cache/locales.php:664 +#: [month]february msgid "February" msgstr "Février" -#: ../cache/locales.php:665 +#: [month]march msgid "March" msgstr "Mars" -#: ../cache/locales.php:666 +#: [month]april msgid "April" msgstr "Avril" -#: ../cache/locales.php:667 +#: [month]may msgid "May" msgstr "Mai" -#: ../cache/locales.php:668 +#: [month]june msgid "June" msgstr "Juin" -#: ../cache/locales.php:669 +#: [month]july msgid "July" msgstr "Juillet" -#: ../cache/locales.php:670 +#: [month]august msgid "August" msgstr "Août" -#: ../cache/locales.php:671 +#: [month]september msgid "September" msgstr "Septembre" -#: ../cache/locales.php:672 +#: [month]october msgid "October" msgstr "Octobre" -#: ../cache/locales.php:673 +#: [month]november msgid "November" msgstr "Novembre" -#: ../cache/locales.php:674 +#: [month]december msgid "December" msgstr "Décembre" -#: ../cache/locales.php:675 +#: [year]title msgid "Year" msgstr "Année" -#: ../cache/locales.php:676 +#: [date]today msgid "Today" msgstr "Aujourd’hui" -#: ../cache/locales.php:677 +#: [date]tomorrow msgid "Tomorrow" msgstr "Demain" -#: ../cache/locales.php:678 +#: [date]yesterday msgid "Yesterday" msgstr "Hier" -#: ../cache/locales.php:679 -#, php-format -msgid " %d days ago" +#: [date]ago +#, fuzzy +msgid "%d days ago" msgstr " Il y a %d jours" -#: ../cache/locales.php:680 +#: [date]day msgid "day" msgstr "jour" -#: ../cache/locales.php:682 +#: [post]whats_new msgid "What's new ?" msgstr "Quoi de neuf ?" -#: ../cache/locales.php:683 +#: [post]place msgid "Place" msgstr "Lieu" -#: ../cache/locales.php:684 +#: [post]by msgid "by" msgstr "par" -#: ../cache/locales.php:685 +#: [post]geolocalisation msgid "Geolocalisation" msgstr "Géolocalisation" -#: ../cache/locales.php:686 +#: [post]email msgid "email" msgstr "courriel" -#: ../cache/locales.php:688 +#: [post]no_comments msgid "No comments yet" msgstr "Pas de commentaires pour le moment" -#: ../cache/locales.php:689 +#: [post]no_comments_stream msgid "No comments stream" msgstr "Pas de flux de commentaires" -#: ../cache/locales.php:690 +#: [post]no_load msgid "Your feed cannot be loaded." msgstr "Votre flux n’est pas accessible." -#: ../cache/locales.php:691 +#: [post]older msgid "Get older posts" msgstr "Récupérer les anciens billets" -#: ../cache/locales.php:692 -#, php-format +#: [post]new_items msgid "%s new items" msgstr "%s nouveaux billets" -#: ../cache/locales.php:693 +#: [post]comment_error msgid "Comment publication error" msgstr "Erreur à la publication du commentaire" -#: ../cache/locales.php:694 +#: [post]comments_older msgid "Show the older comments" msgstr "Afficher les commentaires plus anciens" -#: ../cache/locales.php:695 -msgid "Loading comments ..." +#: [post]comments_loading +#, fuzzy +msgid "Loading comments..." msgstr "Chargement des commentaires…" -#: ../cache/locales.php:696 +#: [post]comments_get msgid "Get the comments" msgstr "Récupérer les commentaires" -#: ../cache/locales.php:697 +#: [post]comment_add msgid "Add a comment" msgstr "Commenter" -#: ../cache/locales.php:698 +#: [post]share msgid "Share with" msgstr "Partager avec" -#: ../cache/locales.php:699 +#: [post]share_everyone msgid "Everyone" msgstr "Tout le monde" -#: ../cache/locales.php:700 +#: [post]share_your_contacts msgid "Your contacts" msgstr "Vos contacts" -#: ../cache/locales.php:702 +#: [post]updated msgid "Updated" msgstr "Mis à jour" -#: ../cache/locales.php:703 +#: [post]content_not_found msgid "Content not found" msgstr "Contenu introuvable" -#: ../cache/locales.php:704 +#: [post]default_title msgid "Contact publication" msgstr "Billet d’un contact" -#: ../cache/locales.php:705 +#: [post]comments msgid "Comments" msgstr "Commentaires" -#: ../cache/locales.php:706 +#: [api]error msgid "The API is not reachable, try again later" msgstr "L’API est indisponible pour le moment, réessayez plus tard." -#: ../cache/locales.php:707 +#: [field]type_here msgid "Type here" msgstr "Rédigez votre message ici" +#~ msgid "Environment" +#~ msgstr "Environnement" + +#~ msgid "You can login with Facebook (chat only) using %syour.id@chat.facebook.com%s and your password" +#~ msgstr "Vous pouvez vous connecter avec Facebook (messagerie instantanée uniquement) en entrant %svotre.id@chat.facebook.com%s et votre mot de passe" + +#~ msgid "%sGmail accounts are also compatible%s but are not fully supported" +#~ msgstr "%sLes comptes Gmail sont aussi compatibles%s mais ne sont pas complètement pris en charge" + +#~ msgid "You can login using your favorite Jabber account" +#~ msgstr "Vous pouvez vous connecter avec votre compte Jabber favori" + +#~ msgid "or with our demonstration account" +#~ msgstr "ou avec notre compte de démonstration" + +#~ msgid "%s has been removed from your public groups" +#~ msgstr "%s a été supprimé de vos groupes publics" + +#~ msgid "Remove a chatroom" +#~ msgstr "Enlever un salon de discussion" + +#~ msgid "You are going to remove the following chatroom. Please confirm your action." +#~ msgstr "Vous allez supprimer le salon de discussion suivant de vos signets. Confirmez s’il vous plaît." + +#~ msgid "Remote application incompatible" +#~ msgstr "L’application distante est incompatible" + +#~ msgid "Remove" +#~ msgstr "Retirer" + +#~ msgid "remorseful" +#~ msgstr "plein de remords" + #~ msgid "Movim's folder must be writable." #~ msgstr "Le dossier racine de Movim doit être accessible en écriture." -#, php-format #~ msgid "Couldn't create directory '%s'." #~ msgstr "La création du répertoire '%s' est impossible." -#, php-format #~ msgid "Couldn't create configuration file '%s'." #~ msgstr "La création du fichier de configuration '%s' est impossible." @@ -2669,15 +2783,12 @@ msgstr "Rédigez votre message ici" #~ msgid "JID not provided." #~ msgstr "JID indisponible." -#, php-format #~ msgid "jid '%s' is incorrect" #~ msgstr "Le JID '%s' n'est pas valide" -#, php-format #~ msgid "Cannot open log file '%s'" #~ msgstr "Le journal '%s' ne peut être ouvert" -#, php-format #~ msgid "%s - Account Creation" #~ msgstr "%s - Création de compte" @@ -2705,20 +2816,15 @@ msgstr "Rédigez votre message ici" #~ msgid "Actual version : " #~ msgstr "Version actuelle : " -#, php-format #~ msgid "Install %s and %s packages" #~ msgstr "Veuillez installer les paquets %s et %s" #~ msgid "Update your PHP version or contact your server administrator" -#~ msgstr "" -#~ "Mettez à jour votre version de PHP ou contactez l'administrateur de votre " -#~ "serveur" +#~ msgstr "Mettez à jour votre version de PHP ou contactez l'administrateur de votre serveur" #~ msgid "Enable read and write rights on Movim's root folder" -#~ msgstr "" -#~ "Activez les droits de lecture et d'écriture sur le dossier racine de Movim" +#~ msgstr "Activez les droits de lecture et d'écriture sur le dossier racine de Movim" -#, php-format #~ msgid "Please remove the %s folder in order to complete the installation" #~ msgstr "Veuillez supprimer le dossier %s pour terminer l'installation" @@ -2746,24 +2852,15 @@ msgstr "Rédigez votre message ici" #~ msgid "Database Detected" #~ msgstr "Base de données détectée" -#, php-format #~ msgid "Movim requires the %s extension." #~ msgstr "Movim a besoin de l'extension %s." -#~ msgid "" -#~ "The following requirements were not met. Please make sure they are all " -#~ "satisfied in order to install Movim." -#~ msgstr "" -#~ "Les dépendances ci-dessous ne sont pas satisfaites. Assurez-vous qu'elles le " -#~ "soient afin d'installer Movim." +#~ msgid "The following requirements were not met. Please make sure they are all satisfied in order to install Movim." +#~ msgstr "Les dépendances ci-dessous ne sont pas satisfaites. Assurez-vous qu'elles le soient afin d'installer Movim." -#, php-format #~ msgid "You can now access your shiny Movim instance %sJump In !%s" -#~ msgstr "" -#~ "Vous pouvez maintenant accéder à votre version fraîchement installée de " -#~ "Movim %sAllons y !%s" +#~ msgstr "Vous pouvez maintenant accéder à votre version fraîchement installée de Movim %sAllons y !%s" -#, php-format #~ msgid "Install the %s package" #~ msgstr "Installer le paquet %s" @@ -2804,9 +2901,7 @@ msgstr "Rédigez votre message ici" #~ msgstr "Créer ma vCard" #~ msgid "A capital letter, a digit and a special character are recommended" -#~ msgstr "" -#~ "Un bon mot de passe est composé d'au moins une majuscule, un chiffre et un " -#~ "caractère spécial" +#~ msgstr "Un bon mot de passe est composé d'au moins une majuscule, un chiffre et un caractère spécial" #~ msgid "8 characters" #~ msgstr "8 caractères" @@ -2817,14 +2912,9 @@ msgstr "Rédigez votre message ici" #~ msgid "Address" #~ msgstr "Adresse" -#~ msgid "" -#~ "Firstly fill in this blank with a brand new account ID, this address will " -#~ "follow you on all the Movim network !" -#~ msgstr "" -#~ "Tout d'abord remplir ce vide avec un ID de tout nouveau compte, cette " -#~ "adresse vous suivra sur tout le réseau Movim !" +#~ msgid "Firstly fill in this blank with a brand new account ID, this address will follow you on all the Movim network !" +#~ msgstr "Tout d'abord remplir ce vide avec un ID de tout nouveau compte, cette adresse vous suivra sur tout le réseau Movim !" -#, php-format #~ msgid "%s - Add An Account" #~ msgstr "%s - Ajouter Un Compte" @@ -2837,16 +2927,11 @@ msgstr "Rédigez votre message ici" #~ msgid "Client Type" #~ msgstr "Type de Client" -#, php-format #~ msgid "Contacts (%s)" #~ msgstr "Contacts (%s)" -#~ msgid "" -#~ "Your server doesn't support post publication, you can only read contact's " -#~ "feeds" -#~ msgstr "" -#~ "Votre serveur ne gère pas la publication des billets, vous ne pouvez que " -#~ "lire les flux de vos contacts." +#~ msgid "Your server doesn't support post publication, you can only read contact's feeds" +#~ msgstr "Votre serveur ne gère pas la publication des billets, vous ne pouvez que lire les flux de vos contacts." #~ msgid "No profile yet ?" #~ msgstr "Pas encore de profil ?" @@ -2855,9 +2940,7 @@ msgstr "Rédigez votre message ici" #~ msgstr "Modifier mon profil" #~ msgid "PHP version mismatch. Movim requires PHP 5.3 minimum." -#~ msgstr "" -#~ "La version de PHP ne correspond pas. Movim nécessite la version 5.3 au " -#~ "minimum." +#~ msgstr "La version de PHP ne correspond pas. Movim nécessite la version 5.3 au minimum." #~ msgid "normal" #~ msgstr "standard" @@ -2868,20 +2951,11 @@ msgstr "Rédigez votre message ici" #~ msgid "empty" #~ msgstr "vide" -#~ msgid "" -#~ "Keep in mind that Movim is still under development and will handle many " -#~ "personal details. Its use can potentially endanger your data. Always pay " -#~ "attention to information that you submit." -#~ msgstr "" -#~ "Gardez à l'esprit que Movim est encore en développement et va manipuler des " -#~ "informations personnelles. Son utilisation peut donc les mettre en danger. " -#~ "Faites donc toujours attention aux informations que vous envoyez." +#~ msgid "Keep in mind that Movim is still under development and will handle many personal details. Its use can potentially endanger your data. Always pay attention to information that you submit." +#~ msgstr "Gardez à l'esprit que Movim est encore en développement et va manipuler des informations personnelles. Son utilisation peut donc les mettre en danger. Faites donc toujours attention aux informations que vous envoyez." -#~ msgid "" -#~ "Before you enjoy your social network, a few adjustements are required." -#~ msgstr "" -#~ "Avant que vous utilisiez votre réseau social, quelques ajustements sont " -#~ "nécessaires." +#~ msgid "Before you enjoy your social network, a few adjustements are required." +#~ msgstr "Avant que vous utilisiez votre réseau social, quelques ajustements sont nécessaires." #~ msgid "ultimate" #~ msgstr "complet" @@ -2889,34 +2963,14 @@ msgstr "Rédigez votre message ici" #~ msgid "talkative" #~ msgstr "bavard" -#, php-format -#~ msgid "" -#~ "Although Movim is evolving fast, many (many) features are missing. Be " -#~ "patient ;). You can have a look %s at next versions's roadmaps %s to know if " -#~ "the one you want is on its way." -#~ msgstr "" -#~ "Même si Movim avance vite, il manque encore de (très) nombreuses " -#~ "fonctionnalités. Soyez patient ;). Vous pouvez aller jeter un œil aux %s " -#~ "feuilles de routes des prochaines version %s pour voir si celle-ci n'est pas " -#~ "déjà prévue." +#~ msgid "Although Movim is evolving fast, many (many) features are missing. Be patient ;). You can have a look %s at next versions's roadmaps %s to know if the one you want is on its way." +#~ msgstr "Même si Movim avance vite, il manque encore de (très) nombreuses fonctionnalités. Soyez patient ;). Vous pouvez aller jeter un œil aux %s feuilles de routes des prochaines version %s pour voir si celle-ci n'est pas déjà prévue." -#, php-format -#~ msgid "" -#~ "Go to the %s to the Frequently Asked Questions %s or come ask your question " -#~ "on the official chatroom %s or via our mailing-list (%s see the dedicated " -#~ "page %s)." -#~ msgstr "" -#~ "Allez jeter un oeil %s à la Foire aux Questions %s ou venez nous la poser " -#~ "directement sur le salon officiel %s ou sur la mailing-list (%s voir la page " -#~ "dédiée %s)." +#~ msgid "Go to the %s to the Frequently Asked Questions %s or come ask your question on the official chatroom %s or via our mailing-list (%s see the dedicated page %s)." +#~ msgstr "Allez jeter un oeil %s à la Foire aux Questions %s ou venez nous la poser directement sur le salon officiel %s ou sur la mailing-list (%s voir la page dédiée %s)." -#, php-format -#~ msgid "" -#~ "Don't forget that Movim is an open source project, a helping hand is always " -#~ "welcome (see %s Can I participate %s)" -#~ msgstr "" -#~ "Et n'oubliez pas que Movim est un logiciel libre, un petit coup de main est " -#~ "toujours le bienvenu (voir la page %s Puis-je participer %s)." +#~ msgid "Don't forget that Movim is an open source project, a helping hand is always welcome (see %s Can I participate %s)" +#~ msgstr "Et n'oubliez pas que Movim est un logiciel libre, un petit coup de main est toujours le bienvenu (voir la page %s Puis-je participer %s)." #~ msgid "Link my current account" #~ msgstr "Lier mon compte actuel" @@ -2924,22 +2978,15 @@ msgstr "Rédigez votre message ici" #~ msgid "Connecting..." #~ msgstr "Connexion…" -#, php-format -#~ msgid "This server hosts %s accounts" -#~ msgstr "Ce serveur héberge %s comptes" - #~ msgid "Invite this user" #~ msgstr "Inviter cet utilisateur" -#, php-format #~ msgid "Bosh connection failed with error '%s'" #~ msgstr "La connection Bosh a échoué avec l'erreur '%s'" -#, php-format #~ msgid "Database connection failed with error '%s'" #~ msgstr "La connexion à la base de données à échoué avec l'erreur '%s'" -#, php-format #~ msgid "XMPP connection through Bosh failed with error '%s'" #~ msgstr "La connection XMPP à travers Bosh a échoué avec l'erreur '%s'" @@ -2949,14 +2996,9 @@ msgstr "Rédigez votre message ici" #~ msgid "Thank you for downloading Movim!" #~ msgstr "Merci d'avoir téléchargé Movim !" -#~ msgid "" -#~ "Some errors were detected. Please correct them for the installation to " -#~ "proceed." -#~ msgstr "" -#~ "Des erreurs ont été détectées. Veuillez les corriger pour terminer " -#~ "correctement l'installation." +#~ msgid "Some errors were detected. Please correct them for the installation to proceed." +#~ msgstr "Des erreurs ont été détectées. Veuillez les corriger pour terminer correctement l'installation." -#, php-format #~ msgid "Cannot load element value '%s'" #~ msgstr "Impossible de charger la valeur de l'élément « %s »" @@ -2975,20 +3017,11 @@ msgstr "Rédigez votre message ici" #~ msgid "I can't find the answer to my question here" #~ msgstr "Ma question n’est pas listée ici" -#, php-format -#~ msgid "" -#~ "Visit the page %s What is Movim ? %s to know more about the project, its " -#~ "aims and understand how it works." -#~ msgstr "" -#~ "Visitez la page %s Qu’est-ce que Movim ? %s pour en savoir plus le projet, " -#~ "ses buts et comprendre son fonctionnement." +#~ msgid "Visit the page %s What is Movim ? %s to know more about the project, its aims and understand how it works." +#~ msgstr "Visitez la page %s Qu’est-ce que Movim ? %s pour en savoir plus le projet, ses buts et comprendre son fonctionnement." -#~ msgid "" -#~ "Some features are missing/I can't do everything I used to do on other social " -#~ "networks" -#~ msgstr "" -#~ "Il manque des fonctionnalités / Je n’arrive pas à faire ce que je faisais " -#~ "sur les autres réseaux sociaux" +#~ msgid "Some features are missing/I can't do everything I used to do on other social networks" +#~ msgstr "Il manque des fonctionnalités / Je n’arrive pas à faire ce que je faisais sur les autres réseaux sociaux" #~ msgid "Could not communicate with the XMPP server" #~ msgstr "Erreur de communication avec le serveur XMPP" diff --git a/sources/locales/gl.po b/sources/locales/gl.po index 60b8f0e..d717394 100644 --- a/sources/locales/gl.po +++ b/sources/locales/gl.po @@ -1,2592 +1,2705 @@ # Galician translations for Movim package. # This file is distributed under the same license as the Movim package. # This file was translated from CodingTeam at . +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/About/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Account/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AccountNext/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AdHoc/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AdminDB/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AdminMain/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AdminTest/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Api/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Avatar/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Blog/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Bookmark/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Chat/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Chats/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/ConfigData/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Config/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Contact/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Group/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Groups/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Header/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Hello/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Help/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Init/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Location/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/LoginAnonymous/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Login/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Menu/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/NodeAffiliations/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/NodeSubscriptions/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Notifs/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Post/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Presence/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Publish/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/PubsubSubscriptionConfig/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Rooms/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Roster/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Share/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Statistics/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Subscribe/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Syndication/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Upload/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Vcard4/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/VisioExt/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Visio/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../locales/locales.ini msgid "" msgstr "" "Project-Id-Version: Movim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-06-08 22:06+0200\n" +"POT-Creation-Date: 2015-08-20 15:17+0200\n" "PO-Revision-Date: 2014-06-01 23:06+0000\n" "Last-Translator: Daniel-san \n" "Language-Team: LANGUAGE \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2015-06-18 21:08+0000\n" "X-Generator: Launchpad (build 17570)\n" -"Language: \n" -#: ../cache/locales.php:2 +#: [about]thanks msgid "Thanks" msgstr "" -#: ../cache/locales.php:3 +#: [about]developers msgid "Developers" msgstr "" -#: ../cache/locales.php:4 +#: [about]translators msgid "Translators" msgstr "" -#: ../cache/locales.php:5 +#: [about]software msgid "Software" msgstr "" -#: ../cache/locales.php:6 +#: [about]resources msgid "Resources" msgstr "" -#: ../cache/locales.php:7 ../cache/locales.php:83 ../cache/locales.php:85 +#: [about]api [schema]api [api]title msgid "API" msgstr "" -#: ../cache/locales.php:8 -msgid "" -"Movim is an XMPP-based communication platform. All the project, except the " -"following software and resources, is under" +#: [about]info +msgid "Movim is an XMPP-based communication platform. All the project, except the following software and resources, is under" msgstr "" -#: ../cache/locales.php:9 +#: [account]title msgid "Account" msgstr "" -#: ../cache/locales.php:10 -msgid "The password has been updated" -msgstr "" +#: [account]password_change_title +#, fuzzy +msgid "Change my password" +msgstr "Contrasinal incorrecta" -#: ../cache/locales.php:11 -msgid "Please provide a valid password (6 characters minimum)" -msgstr "" - -#: ../cache/locales.php:12 -msgid "The provided passwords are not the same" -msgstr "" - -#: ../cache/locales.php:13 -msgid "Delete my account" -msgstr "" - -#: ../cache/locales.php:14 -msgid "" -"You will delete your XMPP account and all the relative information linked to " -"it (profile, contacts and publications)." -msgstr "" - -#: ../cache/locales.php:15 -msgid "Are you sure that you want to delete it ?" -msgstr "" - -#: ../cache/locales.php:16 ../cache/locales.php:411 -msgid "Create a new account" -msgstr "" - -#: ../cache/locales.php:17 -msgid "No account creation form found on the server" -msgstr "" - -#: ../cache/locales.php:18 ../cache/locales.php:172 -msgid "on" -msgstr "" - -#: ../cache/locales.php:19 -msgid "Your acccount has been successfully registered" -msgstr "" - -#: ../cache/locales.php:20 -msgid "Loading" -msgstr "" - -#: ../cache/locales.php:21 -msgid "Not Acceptable" -msgstr "" - -#: ../cache/locales.php:22 -msgid "The registration system of this server is currently unavailable" -msgstr "" - -#: ../cache/locales.php:23 -msgid "" -"This server use an external system for the registration, please click on the " -"following URL." -msgstr "" - -#: ../cache/locales.php:24 -msgid "Actions" -msgstr "" - -#: ../cache/locales.php:25 ../cache/locales.php:82 -msgid "Database" -msgstr "" - -#: ../cache/locales.php:26 -msgid "Modl wasn't able to connect to the database" -msgstr "" - -#: ../cache/locales.php:27 -msgid "Movim is connected to the database" -msgstr "" - -#: ../cache/locales.php:28 -msgid "The database need to be updated" -msgstr "" - -#: ../cache/locales.php:29 -msgid "Movim database is up to date" -msgstr "" - -#: ../cache/locales.php:30 -msgid "Database Type" -msgstr "" - -#: ../cache/locales.php:31 ../cache/locales.php:50 ../cache/locales.php:540 -msgid "Username" -msgstr "" - -#: ../cache/locales.php:32 ../cache/locales.php:51 ../cache/locales.php:282 -#: ../cache/locales.php:541 +#: [account]password [db]password [credentials]password [form]password +#: [input]password msgid "Password" msgstr "Contrasinal" -#: ../cache/locales.php:33 +#: [account]password_confirmation +#, fuzzy +msgid "Password confirmation" +msgstr "Configuración de %s" + +#: [account]password_changed +msgid "The password has been updated" +msgstr "" + +#: [account]password_not_valid +msgid "Please provide a valid password (6 characters minimum)" +msgstr "" + +#: [account]password_not_same +msgid "The provided passwords are not the same" +msgstr "" + +#: [account]delete_title +msgid "Delete my account" +msgstr "" + +#: [account]delete +msgid "Delete your account" +msgstr "" + +#: [account]delete_text +msgid "You will delete your XMPP account and all the relative information linked to it (profile, contacts and publications)." +msgstr "" + +#: [account]delete_text_confirm +msgid "Are you sure that you want to delete it ?" +msgstr "" + +#: [account]gateway_title +msgid "Gateway" +msgstr "" + +#: [create]title [subscribe]title +msgid "Create a new account" +msgstr "" + +#: [create]notfound +msgid "No account creation form found on the server" +msgstr "" + +#: [create]server_on +msgid "on" +msgstr "" + +#: [create]successfull +msgid "Your acccount has been successfully registered" +msgstr "" + +#: [create]loading +msgid "Loading" +msgstr "" + +#: [error]not_acceptable +msgid "Not Acceptable" +msgstr "" + +#: [error]service_unavailable +msgid "The registration system of this server is currently unavailable" +msgstr "" + +#: [oob]about +msgid "This server use an external system for the registration, please click on the following URL." +msgstr "" + +#: [adhoc]title +msgid "Actions" +msgstr "" + +#: [db]legend [schema]database +msgid "Database" +msgstr "" + +#: [db]connect_error +msgid "Modl wasn't able to connect to the database" +msgstr "" + +#: [db]connect_success +msgid "Movim is connected to the database" +msgstr "" + +#: [db]update +msgid "The database need to be updated" +msgstr "" + +#: [db]up_to_date +msgid "Movim database is up to date" +msgstr "" + +#: [db]type +msgid "Database Type" +msgstr "" + +#: [db]username [credentials]username [input]username +msgid "Username" +msgstr "" + +#: [db]host msgid "Host" msgstr "" -#: ../cache/locales.php:34 +#: [db]port msgid "Port" msgstr "" -#: ../cache/locales.php:35 -msgid "Database Name" +#: [db]name +msgid "Database sName" msgstr "" -#: ../cache/locales.php:36 +#: [admin]general msgid "General Settings" msgstr "" -#: ../cache/locales.php:37 +#: [general]theme msgid "Theme" msgstr "" -#: ../cache/locales.php:38 +#: [general]language msgid "Default language" msgstr "" -#: ../cache/locales.php:39 -msgid "Environment" -msgstr "" - -#: ../cache/locales.php:40 +#: [general]log_verbosity msgid "Log verbosity" msgstr "" -#: ../cache/locales.php:41 +#: [general]timezone msgid "Server Timezone" msgstr "" -#: ../cache/locales.php:42 +#: [general]limit msgid "User folder size limit (in bytes)" msgstr "" -#: ../cache/locales.php:43 +#: [websocket]title msgid "WebSocket Configuration" msgstr "" -#: ../cache/locales.php:44 +#: [websocket]info msgid "Enter here a valid WebSocket URI in the form" msgstr "" -#: ../cache/locales.php:45 +#: [websocket]label msgid "WebSocket URI" msgstr "" -#: ../cache/locales.php:46 -msgid "" -"If you change the URI, please restart the daemon to reload the configuration" +#: [websocket]save_info +msgid "If you change the URI, please restart the daemon to reload the configuration" msgstr "" -#: ../cache/locales.php:47 +#: [websocket]publics msgid "Public WebSockets" msgstr "" -#: ../cache/locales.php:48 +#: [credentials]title msgid "Administration Credential" msgstr "" -#: ../cache/locales.php:49 +#: [credentials]info msgid "Change the default credentials admin/password" msgstr "" -#: ../cache/locales.php:52 +#: [credentials]re_password msgid "Retype password" msgstr "" -#: ../cache/locales.php:53 +#: [whitelist]title msgid "Whitelist - XMPP Server" msgstr "" -#: ../cache/locales.php:54 -msgid "" -"If you want to specify a list of authorized XMPP servers on your Movim pod " -"and forbid the connection on all the others please put their domain name " -"here, with comma (ex: movim.eu,jabber.fr)" +#: [whitelist]info1 +msgid "If you want to specify a list of authorized XMPP servers on your Movim pod and forbid the connection on all the others please put their domain name here, with comma (ex: movim.eu,jabber.fr)" msgstr "" -#: ../cache/locales.php:55 -msgid "" -"Leave this field blank if you allow the access to all the XMPP accounts." +#: [whitelist]info2 +msgid "Leave this field blank if you allow the access to all the XMPP accounts." msgstr "" -#: ../cache/locales.php:56 +#: [whitelist]label msgid "List of whitelisted XMPP servers" msgstr "" -#: ../cache/locales.php:57 ../cache/locales.php:61 +#: [information]title +msgctxt "[information]title" msgid "Information Message" msgstr "" -#: ../cache/locales.php:58 +#: [information]description msgid "Description" msgstr "" -#: ../cache/locales.php:59 +#: [information]info1 msgid "This message will be displayed on the login page" msgstr "" -#: ../cache/locales.php:60 -msgid "Leave this field blank if you don't want to show any message." +#: [information]info2 +msgid "Leave this field blank if you dont want to show any message." msgstr "" -#: ../cache/locales.php:62 +#: [information]label +msgctxt "[information]label" +msgid "Information Message" +msgstr "" + +#: [log]empty msgid "Empty" msgstr "" -#: ../cache/locales.php:63 +#: [log]syslog msgid "Syslog" msgstr "" -#: ../cache/locales.php:64 +#: [log]syslog_files msgid "Syslog and files" msgstr "" -#: ../cache/locales.php:65 +#: [rewrite]title msgid "URL Rewriting" msgstr "" -#: ../cache/locales.php:66 +#: [rewrite]info msgid "The URL Rewriting can be enabled" msgstr "" -#: ../cache/locales.php:67 +#: [admin]compatibility msgid "General Overview" msgstr "" -#: ../cache/locales.php:68 -msgid "" -"Movim has found some issues or things that need to be fixed or improved" +#: [compatibility]info +msgid "Movim has found some issues or things that need to be fixed or improved" msgstr "" -#: ../cache/locales.php:69 -#, php-format +#: [compatibility]php1 msgid "Update your PHP-Version: %s" msgstr "" -#: ../cache/locales.php:70 +#: [compatibility]php2 msgid "Required: 5.3.0" msgstr "" -#: ../cache/locales.php:71 +#: [compatibility]curl msgid "Install the php5-curl library" msgstr "" -#: ../cache/locales.php:72 +#: [compatibility]imagick msgid "Install the php5-imagick library" msgstr "" -#: ../cache/locales.php:73 +#: [compatibility]gd msgid "Install the php5-gd library" msgstr "" -#: ../cache/locales.php:74 -msgid "Read and write rights for the webserver in Movim's root directory" +#: [compatibility]rights +msgid "Read and write rights for the webserver in Movims root directory" msgstr "" -#: ../cache/locales.php:75 +#: [compatibility]rewrite msgid "The URL Rewriting support is currently disabled" msgstr "" -#: ../cache/locales.php:76 +#: [compatibility]db msgid "The database need to be updated, go to the database panel to fix this" msgstr "" -#: ../cache/locales.php:77 -msgid "" -"WebSocket connection error, check if the Movim Daemon is running and is " -"reacheable" +#: [compatibility]websocket +msgid "WebSocket connection error, check if the Movim Daemon is running and is reachable" msgstr "" -#: ../cache/locales.php:78 -msgid "" -"XMPP Websocket connection error, please check the validity of the URL given " -"in the General Configuration" +#: [compatibility]xmpp_websocket +msgid "XMPP Websocket connection error, please check the validity of the URL given in the General Configuration" msgstr "" -#: ../cache/locales.php:79 +#: [schema]browser msgid "Browser" msgstr "" -#: ../cache/locales.php:80 +#: [schema]movim msgid "Movim Core" msgstr "" -#: ../cache/locales.php:81 +#: [schema]daemon msgid "Movim Daemon" msgstr "" -#: ../cache/locales.php:84 +#: [schema]xmpp msgid "XMPP" msgstr "" -#: ../cache/locales.php:86 -#, php-format -msgid "" -"Here you can register your pod on the official %sMovim API%s and be listed " -"on %sthe pods page%s." +#: [api]info +msgid "Here you can register your pod on the official %sMovim API%s and be listed on %sthe pods page%s." msgstr "" -#: ../cache/locales.php:87 +#: [api]register msgid "Your pod is not registered on the API" msgstr "" -#: ../cache/locales.php:88 +#: [api]registered msgid "Your pod is registered on the API" msgstr "" -#: ../cache/locales.php:89 +#: [api]wait msgid "Your pod is not yet validated" msgstr "" -#: ../cache/locales.php:90 +#: [api]validated msgid "Your pod is validated" msgstr "" -#: ../cache/locales.php:91 -msgid "" -"You asked to be removed from the API, this request will be processed in a " -"couple of hours" +#: [api]unregister +msgid "You asked to be removed from the API, this request will be processed in a couple of hours" msgstr "" -#: ../cache/locales.php:92 ../cache/locales.php:147 +#: [api]conf_updated [config]updated msgid "Configuration updated" msgstr "" -#: ../cache/locales.php:93 +#: [avatar]file msgid "File" msgstr "" -#: ../cache/locales.php:94 +#: [avatar]use_it msgid "Use it" msgstr "" -#: ../cache/locales.php:95 +#: [avatar]webcam msgid "Webcam" msgstr "" -#: ../cache/locales.php:96 +#: [avatar]cheese msgid "Cheese !" msgstr "" -#: ../cache/locales.php:97 +#: [avatar]snapshot msgid "Take a webcam snapshot" msgstr "" -#: ../cache/locales.php:98 +#: [avatar]updated msgid "Avatar Updated" msgstr "" -#: ../cache/locales.php:99 +#: [avatar]not_updated msgid "Avatar Not Updated" msgstr "" -#: ../cache/locales.php:100 ../cache/locales.php:415 -#, php-format +#: [blog]title [feed]title msgid "%s's feed" msgstr "" -#: ../cache/locales.php:101 +#: [blog]empty msgid "This user has not posted anything right now" msgstr "" -#: ../cache/locales.php:102 +#: [title]conferences msgid "Conferences" msgstr "" -#: ../cache/locales.php:103 ../cache/locales.php:193 ../cache/locales.php:217 -#: ../cache/locales.php:468 +#: [title]groups [group]empty_title [menu]groups [page]groups msgid "Groups" msgstr "" -#: ../cache/locales.php:104 +#: [chatroom]add msgid "Add a new Chat Room" msgstr "" -#: ../cache/locales.php:105 ../cache/locales.php:368 +#: [chatroom]id [chatrooms]id msgid "Chat Room ID" msgstr "" -#: ../cache/locales.php:106 ../cache/locales.php:116 ../cache/locales.php:156 -#: ../cache/locales.php:361 ../cache/locales.php:369 ../cache/locales.php:424 +#: [chatroom]name +msgctxt "[chatroom]name" msgid "Name" msgstr "" -#: ../cache/locales.php:107 ../cache/locales.php:157 ../cache/locales.php:371 -#: ../cache/locales.php:425 +#: [chatroom]nickname [general]nickname [chatrooms]nickname msgid "Nickname" msgstr "" -#: ../cache/locales.php:108 +#: [chatroom]autojoin_label msgid "Do you want do join automaticaly this Chat Room ?" msgstr "" -#: ../cache/locales.php:109 ../cache/locales.php:372 +#: [chatroom]bad_id [chatrooms]bad_id msgid "Bad Chatroom ID" msgstr "" -#: ../cache/locales.php:110 ../cache/locales.php:373 +#: [chatroom]empty_name [chatrooms]empty_name msgid "Empty name" msgstr "" -#: ../cache/locales.php:111 ../cache/locales.php:380 +#: [bookmarks]updated msgid "Bookmarks updated" msgstr "" -#: ../cache/locales.php:112 -msgid "An error occured : " +#: [bookmarks]error +msgid "An error occured :" msgstr "" -#: ../cache/locales.php:113 +#: [bookmarks]configure msgid "Configure" msgstr "" -#: ../cache/locales.php:114 +#: [url]add msgid "Add a new URL" msgstr "" -#: ../cache/locales.php:115 +#: [url]url msgid "URL" msgstr "" -#: ../cache/locales.php:117 +#: [url]name +msgctxt "[url]name" +msgid "Name" +msgstr "" + +#: [message]published msgid "Message Published" msgstr "" -#: ../cache/locales.php:118 ../cache/locales.php:138 +#: [message]encrypted msgid "Encrypted message" msgstr "" -#: ../cache/locales.php:119 +#: [message]composing [chats]composing msgid "Composing..." msgstr "" -#: ../cache/locales.php:120 +#: [message]paused [chats]paused msgid "Paused..." msgstr "" -#: ../cache/locales.php:121 +#: [message]gone msgid "Contact gone" msgstr "" -#: ../cache/locales.php:122 -#, php-format +#: [chat]attention msgid "%s needs your attention" msgstr "" -#: ../cache/locales.php:123 +#: [chat]placeholder msgid "Your message here..." msgstr "" -#: ../cache/locales.php:124 +#: [chat]smileys msgid "Smileys" msgstr "" -#: ../cache/locales.php:125 ../cache/locales.php:139 +#: [chat]empty_title [button]chat msgid "Chat" msgstr "Chat" -#: ../cache/locales.php:126 +#: [chat]empty_text msgid "Discuss with your contacts" msgstr "" -#: ../cache/locales.php:127 -msgid "Members" -msgstr "" - -#: ../cache/locales.php:128 ../cache/locales.php:376 -msgid "Connected to the chatroom" -msgstr "" - -#: ../cache/locales.php:129 ../cache/locales.php:377 -msgid "Disconnected from the chatroom" -msgstr "" - -#: ../cache/locales.php:130 ../cache/locales.php:200 ../cache/locales.php:469 -msgid "Configuration" -msgstr "Configuración" - -#: ../cache/locales.php:131 -msgid "Configuration saved" -msgstr "" - -#: ../cache/locales.php:132 -msgid "Subject" -msgstr "" - -#: ../cache/locales.php:133 -msgid "Subject changed" -msgstr "" - -#: ../cache/locales.php:134 -msgid "Open a new conversation by clicking on the plus button bellow" -msgstr "" - -#: ../cache/locales.php:135 -msgid "Chat with a contact" -msgstr "" - -#: ../cache/locales.php:136 +#: [chat]frequent [chats]frequent msgid "Frequent contacts" msgstr "" -#: ../cache/locales.php:137 +#: [chatroom]members +msgid "Members" +msgstr "" + +#: [chatroom]connected [chatrooms]connected +msgid "Connected to the chatroom" +msgstr "" + +#: [chatroom]disconnected [chatrooms]disconnected +msgid "Disconnected from the chatroom" +msgstr "" + +#: [chatroom]config [group]configuration [page]configuration +msgid "Configuration" +msgstr "Configuración" + +#: [chatroom]config_saved +msgid "Configuration saved" +msgstr "" + +#: [chatroom]subject +msgid "Subject" +msgstr "" + +#: [chatroom]subject_changed +msgid "Subject changed" +msgstr "" + +#: [chats]empty_title +msgid "No chats yet..." +msgstr "" + +#: [chats]empty +msgid "Open a new conversation by clicking on the plus button bellow or visit the Contacts page." +msgstr "" + +#: [chats]add +msgid "Chat with a contact" +msgstr "" + +#: [chats]more msgid "Load more contacts" msgstr "" -#: ../cache/locales.php:140 -msgid "General" -msgstr "" - -#: ../cache/locales.php:141 -msgid "Language" -msgstr "Linguaxe" - -#: ../cache/locales.php:142 -msgid "Roster display" -msgstr "" - -#: ../cache/locales.php:143 -msgid "Show the offline contacts" -msgstr "" - -#: ../cache/locales.php:144 -msgid "Hide the offline contacts" -msgstr "" - -#: ../cache/locales.php:145 -msgid "Appearence" -msgstr "" - -#: ../cache/locales.php:146 -msgid "This configuration is shared wherever you are connected !" -msgstr "" - -#: ../cache/locales.php:148 -msgid "Notify on incoming message" -msgstr "" - -#: ../cache/locales.php:149 -msgid "Use desktop notifications" -msgstr "" - -#: ../cache/locales.php:150 +#: [title]data msgid "Data" msgstr "" -#: ../cache/locales.php:151 +#: [title]cache msgid "Cache" msgstr "" -#: ../cache/locales.php:152 ../cache/locales.php:218 ../cache/locales.php:466 +#: [title]contacts [menu]contacts [page]contacts msgid "Contacts" msgstr "" -#: ../cache/locales.php:153 ../cache/locales.php:480 +#: [title]posts [page]posts msgid "Posts" msgstr "" -#: ../cache/locales.php:154 +#: [title]messages msgid "Messages" msgstr "" -#: ../cache/locales.php:155 ../cache/locales.php:423 +#: [config]general +msgid "General" +msgstr "" + +#: [config]language +msgid "Language" +msgstr "Linguaxe" + +#: [config]roster +msgid "Roster display" +msgstr "" + +#: [config]roster_show +msgid "Show the offline contacts" +msgstr "" + +#: [config]roster_hide +msgid "Hide the offline contacts" +msgstr "" + +#: [config]appearence +msgid "Appearence" +msgstr "" + +#: [config]info +msgid "This configuration is shared wherever you are connected" +msgstr "" + +#: [notifications]message +msgid "Notify on incoming message" +msgstr "" + +#: [notifications]desktop +msgid "Use desktop notifications" +msgstr "" + +#: [general]legend [general]general_title msgid "General Informations" msgstr "" -#: ../cache/locales.php:158 ../cache/locales.php:427 +#: [general]name [public_groups]name [chatrooms]name +msgid "Name" +msgstr "" + +#: [general]date_of_birth msgid "Date of Birth" msgstr "" -#: ../cache/locales.php:159 ../cache/locales.php:428 +#: [general]gender msgid "Gender" msgstr "" -#: ../cache/locales.php:160 ../cache/locales.php:429 +#: [general]marital msgid "Marital Status" msgstr "" -#: ../cache/locales.php:161 ../cache/locales.php:426 +#: [general]email msgid "Email" msgstr "" -#: ../cache/locales.php:162 ../cache/locales.php:430 +#: [general]website msgid "Website" msgstr "" -#: ../cache/locales.php:163 ../cache/locales.php:431 +#: [general]about msgid "About Me" msgstr "" -#: ../cache/locales.php:164 +#: [general]accounts msgid "Other Accounts" msgstr "" -#: ../cache/locales.php:165 +#: [general]tune msgid "Is Listening" msgstr "" -#: ../cache/locales.php:166 ../cache/locales.php:432 +#: [position]legend [position]position_title msgid "Geographic Position" msgstr "" -#: ../cache/locales.php:167 ../cache/locales.php:433 +#: [position]locality msgid "Locality" msgstr "" -#: ../cache/locales.php:168 ../cache/locales.php:434 +#: [position]country msgid "Country" msgstr "" -#: ../cache/locales.php:169 +#: [mood]title msgid "Mood" msgstr "" -#: ../cache/locales.php:170 +#: [mood]im msgid "I'm " msgstr "" -#: ../cache/locales.php:171 +#: [listen]title msgid "Listening" msgstr "" -#: ../cache/locales.php:173 +#: [last]title msgid "Last seen" msgstr "" -#: ../cache/locales.php:174 +#: [client]title msgid "Client Informations" msgstr "" -#: ../cache/locales.php:175 +#: [explore]last_registered msgid "Last registered" msgstr "" -#: ../cache/locales.php:176 +#: [explore]explore msgid "Find some new friends" msgstr "" -#: ../cache/locales.php:177 ../cache/locales.php:533 +#: [edit]title [button]edit msgid "Edit" msgstr "" -#: ../cache/locales.php:178 +#: [edit]alias msgid "Alias" msgstr "" -#: ../cache/locales.php:179 +#: [edit]group msgid "Group" msgstr "" -#: ../cache/locales.php:180 ../cache/locales.php:400 +#: [edit]updated [roster]updated msgid "Contact updated" msgstr "" -#: ../cache/locales.php:181 +#: [delete]title msgid "Are you sure?" msgstr "" -#: ../cache/locales.php:182 -msgid "" -"You are going to delete one of your contacts, please confirm your action" +#: [delete]text +msgid "You are going to delete one of your contacts, please confirm your action" msgstr "" -#: ../cache/locales.php:183 -#, php-format +#: [age]years msgid "%s years" msgstr "" -#: ../cache/locales.php:184 +#: [blog]last msgid "Last public post" msgstr "" -#: ../cache/locales.php:185 +#: [subscription]to +msgid "You can see this contact status" +msgstr "" + +#: [subscription]to_button +msgid "Share my status" +msgstr "" + +#: [subscription]to_text +msgid "But this contact cannot see yours" +msgstr "" + +#: [subscription]from +msgid "You are not subscribed to this contact" +msgstr "" + +#: [subscription]from_button +msgid "Ask to subscribe" +msgstr "" + +#: [subscription]from_text +msgid "But this contact can still see if you are online" +msgstr "" + +#: [subscription]nil +msgid "No subscriptions" +msgstr "" + +#: [subscription]nil_button +msgid "Invite" +msgstr "" + +#: [subscription]nil_text +msgid "This contact is in your contact list but there is no subscriptions between the two accounts" +msgstr "" + +#: [group]subscribe msgid "Subscribe" msgstr "" -#: ../cache/locales.php:186 +#: [group]subscribed msgid "Subscribed" msgstr "" -#: ../cache/locales.php:187 +#: [group]unsubscribe msgid "Unsubscribe" msgstr "" -#: ../cache/locales.php:188 +#: [group]unsubscribe_text msgid "You are going to unsubscribe from this Group" msgstr "" -#: ../cache/locales.php:189 +#: [group]unsubscribed msgid "Unsubscribed" msgstr "" -#: ../cache/locales.php:190 +#: [group]share_label msgid "Make your membership to this group public to your friends" msgstr "" -#: ../cache/locales.php:191 +#: [group]label_label msgid "Give a label for this group" msgstr "" -#: ../cache/locales.php:192 +#: [group]sure msgid "Are you sure ?" msgstr "" -#: ../cache/locales.php:194 +#: [group]empty_text msgid "Discover, follow and share" msgstr "" -#: ../cache/locales.php:195 +#: [group]empty msgid "Something bad happened to this group" msgstr "" -#: ../cache/locales.php:196 +#: [group]config_saved msgid "Group configuration saved" msgstr "" -#: ../cache/locales.php:197 +#: [group]delete_title msgid "Delete the group" msgstr "" -#: ../cache/locales.php:198 -msgid "" -"You are going to delete the following group. Please confirm your action." +#: [group]delete_text +msgid "You are going to delete the following group. Please confirm your action." msgstr "" -#: ../cache/locales.php:199 -msgid "" -"It seems that this group doesn't exists anymore. Do you want to remove it " -"from your subscriptions?" +#: [group]delete_clean_text +msgid "It seems that this group doesn't exists anymore. Do you want to remove it from your subscriptions?" msgstr "" -#: ../cache/locales.php:201 ../cache/locales.php:408 +#: [group]counter +msgid "%s groups on this server" +msgstr "" + +#: [group]subscriptions [statistics]subscriptions msgid "Subscriptions" msgstr "" -#: ../cache/locales.php:202 ../cache/locales.php:290 +#: [group]servers +msgid "Groups servers" +msgstr "" + +#: [group]search_server +msgid "Search for a new server" +msgstr "" + +#: [group]help_info1 +msgid "Groups are the perfect way to share posts about topics that you like with all the other Movim's users." +msgstr "" + +#: [group]help_info2 +msgid "Choose a server and a Group and subscribe to it using the %s button in the header. You can also create a new one using the %s button." +msgstr "" + +#: [group]help_info3 +msgid "Done? You can now publish a new post in the Group by using the %s button." +msgstr "" + +#: [group]help_info4 +msgid "You will find a list of all your subscribed Groups in My Subscriptions and receive instantly all the new incoming posts in the %sNews%s page." +msgstr "" + +#: [groups]empty_title msgid "Hello" msgstr "" -#: ../cache/locales.php:203 ../cache/locales.php:225 ../cache/locales.php:291 +#: [groups]contact_post [hello]contact_post [menu]contact_post msgid "Contact post" msgstr "" -#: ../cache/locales.php:204 -msgid "" -"You don't have any subscriptions yet, select a group server above to start " -"exploring." +#: [groups]empty_text1 +msgid "You don't have any subscriptions yet, select a group server above to start exploring." msgstr "" -#: ../cache/locales.php:205 +#: [groups]empty_text2 msgid "Subscribe to your favorite feeds by bookmarking them." msgstr "" -#: ../cache/locales.php:206 +#: [groups]subscriptions msgid "My Subscriptions" msgstr "" -#: ../cache/locales.php:207 +#: [groups]add msgid "Create a new Group" msgstr "" -#: ../cache/locales.php:208 +#: [groups]name msgid "Group name" msgstr "" -#: ../cache/locales.php:209 +#: [groups]name_example msgid "My Little Pony - Fan Club" msgstr "" -#: ../cache/locales.php:210 +#: [groups]created msgid "Group created successfully" msgstr "" -#: ../cache/locales.php:211 +#: [groups]deleted msgid "Group deleted successfully" msgstr "" -#: ../cache/locales.php:212 +#: [groups]name_error msgid "Please provide a valid group name (4 characters minimum)" msgstr "" -#: ../cache/locales.php:213 +#: [groups]no_creation msgid "You cannot create a new Group on this server" msgstr "" -#: ../cache/locales.php:214 -#, php-format +#: [groups]sub msgid "%s subscribers" msgstr "" -#: ../cache/locales.php:215 -#, php-format +#: [groups]num msgid "%s posts" msgstr "" -#: ../cache/locales.php:216 +#: [groups]disco_error +msgid "This server doesn't exists" +msgstr "" + +#: [menu]all msgid "All" msgstr "" -#: ../cache/locales.php:219 +#: [menu]refresh msgid "Refresh all the streams" msgstr "" -#: ../cache/locales.php:220 ../cache/locales.php:402 -msgid "Search" +#: [roster]search +msgid "Search in your contacts" msgstr "" -#: ../cache/locales.php:221 +#: [hello]active_contacts +msgid "Active contacts" +msgstr "" + +#: [hello]chat msgid "Go on the Chat page" msgstr "" -#: ../cache/locales.php:222 -msgid "Read all theses articles on the News page" -msgstr "" - -#: ../cache/locales.php:223 -msgid "Visit your public blog" -msgstr "" - -#: ../cache/locales.php:224 -msgid "See your public posts and share them with all your contacts" -msgstr "" - -#: ../cache/locales.php:226 -msgid "Universal share button" -msgstr "" - -#: ../cache/locales.php:227 -msgid "" -"Bookmark or drag and drop the following button in your toolbar and use it on " -"all the pages you want to share on Movim" -msgstr "" - -#: ../cache/locales.php:228 -msgid "Share on Movim" -msgstr "" - -#: ../cache/locales.php:229 -msgid "Frequently Asked Questions" -msgstr "" - -#: ../cache/locales.php:230 -msgid "What do the little banners refer to ?" -msgstr "" - -#: ../cache/locales.php:231 -msgid "" -"Thanks to these five little banners, you can quickly identitfy the level of " -"confdentiality applied to the information you provide." -msgstr "" - -#: ../cache/locales.php:232 -msgid "White, only you can see the information" -msgstr "" - -#: ../cache/locales.php:233 -msgid "Green, you have chosen some contacts who can see your information" -msgstr "" - -#: ../cache/locales.php:234 -msgid "Orange, all your contact list can see your information" -msgstr "" - -#: ../cache/locales.php:235 -msgid "Red, everybody in the XMPP network can see your information" -msgstr "" - -#: ../cache/locales.php:236 -msgid "Black, the whole Internet can see your information" -msgstr "" - -#: ../cache/locales.php:237 -msgid "Looking for some documentation ?" -msgstr "" - -#: ../cache/locales.php:238 -msgid "Read the Wiki" -msgstr "" - -#: ../cache/locales.php:239 -msgid "Talk with us by email ?" -msgstr "" - -#: ../cache/locales.php:240 -msgid "Join the Mailing List" -msgstr "" - -#: ../cache/locales.php:241 -msgid "Chat with the team ?" -msgstr "" - -#: ../cache/locales.php:242 -msgid "Join the Chatroom" -msgstr "" - -#: ../cache/locales.php:243 -msgid "Location node created" -msgstr "" - -#: ../cache/locales.php:244 -msgid "Bookmark node created" -msgstr "" - -#: ../cache/locales.php:245 -msgid "Profile node created" -msgstr "" - -#: ../cache/locales.php:246 -msgid "Avatar node created" -msgstr "" - -#: ../cache/locales.php:247 -msgid "Subscriptions node created" -msgstr "" - -#: ../cache/locales.php:248 -msgid "Microblog node created" -msgstr "" - -#: ../cache/locales.php:249 -msgid "Location" -msgstr "" - -#: ../cache/locales.php:250 -msgid "Wrong position" -msgstr "" - -#: ../cache/locales.php:251 -msgid "Location updated" -msgstr "" - -#: ../cache/locales.php:252 -msgid "Update my position" -msgstr "" - -#: ../cache/locales.php:253 -msgid "Wrong username" -msgstr "" - -#: ../cache/locales.php:254 -msgid "Invalid JID" -msgstr "" - -#: ../cache/locales.php:255 -msgid "Empty Challenge from the server" -msgstr "" - -#: ../cache/locales.php:256 -msgid "XMPP Domain error, your account is not a correct Jabber ID" -msgstr "" - -#: ../cache/locales.php:257 -msgid "Some data are missing !" -msgstr "" - -#: ../cache/locales.php:258 -msgid "Wrong password" -msgstr "Contrasinal incorrecta" - -#: ../cache/locales.php:259 -msgid "Internal server error" -msgstr "" - -#: ../cache/locales.php:260 -msgid "Session error" -msgstr "" - -#: ../cache/locales.php:261 -msgid "Account successfully created" -msgstr "" - -#: ../cache/locales.php:262 ../cache/locales.php:271 -msgid "Your XMPP server is unauthorized" -msgstr "" - -#: ../cache/locales.php:263 -msgid "The server takes too much time to respond" -msgstr "" - -#: ../cache/locales.php:264 -msgid "Your web browser is too old to use with Movim." -msgstr "" - -#: ../cache/locales.php:265 -msgid "" -"Movim cannot talk with the server, please try again later (Websocket " -"connection error)" -msgstr "" - -#: ../cache/locales.php:266 -msgid "Impossible login" -msgstr "" - -#: ../cache/locales.php:267 -msgid "Oops!" -msgstr "" - -#: ../cache/locales.php:268 ../cache/locales.php:449 ../cache/locales.php:455 -msgid "Unknown error" -msgstr "" - -#: ../cache/locales.php:269 -msgid "Invalid username format" -msgstr "" - -#: ../cache/locales.php:270 -msgid "Invalid password format" -msgstr "" - -#: ../cache/locales.php:272 -msgid "A Movim session is already open on an other device" -msgstr "" - -#: ../cache/locales.php:273 -msgid "Movim failed to authenticate. You entered wrong data" -msgstr "" - -#: ../cache/locales.php:274 -msgid "Authentication mechanism not supported by Movim" -msgstr "" - -#: ../cache/locales.php:275 -msgid "The XMPP authentification failed" -msgstr "" - -#: ../cache/locales.php:276 -#, php-format -msgid "" -"You can login with Facebook (chat only) using %syour.id@chat.facebook.com%s " -"and your password" -msgstr "" - -#: ../cache/locales.php:277 -#, php-format -msgid "%sGmail accounts are also compatible%s but are not fully supported" -msgstr "" - -#: ../cache/locales.php:278 -msgid "You can login using your favorite Jabber account" -msgstr "" - -#: ../cache/locales.php:279 -msgid "or with our demonstration account" -msgstr "" - -#: ../cache/locales.php:280 ../cache/locales.php:435 -msgid "Accounts" -msgstr "" - -#: ../cache/locales.php:281 -msgid "My address" -msgstr "Meu Enderezo" - -#: ../cache/locales.php:283 -msgid "Create one !" -msgstr "" - -#: ../cache/locales.php:284 -msgid "No account yet ?" -msgstr "" - -#: ../cache/locales.php:285 -msgid "Another account" -msgstr "" - -#: ../cache/locales.php:286 -msgid "You can login with accounts from theses servers" -msgstr "" - -#: ../cache/locales.php:287 -msgid "Connected" -msgstr "" - -#: ../cache/locales.php:288 -msgid "Population" -msgstr "" - -#: ../cache/locales.php:289 -msgid "Bad nickname (between 4 and 40 characters)" -msgstr "" - -#: ../cache/locales.php:292 -msgid "" -"Welcome on your news feed, here you will see all the posts published in the " -"groups you have subscribed." -msgstr "" - -#: ../cache/locales.php:293 -msgid "Refreshing all the streams" -msgstr "" - -#: ../cache/locales.php:294 -msgid "This post is public" -msgstr "" - -#: ../cache/locales.php:295 -msgid "Manage your members" -msgstr "" - -#: ../cache/locales.php:296 -msgid "Get the members" -msgstr "" - -#: ../cache/locales.php:297 -msgid "Affiliations saved" -msgstr "" - -#: ../cache/locales.php:298 -msgid "Manage your subscriptions" -msgstr "" - -#: ../cache/locales.php:299 -msgid "Manage the subscriptions" -msgstr "" - -#: ../cache/locales.php:300 -msgid "Get the subscriptions" -msgstr "" - -#: ../cache/locales.php:301 -msgid "Subscriptions saved" -msgstr "" - -#: ../cache/locales.php:302 -msgid "Pending Invitations" -msgstr "" - -#: ../cache/locales.php:303 -#, php-format -msgid "%s wants to talk with you" -msgstr "" - -#: ../cache/locales.php:304 -msgid "Manage" -msgstr "" - -#: ../cache/locales.php:305 ../cache/locales.php:338 -msgid "News Feed" -msgstr "" - -#: ../cache/locales.php:306 ../cache/locales.php:339 -msgid "Discover and register to the groups you are interested in" -msgstr "" - -#: ../cache/locales.php:307 ../cache/locales.php:340 ../cache/locales.php:482 -msgid "Preview" -msgstr "" - -#: ../cache/locales.php:308 ../cache/locales.php:341 ../cache/locales.php:478 -msgid "Help" -msgstr "" - -#: ../cache/locales.php:309 ../cache/locales.php:342 -msgid "More help" -msgstr "" - -#: ../cache/locales.php:310 ../cache/locales.php:343 -msgid "Markdown syntax manual" -msgstr "" - -#: ../cache/locales.php:311 ../cache/locales.php:344 ../cache/locales.php:681 -msgid "Title" -msgstr "" - -#: ../cache/locales.php:312 ../cache/locales.php:345 -msgid "Content" -msgstr "" - -#: ../cache/locales.php:313 ../cache/locales.php:346 -msgid "Link" -msgstr "" - -#: ../cache/locales.php:314 ../cache/locales.php:347 -msgid "Tags" -msgstr "" - -#: ../cache/locales.php:315 ../cache/locales.php:348 -msgid "Please enter a valid url" -msgstr "" - -#: ../cache/locales.php:316 ../cache/locales.php:349 -msgid "No content to preview" -msgstr "" - -#: ../cache/locales.php:317 ../cache/locales.php:350 ../cache/locales.php:687 -msgid "No content" -msgstr "" - -#: ../cache/locales.php:318 ../cache/locales.php:351 -msgid "Post published" -msgstr "" - -#: ../cache/locales.php:319 ../cache/locales.php:352 -msgid "Post deleted" -msgstr "" - -#: ../cache/locales.php:320 ../cache/locales.php:353 -msgid "This picture will be added to your gallery" -msgstr "" - -#: ../cache/locales.php:321 ../cache/locales.php:354 -msgid "What's Hot" -msgstr "" - -#: ../cache/locales.php:322 ../cache/locales.php:355 -msgid "New post" -msgstr "" - -#: ../cache/locales.php:323 ../cache/locales.php:357 -msgid "" -"You can also use services like Imgur or Flickr to host your picture and " -"paste the link here." -msgstr "" - -#: ../cache/locales.php:324 -#, php-format -msgid "This is a re-post from %s" -msgstr "" - -#: ../cache/locales.php:325 -#, php-format -msgid "See %s profile" -msgstr "" - -#: ../cache/locales.php:326 -msgid "Publish this post on your public feed?" -msgstr "" - -#: ../cache/locales.php:327 -msgid "Post published on your blog" -msgstr "" - -#: ../cache/locales.php:328 -msgid "Post removed from your blog" -msgstr "" - -#: ../cache/locales.php:329 ../cache/locales.php:701 -msgid "Delete this post" -msgstr "" - -#: ../cache/locales.php:330 -msgid "You are going to delete this post, please confirm your action" -msgstr "" - -#: ../cache/locales.php:331 -msgid "Comments disabled" -msgstr "" - -#: ../cache/locales.php:332 -msgid "Comment published" -msgstr "" - -#: ../cache/locales.php:333 -msgid "Disconnect" -msgstr "" - -#: ../cache/locales.php:334 -msgid "Your status here !" -msgstr "" - -#: ../cache/locales.php:335 -msgid "Status updated" -msgstr "" - -#: ../cache/locales.php:336 -msgid "Status" -msgstr "" - -#: ../cache/locales.php:337 -msgid "Presence" -msgstr "" - -#: ../cache/locales.php:356 -msgid "Publish" -msgstr "" - -#: ../cache/locales.php:358 -msgid "You cannot publish a post on this Group" -msgstr "" - -#: ../cache/locales.php:359 -msgid "" -"Some fields have been filled in. Do you still want to go back and loose " -"their content?" -msgstr "" - -#: ../cache/locales.php:360 -msgid "Shared" -msgstr "" - -#: ../cache/locales.php:362 -#, php-format -msgid "%s has been added to your public groups" -msgstr "" - -#: ../cache/locales.php:363 -#, php-format -msgid "%s has been removed from your public groups" -msgstr "" - -#: ../cache/locales.php:364 -msgid "Add a chatroom" -msgstr "" - -#: ../cache/locales.php:365 -msgid "You don't have any chatroom yet." -msgstr "" - -#: ../cache/locales.php:366 -msgid "Add one by clicking on the add button in the header." -msgstr "" - -#: ../cache/locales.php:367 -msgid "Chatrooms" -msgstr "" - -#: ../cache/locales.php:370 -msgid "My Favorite Room" -msgstr "" - -#: ../cache/locales.php:374 -msgid "Remove a chatroom" -msgstr "" - -#: ../cache/locales.php:375 -msgid "" -"You are going to remove the following chatroom. Please confirm your action." -msgstr "" - -#: ../cache/locales.php:378 -msgid "Users in the room" -msgstr "" - -#: ../cache/locales.php:379 -msgid "Please enter a correct nickname (6 to 40 characters)" -msgstr "" - -#: ../cache/locales.php:381 -msgid "Public chatroom" -msgstr "" - -#: ../cache/locales.php:382 -msgid "Please provide a room address" -msgstr "" - -#: ../cache/locales.php:383 -msgid "You are currently logued as an anonymous user." -msgstr "" - -#: ../cache/locales.php:384 -msgid "" -"You can join using your own account or create one on the login page by " -"loging out using the cross in the top-right corner." -msgstr "" - -#: ../cache/locales.php:385 -#, php-format -msgid "Login on %s" -msgstr "" - -#: ../cache/locales.php:386 -msgid "Your nickname" -msgstr "" - -#: ../cache/locales.php:387 -msgid "Ungrouped" -msgstr "" - -#: ../cache/locales.php:388 -msgid "Show disconnected contacts" -msgstr "" - -#: ../cache/locales.php:389 -msgid "Hide disconnected contacts" -msgstr "" - -#: ../cache/locales.php:390 -#, php-format -msgid "Show group %s" -msgstr "" - -#: ../cache/locales.php:391 -#, php-format -msgid "Hide group %s" -msgstr "" - -#: ../cache/locales.php:392 -msgid "Please enter a valid Jabber ID" -msgstr "" - -#: ../cache/locales.php:393 -msgid "" -"No contacts ? You can add one using the + button bellow or going to the " -"Explore page" -msgstr "" - -#: ../cache/locales.php:394 -msgid "Show/Hide" -msgstr "" - -#: ../cache/locales.php:395 -msgid "Enter the Jabber ID of your contact." -msgstr "" - -#: ../cache/locales.php:396 -msgid "Press enter to validate." -msgstr "" - -#: ../cache/locales.php:397 -msgid "JID" -msgstr "" - -#: ../cache/locales.php:398 -msgid "Results" -msgstr "" - -#: ../cache/locales.php:399 -msgid "Contact added" -msgstr "" - -#: ../cache/locales.php:401 -msgid "Contact deleted" -msgstr "" - -#: ../cache/locales.php:403 -msgid "This is not a valid url" -msgstr "" - -#: ../cache/locales.php:404 -msgid "Sharing the URL" -msgstr "" - -#: ../cache/locales.php:405 -msgid "Statistics" -msgstr "" - -#: ../cache/locales.php:406 -msgid "Since" -msgstr "" - -#: ../cache/locales.php:407 -msgid "Sessions" -msgstr "" - -#: ../cache/locales.php:409 -msgid "Monthly Subscriptions" -msgstr "" - -#: ../cache/locales.php:410 -msgid "Monthly Subscriptions Cumulated" -msgstr "" - -#: ../cache/locales.php:412 -msgid "" -"Movim is a decentralized social network, before creating a new account you " -"need to choose a server to register." -msgstr "" - -#: ../cache/locales.php:413 -msgid "Your server here ?" -msgstr "" - -#: ../cache/locales.php:414 -msgid "Contact us to add yours to the officially supported servers list" -msgstr "" - -#: ../cache/locales.php:416 -msgid "No public feed for this contact" -msgstr "" - -#: ../cache/locales.php:417 -msgid "No contact specified" -msgstr "" - -#: ../cache/locales.php:418 ../cache/locales.php:473 -msgid "Profile" -msgstr "" - -#: ../cache/locales.php:419 -msgid "Profile Updated" -msgstr "" - -#: ../cache/locales.php:420 -msgid "Profile Not Updated" -msgstr "" - -#: ../cache/locales.php:421 -msgid "Your profile is now public" -msgstr "" - -#: ../cache/locales.php:422 -msgid "Your profile is now restricted" -msgstr "" - -#: ../cache/locales.php:436 -msgid "Twitter" -msgstr "" - -#: ../cache/locales.php:437 -msgid "Skype" -msgstr "" - -#: ../cache/locales.php:438 -msgid "Yahoo" -msgstr "" - -#: ../cache/locales.php:439 -msgid "Privacy Level" -msgstr "" - -#: ../cache/locales.php:440 -msgid "Is this profile public ?" -msgstr "" - -#: ../cache/locales.php:441 -msgid "" -"Please pay attention ! By making your profile public, all the information " -"listed above will be available for all the Movim users and on the whole " -"Internet." -msgstr "" - -#: ../cache/locales.php:442 -msgid "Call" -msgstr "" - -#: ../cache/locales.php:443 -msgid "Hang up" -msgstr "" - -#: ../cache/locales.php:444 -msgid "Connection" -msgstr "" - -#: ../cache/locales.php:445 ../cache/locales.php:451 -msgid "Hung up" -msgstr "" - -#: ../cache/locales.php:446 ../cache/locales.php:452 -msgid "Your contact is busy" -msgstr "" - -#: ../cache/locales.php:447 ../cache/locales.php:453 -msgid "Declined" -msgstr "" - -#: ../cache/locales.php:448 ../cache/locales.php:454 -msgid "Remote application incompatible" -msgstr "" - -#: ../cache/locales.php:450 ../cache/locales.php:456 -msgid "Is calling you" -msgstr "" - -#: ../cache/locales.php:457 -msgid "You don't have javascript enabled. Good luck with that." -msgstr "" - -#: ../cache/locales.php:458 -msgid "" -"Movim is a kickass distributed social networking platform that protect your " -"privacy an comes with a set of awesome features." -msgstr "" - -#: ../cache/locales.php:459 -msgid "Administration" -msgstr "" - -#: ../cache/locales.php:460 -msgid "Home" -msgstr "Inicio" - -#: ../cache/locales.php:461 -msgid "Discover" -msgstr "" - -#: ../cache/locales.php:462 -msgid "Explore" -msgstr "" - -#: ../cache/locales.php:463 -msgid "Account Creation" -msgstr "Creación dunha Conta" - -#: ../cache/locales.php:464 +#: [hello]news [page]news msgid "News" msgstr "" -#: ../cache/locales.php:465 -msgid "Avatar" +#: [hello]news_page +msgid "Read all theses articles on the News page" msgstr "" -#: ../cache/locales.php:467 -msgid "Chats" +#: [hello]blog_title +msgid "Visit your public blog" msgstr "" -#: ../cache/locales.php:470 -msgid "Server" +#: [hello]blog_text +msgid "See your public posts and share them with all your contacts" msgstr "" -#: ../cache/locales.php:471 -msgid "Public Groups" +#: [hello]share_title +msgid "Universal share button" msgstr "" -#: ../cache/locales.php:472 -msgid "Viewer" +#: [hello]share_text +msgid "Bookmark or drag and drop the following button in your toolbar and use it on all the pages you want to share on Movim" msgstr "" -#: ../cache/locales.php:474 -msgid "Media" +#: [hello]share_button +msgid "Share on Movim" msgstr "" -#: ../cache/locales.php:475 -msgid "Blog" +#: [help]faq +msgid "Frequently Asked Questions" msgstr "" -#: ../cache/locales.php:476 -msgid "About" +#: [banner]title +msgid "What do the little banners refer to ?" msgstr "" -#: ../cache/locales.php:477 -msgid "Login" +#: [banner]info1 +msgid "Thanks to these five little banners, you can quickly identitfy the level of confdentiality applied to the information you provide." msgstr "" -#: ../cache/locales.php:479 -msgid "Feed" +#: [banner]white +msgid "White, only you can see the information" msgstr "" -#: ../cache/locales.php:481 -msgid "Gallery" +#: [banner]green +msgid "Green, you have chosen some contacts who can see your information" msgstr "" -#: ../cache/locales.php:483 -msgid "Visio-conference" +#: [banner]orange +msgid "Orange, all your contact list can see your information" msgstr "" -#: ../cache/locales.php:484 -msgid "Pods" +#: [banner]red +msgid "Red, everybody in the XMPP network can see your information" msgstr "" -#: ../cache/locales.php:485 -msgid "Share" +#: [banner]black +msgid "Black, the whole Internet can see your information" msgstr "" -#: ../cache/locales.php:486 -msgid "Room" +#: [wiki]question +msgid "Looking for some documentation ?" msgstr "" -#: ../cache/locales.php:487 -#, php-format -msgid "Error: %s" +#: [wiki]button +msgid "Read the Wiki" msgstr "" -#: ../cache/locales.php:488 -#, php-format -msgid "Cannot load file '%s'" -msgstr "Non pode cargarse o arquivo '%s'" - -#: ../cache/locales.php:489 -#, php-format -msgid "Route error, please set all the parameters for the page %s" -msgstr "" -"Erro de ruta, por favor, coloque todos os parámetros para a páxina %s" - -#: ../cache/locales.php:490 -#, php-format -msgid "Requested widget '%s' doesn't exist." +#: [ml]question +msgid "Talk with us by email ?" msgstr "" -#: ../cache/locales.php:491 -#, php-format -msgid "Requested event '%s' not registered." +#: [ml]button +msgid "Join the Mailing List" msgstr "" -#: ../cache/locales.php:492 -msgid "Whoops!" +#: [chatroom]question +msgid "Chat with the team ?" msgstr "" -#: ../cache/locales.php:493 -msgid "It seem that you don't have any pictures here?" +#: [chatroom]button +msgid "Join the Chatroom" msgstr "" -#: ../cache/locales.php:494 -msgid "You can try to upload a couple by going to the Media page" +#: [init]location +msgid "Location node created" msgstr "" -#: ../cache/locales.php:495 -#, php-format -msgid "%s - About" +#: [init]bookmark +msgid "Bookmark node created" msgstr "" -#: ../cache/locales.php:496 -#, php-format -msgid "%s - Account" +#: [init]vcard4 +msgid "Profile node created" msgstr "" -#: ../cache/locales.php:497 -#, php-format -msgid "%s - Administration Panel" +#: [init]avatar +msgid "Avatar node created" msgstr "" -#: ../cache/locales.php:498 -#, php-format -msgid "%s - Blog" +#: [init]subscriptions +msgid "Subscriptions node created" msgstr "" -#: ../cache/locales.php:499 -#, php-format -msgid "%s - Configuration" -msgstr "Configuración de %s" - -#: ../cache/locales.php:500 -#, php-format -msgid "%s - Discover" +#: [init]microblog +msgid "Microblog node created" msgstr "" -#: ../cache/locales.php:501 -#, php-format -msgid "%s - Explore" +#: [location]title +msgid "Location" msgstr "" -#: ../cache/locales.php:502 -#, php-format -msgid "%s - Help Page" +#: [location]wrong_postition +msgid "Wrong position" msgstr "" -#: ../cache/locales.php:503 -#, php-format -msgid "%s - Login to Movim" -msgstr "%s - Iniciar a MOVIM" - -#: ../cache/locales.php:504 -#, php-format -msgid "%s - Welcome to Movim" -msgstr "%s - Benvindo ao MOVIM" - -#: ../cache/locales.php:505 -#, php-format -msgid "%s - Media" +#: [location]updated +msgid "Location updated" msgstr "" -#: ../cache/locales.php:506 -#, php-format -msgid "%s - News" +#: [location]update +msgid "Update my position" msgstr "" -#: ../cache/locales.php:507 -#, php-format -msgid "%s - Group Configuration" +#: [login_anonymous]bad_username +msgid "Bad nickname (between 4 and 40 characters)" msgstr "" -#: ../cache/locales.php:508 -#, php-format -msgid "%s - Group" +#: [error]username +msgid "Wrong username" msgstr "" -#: ../cache/locales.php:509 -#, php-format -msgid "%s - 404" +#: [error]jid +msgid "Invalid JID" msgstr "" -#: ../cache/locales.php:510 -#, php-format -msgid "%s - Profile" +#: [error]empty_challenge +msgid "Empty Challenge from the server" msgstr "" -#: ../cache/locales.php:511 -#, php-format -msgid "%s - Server" +#: [error]dns +msgid "XMPP Domain error, your account is not a correct Jabber ID" msgstr "" -#: ../cache/locales.php:512 -msgid "Validate" +#: [error]data_missings +msgid "Some data are missing !" msgstr "" -#: ../cache/locales.php:513 -msgid "Refresh" +#: [error]wrong_password +msgid "Wrong password" +msgstr "Contrasinal incorrecta" + +#: [error]internal +msgid "Internal server error" msgstr "" -#: ../cache/locales.php:514 -msgid "Add" +#: [error]session +msgid "Session error" msgstr "" -#: ../cache/locales.php:515 -msgid "Delete" +#: [error]account_created +msgid "Account successfully created" msgstr "" -#: ../cache/locales.php:516 -msgid "Remove" +#: [error]xmpp_unauthorized +msgctxt "[error]xmpp_unauthorized" +msgid "Your XMPP server is unauthorized" msgstr "" -#: ../cache/locales.php:517 -msgid "Cancel" +#: [error]mec_error +msgid "The server takes too much time to respond" msgstr "" -#: ../cache/locales.php:518 -msgid "Close" +#: [error]too_old +msgid "Your web browser is too old to use with Movim." msgstr "" -#: ../cache/locales.php:519 -msgid "Update" +#: [error]websocket +msgid "Movim cannot talk with the server, please try again later (Websocket connection error)" msgstr "" -#: ../cache/locales.php:520 -msgid "Updating" +#: [error]impossible +msgid "Impossible login" msgstr "" -#: ../cache/locales.php:521 +#: [error]title +msgid "Oops!" +msgstr "" + +#: [error]default [visio]unknown_error +msgid "Unknown error" +msgstr "" + +#: [error]login_format +msgid "Invalid username format" +msgstr "" + +#: [error]password_format +msgid "Invalid password format" +msgstr "" + +#: [error]unauthorized +msgctxt "[error]unauthorized" +msgid "Your XMPP server is unauthorized" +msgstr "" + +#: [error]conflict +msgid "A Movim session is already open on an other device" +msgstr "" + +#: [error]wrong_account +msgid "Movim failed to authenticate. You entered wrong data" +msgstr "" + +#: [error]mechanism +msgid "Authentication mechanism not supported by Movim" +msgstr "" + +#: [error]fail_auth +msgid "The XMPP authentification failed" +msgstr "" + +#: [account]title [accounts]accounts_title +msgid "Accounts" +msgstr "" + +#: [form]username +msgid "My address" +msgstr "Meu Enderezo" + +#: [form]create_one +msgid "Create one !" +msgstr "" + +#: [form]another_account +msgid "Another account" +msgstr "" + +#: [form]no_account +msgid "No account yet ?" +msgstr "" + +#: [form]whitelist.info +msgid "You can login with accounts from theses servers" +msgstr "" + +#: [form]connected +msgid "Connected" +msgstr "" + +#: [form]population +msgid "Population" +msgstr "" + +#: [menu]empty_title +msgid "No news yet..." +msgstr "" + +#: [menu]empty +msgid "Welcome on your news feed, here you will see all the posts published by your contacts and in the groups you have subscribed." +msgstr "" + +#: [menu]refresh +msgid "Refreshing all the streams" +msgstr "" + +#: [menu]public +msgid "This post is public" +msgstr "" + +#: [affiliations]title +msgid "Manage your members" +msgstr "" + +#: [affiliations]get +msgid "Get the members" +msgstr "" + +#: [affiliations]saved +msgid "Affiliations saved" +msgstr "" + +#: [subscriptions]title +msgid "Manage your subscriptions" +msgstr "" + +#: [subscriptions]info +msgid "Manage the subscriptions" +msgstr "" + +#: [subscriptions]get +msgid "Get the subscriptions" +msgstr "" + +#: [subscriptions]saved +msgid "Subscriptions saved" +msgstr "" + +#: [notifs]title +msgid "Pending Invitations" +msgstr "" + +#: [notifs]wants_to_talk +msgid "%s wants to talk with you" +msgstr "" + +#: [notifs]manage +msgid "Manage" +msgstr "" + +#: [post]news_feed +msgid "News Feed" +msgstr "" + +#: [post]placeholder +msgid "Discover and register to the groups you are interested in" +msgstr "" + +#: [post]preview [page]preview +msgid "Preview" +msgstr "" + +#: [post]help [page]help +msgid "Help" +msgstr "" + +#: [post]help_more +msgid "More help" +msgstr "" + +#: [post]help_manual +msgid "Markdown syntax manual" +msgstr "" + +#: [post]title +msgid "Title" +msgstr "" + +#: [post]content +msgid "Content" +msgstr "" + +#: [post]link +msgid "Link" +msgstr "" + +#: [post]tags +msgid "Tags" +msgstr "" + +#: [post]valid_url [publish]valid_url +msgid "Please enter a valid url" +msgstr "" + +#: [post]no_content_preview [publish]no_content_preview +msgid "No content to preview" +msgstr "" + +#: [post]no_content [publish]no_content [post]empty +msgid "No content" +msgstr "" + +#: [post]published +msgid "Post published" +msgstr "" + +#: [post]deleted +msgid "Post deleted" +msgstr "" + +#: [post]gallery +msgid "This picture will be added to your gallery" +msgstr "" + +#: [post]hot +msgid "What's Hot" +msgstr "" + +#: [post]hot_text +msgid "Posts recently published in Groups that you are not subscribed (yet)" +msgstr "" + +#: [post]new [publish]new +msgid "New post" +msgstr "" + +#: [post]embed_tip +msgid "You can also use services like Imgur or Flickr to host your picture and paste the link here." +msgstr "" + +#: [post]repost +msgid "This is a re-post from %s" +msgstr "" + +#: [post]repost_profile +msgid "See %s profile" +msgstr "" + +#: [post]public +msgid "Publish this post publicly?" +msgstr "" + +#: [post]blog_add +msgid "Post published on your blog" +msgstr "" + +#: [post]blog_remove +msgid "Post removed from your blog" +msgstr "" + +#: [post]delete_title [post]delete +msgid "Delete this post" +msgstr "" + +#: [post]delete_text +msgid "You are going to delete this post, please confirm your action" +msgstr "" + +#: [post]comments_disabled +msgid "Comments disabled" +msgstr "" + +#: [post]comment_published +msgid "Comment published" +msgstr "" + +#: [status]disconnect +msgid "Disconnect" +msgstr "" + +#: [status]here +msgid "Your status here !" +msgstr "" + +#: [status]updated +msgid "Status updated" +msgstr "" + +#: [status]status +msgid "Status" +msgstr "" + +#: [status]presence +msgid "Presence" +msgstr "" + +#: [status]online +msgid "Online with Movim" +msgstr "" + +#: [publish]title +msgid "Publish" +msgstr "" + +#: [publish]attach +msgid "Add a file or a picture to your post" +msgstr "" + +#: [publish]no_publication +msgid "You cannot publish a post on this Group" +msgstr "" + +#: [publish]form_filled +msgid "Some fields have been filled in. Do you still want to go back and loose their content?" +msgstr "" + +#: [public_groups]shared +msgid "Shared" +msgstr "" + +#: [public_groups]added +msgid "%s has been added to your public groups" +msgstr "" + +#: [rooms]add +msgid "Add a chatroom" +msgstr "" + +#: [rooms]empty_text1 +msgid "You don't have any chatroom yet." +msgstr "" + +#: [rooms]empty_text2 +msgid "Add one by clicking on the add button in the header." +msgstr "" + +#: [chatrooms]title +msgid "Chatrooms" +msgstr "" + +#: [chatrooms]name_placeholder +msgid "My Favorite Room" +msgstr "" + +#: [chatrooms]users +msgid "Users in the room" +msgstr "" + +#: [chatrooms]bad_nickname +msgid "Please enter a correct nickname (2 to 40 characters)" +msgstr "" + +#: [room]anonymous_title +msgid "Public chatroom" +msgstr "" + +#: [room]no_room +msgid "Please provide a room address" +msgstr "" + +#: [room]anonymous_text1 +msgid "You are currently logued as an anonymous user." +msgstr "" + +#: [room]anonymous_text2 +msgid "You can join using your own account or create one on the login page by loging out using the cross in the top-right corner." +msgstr "" + +#: [room]anonymous_login +msgid "Login on %s" +msgstr "" + +#: [room]nick +msgid "Your nickname" +msgstr "" + +#: [roster]ungrouped +msgid "Ungrouped" +msgstr "" + +#: [roster]show_disconnected +msgid "Show disconnected contacts" +msgstr "" + +#: [roster]hide_disconnected +msgid "Hide disconnected contacts" +msgstr "" + +#: [roster]show_group +msgid "Show group %s" +msgstr "" + +#: [roster]hide_group +msgid "Hide group %s" +msgstr "" + +#: [roster]jid_error +msgid "Please enter a valid Jabber ID" +msgstr "" + +#: [roster]no_contacts_title +msgid "No contacts ?" +msgstr "" + +#: [roster]no_contacts_text +msgid "You can add one using the + button bellow" +msgstr "" + +#: [roster]show_hide +msgid "Show/Hide" +msgstr "" + +#: [roster]add_contact_info1 +msgid "Enter the Jabber ID of your contact." +msgstr "" + +#: [roster]add_contact_info2 +msgid "Press enter to validate." +msgstr "" + +#: [roster]jid +msgid "JID" +msgstr "" + +#: [roster]results +msgid "Results" +msgstr "" + +#: [roster]added +msgid "Contact added" +msgstr "" + +#: [roster]deleted +msgid "Contact deleted" +msgstr "" + +#: [roster]search +msgid "Search" +msgstr "" + +#: [share]error +msgid "This is not a valid url" +msgstr "" + +#: [share]success +msgid "Sharing the URL" +msgstr "" + +#: [statistics]title +msgid "Statistics" +msgstr "" + +#: [statistics]since +msgid "Since" +msgstr "" + +#: [statistics]sessions +msgid "Sessions" +msgstr "" + +#: [statistics]monthly_sub +msgid "Monthly Subscriptions" +msgstr "" + +#: [statistics]monthly_sub_cum +msgid "Monthly Subscriptions Cumulated" +msgstr "" + +#: [subscribe]info +msgid "Movim is a decentralized social network, before creating a new account you need to choose a server to register." +msgstr "" + +#: [subscribe]server_question +msgid "Your server here ?" +msgstr "" + +#: [subscribe]server_contact +msgid "Contact us to add yours to the officially supported servers list" +msgstr "" + +#: [feed]nope +msgid "No public feed for this contact" +msgstr "" + +#: [feed]nope_contact +msgid "No contact specified" +msgstr "" + +#: [upload]title +msgid "Upload a file" +msgstr "" + +#: [upload]choose +msgid "Choose a file to upload" +msgstr "" + +#: [vcard]title [page]profile +msgid "Profile" +msgstr "" + +#: [vcard]updated +msgid "Profile Updated" +msgstr "" + +#: [vcard]not_updated +msgid "Profile Not Updated" +msgstr "" + +#: [vcard]public +msgid "Your profile is now public" +msgstr "" + +#: [vcard]restricted +msgid "Your profile is now restricted" +msgstr "" + +#: [general]nickname +msgctxt "[general]nickname" +msgid "Nickname" +msgstr "" + +#: [accounts]twitter +msgid "Twitter" +msgstr "" + +#: [accounts]skype +msgid "Skype" +msgstr "" + +#: [accounts]yahoo +msgid "Yahoo" +msgstr "" + +#: [accounts]accounts_nickname +msgctxt "[accounts]accounts_nickname" +msgid "Nickname" +msgstr "" + +#: [accounts]accounts_yahoo +msgid "Yahoo Account" +msgstr "" + +#: [privacy]privacy_title +msgid "Privacy Level" +msgstr "" + +#: [privacy]privacy_question +msgid "Is this profile public ?" +msgstr "" + +#: [privacy]privacy_info +msgid "Please pay attention ! By making your profile public, all the information listed above will be available for all the Movim users and on the whole Internet." +msgstr "" + +#: [save]submit [button]submit msgid "Submit" msgstr "Enviar" -#: ../cache/locales.php:522 -msgid "Submitting" -msgstr "" - -#: ../cache/locales.php:523 +#: [save]reset [button]reset msgid "Reset" msgstr "Restablecer" -#: ../cache/locales.php:524 +#: [visio]hung_up +msgid "Hung up" +msgstr "" + +#: [visio]busy +msgid "Your contact is busy" +msgstr "" + +#: [visio]declined +msgid "Declined" +msgstr "" + +#: [visio]calling +msgid "Is calling you" +msgstr "" + +#: [visio]call +msgid "Call" +msgstr "" + +#: [visio]hang_up +msgid "Hang up" +msgstr "" + +#: [visio]connection +msgid "Connection" +msgstr "" + +#: [global]no_js +msgid "You don't have javascript enabled. Good luck with that." +msgstr "" + +#: [global]description +msgid "Movim is a kickass distributed social networking platform that protect your privacy an comes with a set of awesome features." +msgstr "" + +#: [page]administration +msgid "Administration" +msgstr "" + +#: [page]home +msgid "Home" +msgstr "Inicio" + +#: [page]discover +msgid "Discover" +msgstr "" + +#: [page]explore +msgid "Explore" +msgstr "" + +#: [page]account_creation +msgid "Account Creation" +msgstr "Creación dunha Conta" + +#: [page]avatar +msgid "Avatar" +msgstr "" + +#: [page]chats +msgid "Chats" +msgstr "" + +#: [page]server +msgid "Server" +msgstr "" + +#: [page]public_groups +msgid "Public Groups" +msgstr "" + +#: [page]viewer +msgid "Viewer" +msgstr "" + +#: [page]media +msgid "Media" +msgstr "" + +#: [page]blog +msgid "Blog" +msgstr "" + +#: [page]about +msgid "About" +msgstr "" + +#: [page]login +msgid "Login" +msgstr "" + +#: [page]feed +msgid "Feed" +msgstr "" + +#: [page]gallery +msgid "Gallery" +msgstr "" + +#: [page]visio +msgid "Visio-conference" +msgstr "" + +#: [page]pods +msgid "Pods" +msgstr "" + +#: [page]share +msgid "Share" +msgstr "" + +#: [page]room +msgid "Room" +msgstr "" + +#: [error]error +msgid "Error: %s" +msgstr "" + +#: [error]cannot_load_file +msgid "Cannot load file '%s'" +msgstr "Non pode cargarse o arquivo '%s'" + +#: [error]route +msgid "Route error, please set all the parameters for the page %s" +msgstr "Erro de ruta, por favor, coloque todos os parámetros para a páxina %s" + +#: [error]widget_load_error +msgid "Requested widget '%s' doesn't exist." +msgstr "" + +#: [error]widget_call_error +msgid "Requested event '%s' not registered." +msgstr "" + +#: [error]whoops +msgid "Whoops!" +msgstr "" + +#: [error]media_not_found +msgid "It seem that you don't have any pictures here?" +msgstr "" + +#: [error]media_ask_upload +msgid "You can try to upload a couple by going to the Media page" +msgstr "" + +#: [title]about +msgid "%s - About" +msgstr "" + +#: [title]account +msgid "%s - Account" +msgstr "" + +#: [title]administration +msgid "%s - Administration Panel" +msgstr "" + +#: [title]blog +msgid "%s - Blog" +msgstr "" + +#: [title]configuration +msgid "%s - Configuration" +msgstr "Configuración de %s" + +#: [title]discover +msgid "%s - Discover" +msgstr "" + +#: [title]explore +msgid "%s - Explore" +msgstr "" + +#: [title]help +msgid "%s - Help Page" +msgstr "" + +#: [title]login +msgid "%s - Login to Movim" +msgstr "%s - Iniciar a MOVIM" + +#: [title]main +msgid "%s - Welcome to Movim" +msgstr "%s - Benvindo ao MOVIM" + +#: [title]media +msgid "%s - Media" +msgstr "" + +#: [title]news +msgid "%s - News" +msgstr "" + +#: [title]node_configuration +msgid "%s - Group Configuration" +msgstr "" + +#: [title]node +msgid "%s - Group" +msgstr "" + +#: [title]not_found +msgid "%s - 404" +msgstr "" + +#: [title]profile +msgid "%s - Profile" +msgstr "" + +#: [title]server +msgid "%s - Server" +msgstr "" + +#: [button]validate +msgid "Validate" +msgstr "" + +#: [button]refresh +msgid "Refresh" +msgstr "" + +#: [button]add +msgid "Add" +msgstr "" + +#: [button]delete +msgid "Delete" +msgstr "" + +#: [button]cancel +msgid "Cancel" +msgstr "" + +#: [button]close +msgid "Close" +msgstr "" + +#: [button]update +msgid "Update" +msgstr "" + +#: [button]updating +msgid "Updating" +msgstr "" + +#: [button]submitting +msgid "Submitting" +msgstr "" + +#: [button]register msgid "Register" msgstr "" -#: ../cache/locales.php:525 +#: [button]unregister msgid "Unregister" msgstr "" -#: ../cache/locales.php:526 +#: [button]save msgid "Save" msgstr "" -#: ../cache/locales.php:527 +#: [button]clear msgid "Clear" msgstr "" -#: ../cache/locales.php:528 +#: [button]upload msgid "Upload" msgstr "" -#: ../cache/locales.php:529 +#: [button]come_in msgid "Come in!" msgstr "Entra!" -#: ../cache/locales.php:530 +#: [button]connecting msgid "Connecting" msgstr "" -#: ../cache/locales.php:531 +#: [button]bool_yes msgid "Yes" msgstr "" -#: ../cache/locales.php:532 +#: [button]bool_no msgid "No" msgstr "" -#: ../cache/locales.php:534 +#: [button]return msgid "Return" msgstr "" -#: ../cache/locales.php:535 +#: [button]accept msgid "Accept" msgstr "" -#: ../cache/locales.php:536 +#: [button]refuse msgid "Refuse" msgstr "" -#: ../cache/locales.php:537 +#: [button]next msgid "Next" msgstr "" -#: ../cache/locales.php:538 +#: [button]previous msgid "Previous" msgstr "" -#: ../cache/locales.php:539 -#, php-format +#: [step]step msgid "Step %s" msgstr "" -#: ../cache/locales.php:542 +#: [day]title msgid "Day" msgstr "" -#: ../cache/locales.php:543 +#: [day]monday msgid "Monday" msgstr "Luns" -#: ../cache/locales.php:544 +#: [day]tuesday msgid "Tuesday" msgstr "Martes" -#: ../cache/locales.php:545 +#: [day]wednesday msgid "Wednesday" msgstr "Mércores" -#: ../cache/locales.php:546 +#: [day]thursday msgid "Thursday" msgstr "Xoves" -#: ../cache/locales.php:547 +#: [day]friday msgid "Friday" msgstr "Venres" -#: ../cache/locales.php:548 +#: [day]saturday msgid "Saturday" msgstr "Sábado" -#: ../cache/locales.php:549 +#: [day]sunday msgid "Sunday" msgstr "" -#: ../cache/locales.php:550 ../cache/locales.php:559 +#: [gender]nil +msgctxt "[gender]nil" msgid "None" msgstr "" -#: ../cache/locales.php:551 +#: [gender]male msgid "Male" msgstr "" -#: ../cache/locales.php:552 +#: [gender]female msgid "Female" msgstr "" -#: ../cache/locales.php:553 +#: [gender]other msgid "Other" msgstr "" -#: ../cache/locales.php:554 +#: [client]bot msgid "Bot" msgstr "" -#: ../cache/locales.php:555 +#: [client]desktop msgid "Desktop" msgstr "" -#: ../cache/locales.php:556 +#: [client]phone msgid "Phone" msgstr "" -#: ../cache/locales.php:557 +#: [client]web msgid "Web" msgstr "" -#: ../cache/locales.php:558 +#: [client]registered msgid "Registered" msgstr "" -#: ../cache/locales.php:560 +#: [marital]nil +msgctxt "[marital]nil" +msgid "None" +msgstr "" + +#: [marital]single msgid "Single" msgstr "" -#: ../cache/locales.php:561 +#: [marital]relationship msgid "In a relationship" msgstr "" -#: ../cache/locales.php:562 +#: [marital]married msgid "Married" msgstr "" -#: ../cache/locales.php:563 +#: [marital]divorced msgid "Divorced" msgstr "" -#: ../cache/locales.php:564 +#: [marital]widowed msgid "Widowed" msgstr "" -#: ../cache/locales.php:565 +#: [marital]cohabiting msgid "Cohabiting" msgstr "" -#: ../cache/locales.php:566 +#: [marital]union msgid "Civil Union" msgstr "" -#: ../cache/locales.php:567 +#: [flag]white msgid "Not shared" msgstr "" -#: ../cache/locales.php:568 +#: [flag]green msgid "Shared with one contact" msgstr "" -#: ../cache/locales.php:569 +#: [flag]orange msgid "Shared with all contacts" msgstr "" -#: ../cache/locales.php:570 +#: [flag]red msgid "Shared with the XMPP network" msgstr "" -#: ../cache/locales.php:571 +#: [flag]black msgid "Shared with the whole Internet" msgstr "" -#: ../cache/locales.php:572 +#: [presence]online msgid "Online" msgstr "" -#: ../cache/locales.php:573 +#: [presence]away msgid "Away" msgstr "Fóra" -#: ../cache/locales.php:574 +#: [presence]dnd msgid "Do Not Disturb" msgstr "" -#: ../cache/locales.php:575 +#: [presence]xa msgid "Extended Away" msgstr "" -#: ../cache/locales.php:576 +#: [presence]offline msgid "Offline" msgstr "" -#: ../cache/locales.php:577 +#: [presence]error msgid "Error" msgstr "" -#: ../cache/locales.php:578 +#: [mood]afraid msgid "afraid" msgstr "" -#: ../cache/locales.php:579 +#: [mood]amazed msgid "amazed" msgstr "" -#: ../cache/locales.php:580 +#: [mood]amorous msgid "amorous" msgstr "" -#: ../cache/locales.php:581 +#: [mood]angry msgid "angry" msgstr "" -#: ../cache/locales.php:582 +#: [mood]annoyed msgid "annoyed" msgstr "" -#: ../cache/locales.php:583 +#: [mood]anxious msgid "anxious" msgstr "" -#: ../cache/locales.php:584 +#: [mood]aroused msgid "aroused" msgstr "" -#: ../cache/locales.php:585 +#: [mood]ashamed msgid "ashamed" msgstr "" -#: ../cache/locales.php:586 +#: [mood]bored msgid "bored" msgstr "" -#: ../cache/locales.php:587 +#: [mood]brave msgid "brave" msgstr "" -#: ../cache/locales.php:588 +#: [mood]calm msgid "calm" msgstr "" -#: ../cache/locales.php:589 +#: [mood]cautious msgid "cautious" msgstr "" -#: ../cache/locales.php:590 +#: [mood]cold msgid "cold" msgstr "" -#: ../cache/locales.php:591 +#: [mood]confident msgid "confident" msgstr "" -#: ../cache/locales.php:592 +#: [mood]confused msgid "confused" msgstr "" -#: ../cache/locales.php:593 +#: [mood]contemplative msgid "contemplative" msgstr "" -#: ../cache/locales.php:594 +#: [mood]contented msgid "contented" msgstr "" -#: ../cache/locales.php:595 +#: [mood]cranky msgid "cranky" msgstr "" -#: ../cache/locales.php:596 +#: [mood]crazy msgid "crazy" msgstr "" -#: ../cache/locales.php:597 +#: [mood]creative msgid "creative" msgstr "" -#: ../cache/locales.php:598 +#: [mood]curious msgid "curious" msgstr "" -#: ../cache/locales.php:599 +#: [mood]dejected msgid "dejected" msgstr "" -#: ../cache/locales.php:600 +#: [mood]depressed msgid "depressed" msgstr "" -#: ../cache/locales.php:601 +#: [mood]disappointed msgid "disappointed" msgstr "" -#: ../cache/locales.php:602 +#: [mood]disgusted msgid "disgusted" msgstr "" -#: ../cache/locales.php:603 +#: [mood]dismayed msgid "dismayed" msgstr "" -#: ../cache/locales.php:604 +#: [mood]distracted msgid "distracted" msgstr "" -#: ../cache/locales.php:605 +#: [mood]embarrassed msgid "embarrassed" msgstr "" -#: ../cache/locales.php:606 +#: [mood]envious msgid "envious" msgstr "" -#: ../cache/locales.php:607 +#: [mood]excited msgid "excited" msgstr "" -#: ../cache/locales.php:608 +#: [mood]flirtatious msgid "flirtatious" msgstr "" -#: ../cache/locales.php:609 +#: [mood]frustated msgid "frustated" msgstr "" -#: ../cache/locales.php:610 +#: [mood]grateful msgid "grateful" msgstr "" -#: ../cache/locales.php:611 +#: [mood]grieving msgid "grieving" msgstr "" -#: ../cache/locales.php:612 +#: [mood]grumpy msgid "grumpy" msgstr "" -#: ../cache/locales.php:613 +#: [mood]guilty msgid "guilty" msgstr "" -#: ../cache/locales.php:614 +#: [mood]happy msgid "happy" msgstr "" -#: ../cache/locales.php:615 +#: [mood]hopeful msgid "hopeful" msgstr "" -#: ../cache/locales.php:616 +#: [mood]hot msgid "hot" msgstr "" -#: ../cache/locales.php:617 +#: [mood]humbled msgid "humbled" msgstr "" -#: ../cache/locales.php:618 +#: [mood]humiliated msgid "humiliated" msgstr "" -#: ../cache/locales.php:619 +#: [mood]hungry msgid "hungry" msgstr "" -#: ../cache/locales.php:620 +#: [mood]hurt msgid "hurt" msgstr "" -#: ../cache/locales.php:621 +#: [mood]impressed msgid "impressed" msgstr "" -#: ../cache/locales.php:622 +#: [mood]in_awe msgid "in awe" msgstr "" -#: ../cache/locales.php:623 +#: [mood]in_love msgid "in love" msgstr "" -#: ../cache/locales.php:624 +#: [mood]indignant msgid "indignant" msgstr "" -#: ../cache/locales.php:625 +#: [mood]interested msgid "interested" msgstr "" -#: ../cache/locales.php:626 +#: [mood]intoxicated msgid "intoxicated" msgstr "" -#: ../cache/locales.php:627 +#: [mood]invincible msgid "invincible" msgstr "" -#: ../cache/locales.php:628 +#: [mood]jealous msgid "jealous" msgstr "" -#: ../cache/locales.php:629 +#: [mood]lonely msgid "lonely" msgstr "" -#: ../cache/locales.php:630 +#: [mood]lost msgid "lost" msgstr "" -#: ../cache/locales.php:631 +#: [mood]lucky msgid "lucky" msgstr "" -#: ../cache/locales.php:632 +#: [mood]mean msgid "mean" msgstr "" -#: ../cache/locales.php:633 +#: [mood]moody msgid "moody" msgstr "" -#: ../cache/locales.php:634 +#: [mood]nervous msgid "nervous" msgstr "" -#: ../cache/locales.php:635 +#: [mood]neutral msgid "neutral" msgstr "" -#: ../cache/locales.php:636 +#: [mood]offended msgid "offended" msgstr "" -#: ../cache/locales.php:637 +#: [mood]outraged msgid "outraged" msgstr "" -#: ../cache/locales.php:638 +#: [mood]playful msgid "playful" msgstr "" -#: ../cache/locales.php:639 +#: [mood]proud msgid "proud" msgstr "" -#: ../cache/locales.php:640 +#: [mood]relaxed msgid "relaxed" msgstr "" -#: ../cache/locales.php:641 +#: [mood]relieved msgid "relieved" msgstr "" -#: ../cache/locales.php:642 -msgid "remorseful" -msgstr "" - -#: ../cache/locales.php:643 +#: [mood]restless msgid "restless" msgstr "" -#: ../cache/locales.php:644 +#: [mood]sad msgid "sad" msgstr "" -#: ../cache/locales.php:645 +#: [mood]sarcastic msgid "sarcastic" msgstr "" -#: ../cache/locales.php:646 +#: [mood]satisfied msgid "satisfied" msgstr "" -#: ../cache/locales.php:647 +#: [mood]serious msgid "serious" msgstr "" -#: ../cache/locales.php:648 +#: [mood]shocked msgid "shocked" msgstr "" -#: ../cache/locales.php:649 +#: [mood]shy msgid "shy" msgstr "" -#: ../cache/locales.php:650 +#: [mood]sick msgid "sick" msgstr "" -#: ../cache/locales.php:651 +#: [mood]sleepy msgid "sleepy" msgstr "" -#: ../cache/locales.php:652 +#: [mood]spontaneous msgid "spontaneous" msgstr "" -#: ../cache/locales.php:653 +#: [mood]stressed msgid "stressed" msgstr "" -#: ../cache/locales.php:654 +#: [mood]strong msgid "strong" msgstr "" -#: ../cache/locales.php:655 +#: [mood]surprised msgid "surprised" msgstr "" -#: ../cache/locales.php:656 +#: [mood]thankful msgid "thankful" msgstr "" -#: ../cache/locales.php:657 +#: [mood]thirsty msgid "thirsty" msgstr "" -#: ../cache/locales.php:658 +#: [mood]tired msgid "tired" msgstr "" -#: ../cache/locales.php:659 +#: [mood]undefined msgid "undefined" msgstr "" -#: ../cache/locales.php:660 +#: [mood]weak msgid "weak" msgstr "" -#: ../cache/locales.php:661 +#: [mood]worried msgid "worried" msgstr "" -#: ../cache/locales.php:662 +#: [month]title msgid "Month" msgstr "" -#: ../cache/locales.php:663 +#: [month]january msgid "January" msgstr "Xaneiro" -#: ../cache/locales.php:664 +#: [month]february msgid "February" msgstr "Febreiro" -#: ../cache/locales.php:665 +#: [month]march msgid "March" msgstr "Marzo" -#: ../cache/locales.php:666 +#: [month]april msgid "April" msgstr "Abril" -#: ../cache/locales.php:667 +#: [month]may msgid "May" msgstr "Maio" -#: ../cache/locales.php:668 +#: [month]june msgid "June" msgstr "Xuño" -#: ../cache/locales.php:669 +#: [month]july msgid "July" msgstr "" -#: ../cache/locales.php:670 +#: [month]august msgid "August" msgstr "" -#: ../cache/locales.php:671 +#: [month]september msgid "September" msgstr "" -#: ../cache/locales.php:672 +#: [month]october msgid "October" msgstr "" -#: ../cache/locales.php:673 +#: [month]november msgid "November" msgstr "" -#: ../cache/locales.php:674 +#: [month]december msgid "December" msgstr "" -#: ../cache/locales.php:675 +#: [year]title msgid "Year" msgstr "" -#: ../cache/locales.php:676 +#: [date]today msgid "Today" msgstr "" -#: ../cache/locales.php:677 +#: [date]tomorrow msgid "Tomorrow" msgstr "" -#: ../cache/locales.php:678 +#: [date]yesterday msgid "Yesterday" msgstr "" -#: ../cache/locales.php:679 -#, php-format -msgid " %d days ago" +#: [date]ago +msgid "%d days ago" msgstr "" -#: ../cache/locales.php:680 +#: [date]day msgid "day" msgstr "" -#: ../cache/locales.php:682 +#: [post]whats_new msgid "What's new ?" msgstr "" -#: ../cache/locales.php:683 +#: [post]place msgid "Place" msgstr "" -#: ../cache/locales.php:684 +#: [post]by msgid "by" msgstr "" -#: ../cache/locales.php:685 +#: [post]geolocalisation msgid "Geolocalisation" msgstr "" -#: ../cache/locales.php:686 +#: [post]email msgid "email" msgstr "" -#: ../cache/locales.php:688 +#: [post]no_comments msgid "No comments yet" msgstr "" -#: ../cache/locales.php:689 +#: [post]no_comments_stream msgid "No comments stream" msgstr "" -#: ../cache/locales.php:690 +#: [post]no_load msgid "Your feed cannot be loaded." msgstr "" -#: ../cache/locales.php:691 +#: [post]older msgid "Get older posts" msgstr "" -#: ../cache/locales.php:692 -#, php-format +#: [post]new_items msgid "%s new items" msgstr "" -#: ../cache/locales.php:693 +#: [post]comment_error msgid "Comment publication error" msgstr "" -#: ../cache/locales.php:694 +#: [post]comments_older msgid "Show the older comments" msgstr "" -#: ../cache/locales.php:695 -msgid "Loading comments ..." +#: [post]comments_loading +msgid "Loading comments..." msgstr "" -#: ../cache/locales.php:696 +#: [post]comments_get msgid "Get the comments" msgstr "" -#: ../cache/locales.php:697 +#: [post]comment_add msgid "Add a comment" msgstr "" -#: ../cache/locales.php:698 +#: [post]share msgid "Share with" msgstr "" -#: ../cache/locales.php:699 +#: [post]share_everyone msgid "Everyone" msgstr "" -#: ../cache/locales.php:700 +#: [post]share_your_contacts msgid "Your contacts" msgstr "" -#: ../cache/locales.php:702 +#: [post]updated msgid "Updated" msgstr "" -#: ../cache/locales.php:703 +#: [post]content_not_found msgid "Content not found" msgstr "" -#: ../cache/locales.php:704 +#: [post]default_title msgid "Contact publication" msgstr "" -#: ../cache/locales.php:705 +#: [post]comments msgid "Comments" msgstr "" -#: ../cache/locales.php:706 +#: [api]error msgid "The API is not reachable, try again later" msgstr "" -#: ../cache/locales.php:707 +#: [field]type_here msgid "Type here" msgstr "" #~ msgid "Logout" #~ msgstr "Saír" -#, php-format #~ msgid "%s - Account Creation" #~ msgstr "Creación de Conta %s" @@ -2596,7 +2709,6 @@ msgstr "" #~ msgid "PHP version mismatch. Movim requires PHP 5.3 minimum." #~ msgstr "Incompatibilidade de versión PHP. Movim require PHP mínimo 5.3." -#, php-format #~ msgid "Movim requires the %s extension." #~ msgstr "Movim require a extensión %s." diff --git a/sources/locales/he.po b/sources/locales/he.po index ff0c89b..1ae6a49 100644 --- a/sources/locales/he.po +++ b/sources/locales/he.po @@ -3,2628 +3,2784 @@ # This file is distributed under the same license as the movim package. # Isratine Citizen , 2012. # +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/About/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Account/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AccountNext/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AdHoc/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AdminDB/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AdminMain/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AdminTest/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Api/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Avatar/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Blog/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Bookmark/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Chat/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Chats/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/ConfigData/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Config/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Contact/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Group/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Groups/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Header/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Hello/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Help/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Init/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Location/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/LoginAnonymous/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Login/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Menu/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/NodeAffiliations/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/NodeSubscriptions/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Notifs/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Post/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Presence/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Publish/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/PubsubSubscriptionConfig/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Rooms/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Roster/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Share/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Statistics/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Subscribe/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Syndication/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Upload/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Vcard4/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/VisioExt/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Visio/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../locales/locales.ini msgid "" msgstr "" "Project-Id-Version: movim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-06-08 22:06+0200\n" +"POT-Creation-Date: 2015-08-20 15:17+0200\n" "PO-Revision-Date: 2015-06-09 12:19+0000\n" "Last-Translator: GenghisKhan \n" "Language-Team: Rahut \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2015-06-18 21:08+0000\n" "X-Generator: Launchpad (build 17570)\n" -"Language: \n" "X-Poedit-Language: Hebrew\n" -#: ../cache/locales.php:2 +#: [about]thanks msgid "Thanks" msgstr "תודות" -#: ../cache/locales.php:3 +#: [about]developers msgid "Developers" msgstr "מפתחים" -#: ../cache/locales.php:4 +#: [about]translators msgid "Translators" msgstr "מתרגמים" -#: ../cache/locales.php:5 +#: [about]software msgid "Software" msgstr "תוכנה" -#: ../cache/locales.php:6 +#: [about]resources msgid "Resources" msgstr "מקורות" -#: ../cache/locales.php:7 ../cache/locales.php:83 ../cache/locales.php:85 +#: [about]api [schema]api [api]title msgid "API" msgstr "API" -#: ../cache/locales.php:8 -msgid "" -"Movim is an XMPP-based communication platform. All the project, except the " -"following software and resources, is under" -msgstr "" -"Movim הינו פלטפורמת תקשורת מבוססת XMPP. כל הפרויקט, למעט התכנות והמקורות " -"הבאים, רשוי תחת" +#: [about]info +msgid "Movim is an XMPP-based communication platform. All the project, except the following software and resources, is under" +msgstr "Movim הינו פלטפורמת תקשורת מבוססת XMPP. כל הפרויקט, למעט התכנות והמקורות הבאים, רשוי תחת" -#: ../cache/locales.php:9 +#: [account]title msgid "Account" msgstr "" -#: ../cache/locales.php:10 -msgid "The password has been updated" -msgstr "" +#: [account]password_change_title +#, fuzzy +msgid "Change my password" +msgstr "סיסמה שגויה" -#: ../cache/locales.php:11 -msgid "Please provide a valid password (6 characters minimum)" -msgstr "" - -#: ../cache/locales.php:12 -msgid "The provided passwords are not the same" -msgstr "" - -#: ../cache/locales.php:13 -msgid "Delete my account" -msgstr "" - -#: ../cache/locales.php:14 -msgid "" -"You will delete your XMPP account and all the relative information linked to " -"it (profile, contacts and publications)." -msgstr "" - -#: ../cache/locales.php:15 -msgid "Are you sure that you want to delete it ?" -msgstr "" - -#: ../cache/locales.php:16 ../cache/locales.php:411 -msgid "Create a new account" -msgstr "יצירת חשבון חדש" - -#: ../cache/locales.php:17 -msgid "No account creation form found on the server" -msgstr "לא נמצא טופס יצירת חשבון על השרת" - -#: ../cache/locales.php:18 ../cache/locales.php:172 -msgid "on" -msgstr "ביום" - -#: ../cache/locales.php:19 -msgid "Your acccount has been successfully registered" -msgstr "חשבונך נרשם בהצלחה" - -#: ../cache/locales.php:20 -msgid "Loading" -msgstr "כעת טוען" - -#: ../cache/locales.php:21 -msgid "Not Acceptable" -msgstr "לא קביל" - -#: ../cache/locales.php:22 -msgid "The registration system of this server is currently unavailable" -msgstr "מערכת הרשמה בשרת זה איננה זמינה בעת זו" - -#: ../cache/locales.php:23 -msgid "" -"This server use an external system for the registration, please click on the " -"following URL." -msgstr "" - -#: ../cache/locales.php:24 -msgid "Actions" -msgstr "פעולות" - -#: ../cache/locales.php:25 ../cache/locales.php:82 -msgid "Database" -msgstr "מסד נתונים" - -#: ../cache/locales.php:26 -msgid "Modl wasn't able to connect to the database" -msgstr "Modl לא היה מסוגל להתחבר אל מסד נתונים" - -#: ../cache/locales.php:27 -msgid "Movim is connected to the database" -msgstr "Movim הינו מחובר אל מסד נתונים" - -#: ../cache/locales.php:28 -msgid "The database need to be updated" -msgstr "על מסד נתונים להתעדכן" - -#: ../cache/locales.php:29 -msgid "Movim database is up to date" -msgstr "מסד נתונים Movim הינו עדכני" - -#: ../cache/locales.php:30 -msgid "Database Type" -msgstr "טיפוס מסד נתונים" - -#: ../cache/locales.php:31 ../cache/locales.php:50 ../cache/locales.php:540 -msgid "Username" -msgstr "שם משתמש" - -#: ../cache/locales.php:32 ../cache/locales.php:51 ../cache/locales.php:282 -#: ../cache/locales.php:541 +#: [account]password [db]password [credentials]password [form]password +#: [input]password msgid "Password" msgstr "סיסמה" -#: ../cache/locales.php:33 +#: [account]password_confirmation +#, fuzzy +msgid "Password confirmation" +msgstr "‏‏%s - תצורה" + +#: [account]password_changed +msgid "The password has been updated" +msgstr "" + +#: [account]password_not_valid +msgid "Please provide a valid password (6 characters minimum)" +msgstr "" + +#: [account]password_not_same +msgid "The provided passwords are not the same" +msgstr "" + +#: [account]delete_title +msgid "Delete my account" +msgstr "" + +#: [account]delete +#, fuzzy +msgid "Delete your account" +msgstr "חשבון אחר" + +#: [account]delete_text +msgid "You will delete your XMPP account and all the relative information linked to it (profile, contacts and publications)." +msgstr "" + +#: [account]delete_text_confirm +msgid "Are you sure that you want to delete it ?" +msgstr "" + +#: [account]gateway_title +msgid "Gateway" +msgstr "" + +#: [create]title [subscribe]title +msgid "Create a new account" +msgstr "יצירת חשבון חדש" + +#: [create]notfound +msgid "No account creation form found on the server" +msgstr "לא נמצא טופס יצירת חשבון על השרת" + +#: [create]server_on +msgid "on" +msgstr "ביום" + +#: [create]successfull +msgid "Your acccount has been successfully registered" +msgstr "חשבונך נרשם בהצלחה" + +#: [create]loading +msgid "Loading" +msgstr "כעת טוען" + +#: [error]not_acceptable +msgid "Not Acceptable" +msgstr "לא קביל" + +#: [error]service_unavailable +msgid "The registration system of this server is currently unavailable" +msgstr "מערכת הרשמה בשרת זה איננה זמינה בעת זו" + +#: [oob]about +msgid "This server use an external system for the registration, please click on the following URL." +msgstr "" + +#: [adhoc]title +msgid "Actions" +msgstr "פעולות" + +#: [db]legend [schema]database +msgid "Database" +msgstr "מסד נתונים" + +#: [db]connect_error +msgid "Modl wasn't able to connect to the database" +msgstr "Modl לא היה מסוגל להתחבר אל מסד נתונים" + +#: [db]connect_success +msgid "Movim is connected to the database" +msgstr "Movim הינו מחובר אל מסד נתונים" + +#: [db]update +msgid "The database need to be updated" +msgstr "על מסד נתונים להתעדכן" + +#: [db]up_to_date +msgid "Movim database is up to date" +msgstr "מסד נתונים Movim הינו עדכני" + +#: [db]type +msgid "Database Type" +msgstr "טיפוס מסד נתונים" + +#: [db]username [credentials]username [input]username +msgid "Username" +msgstr "שם משתמש" + +#: [db]host msgid "Host" msgstr "מארח" -#: ../cache/locales.php:34 +#: [db]port msgid "Port" msgstr "פורט" -#: ../cache/locales.php:35 -msgid "Database Name" +#: [db]name +#, fuzzy +msgid "Database sName" msgstr "שם מסד נתונים" -#: ../cache/locales.php:36 +#: [admin]general msgid "General Settings" msgstr "הגדרות כלליות" -#: ../cache/locales.php:37 +#: [general]theme msgid "Theme" msgstr "מוטיב" -#: ../cache/locales.php:38 +#: [general]language msgid "Default language" msgstr "שפה משתמטת" -#: ../cache/locales.php:39 -msgid "Environment" -msgstr "סביבה" - -#: ../cache/locales.php:40 +#: [general]log_verbosity msgid "Log verbosity" msgstr "גיבוב רשומת יומן" -#: ../cache/locales.php:41 +#: [general]timezone msgid "Server Timezone" msgstr "אזור זמן שרת" -#: ../cache/locales.php:42 +#: [general]limit msgid "User folder size limit (in bytes)" msgstr "מגבלת גודל תיקיית משתמש (בתים)" -#: ../cache/locales.php:43 +#: [websocket]title msgid "WebSocket Configuration" msgstr "תצורת WebSocket" -#: ../cache/locales.php:44 +#: [websocket]info msgid "Enter here a valid WebSocket URI in the form" msgstr "" -#: ../cache/locales.php:45 +#: [websocket]label msgid "WebSocket URI" msgstr "" -#: ../cache/locales.php:46 -msgid "" -"If you change the URI, please restart the daemon to reload the configuration" +#: [websocket]save_info +msgid "If you change the URI, please restart the daemon to reload the configuration" msgstr "" -#: ../cache/locales.php:47 +#: [websocket]publics msgid "Public WebSockets" msgstr "WebSocket פומבי" -#: ../cache/locales.php:48 +#: [credentials]title msgid "Administration Credential" msgstr "נתוני התחברות מנהל" -#: ../cache/locales.php:49 +#: [credentials]info msgid "Change the default credentials admin/password" msgstr "שנה נתוני התחברות מנהל/סיסמה" -#: ../cache/locales.php:52 +#: [credentials]re_password msgid "Retype password" msgstr "הקלד סיסמה מחדש" -#: ../cache/locales.php:53 +#: [whitelist]title msgid "Whitelist - XMPP Server" msgstr "רשימה לבנה - שרת XMPP" -#: ../cache/locales.php:54 -msgid "" -"If you want to specify a list of authorized XMPP servers on your Movim pod " -"and forbid the connection on all the others please put their domain name " -"here, with comma (ex: movim.eu,jabber.fr)" -msgstr "" -"אם ברצונך לציין רשימה של שרתי XMPP מורשים בשרת Movim שלך ולאסור את החיבור " -"בכל האחרים אנא השם כאן את שם המתחם שלהם, עם פסיק (דוגמא: movim.eu,jabber.fr)" +#: [whitelist]info1 +msgid "If you want to specify a list of authorized XMPP servers on your Movim pod and forbid the connection on all the others please put their domain name here, with comma (ex: movim.eu,jabber.fr)" +msgstr "אם ברצונך לציין רשימה של שרתי XMPP מורשים בשרת Movim שלך ולאסור את החיבור בכל האחרים אנא השם כאן את שם המתחם שלהם, עם פסיק (דוגמא: movim.eu,jabber.fr)" -#: ../cache/locales.php:55 -msgid "" -"Leave this field blank if you allow the access to all the XMPP accounts." +#: [whitelist]info2 +msgid "Leave this field blank if you allow the access to all the XMPP accounts." msgstr "השאר את שדה זה ריק אם ברצונך להתיר גישה אל כל החשבונות של XMPP." -#: ../cache/locales.php:56 +#: [whitelist]label msgid "List of whitelisted XMPP servers" msgstr "רשימה של שרתי XMPP שמצויים תחת רשימה לבנה" -#: ../cache/locales.php:57 ../cache/locales.php:61 +#: [information]title +#, fuzzy +msgctxt "[information]title" msgid "Information Message" msgstr "הודעת מידע" -#: ../cache/locales.php:58 +#: [information]description msgid "Description" msgstr "תיאור" -#: ../cache/locales.php:59 +#: [information]info1 msgid "This message will be displayed on the login page" msgstr "הודעה זו תוצג בעמוד הכניסה" -#: ../cache/locales.php:60 -msgid "Leave this field blank if you don't want to show any message." +#: [information]info2 +#, fuzzy +msgid "Leave this field blank if you dont want to show any message." msgstr "השאר את שדה זה ריק אם אין ברצונך להציג כל הודעה שהיא." -#: ../cache/locales.php:62 +#: [information]label +#, fuzzy +msgctxt "[information]label" +msgid "Information Message" +msgstr "הודעת מידע" + +#: [log]empty msgid "Empty" msgstr "ריק" -#: ../cache/locales.php:63 +#: [log]syslog msgid "Syslog" msgstr "יומן מערכת" -#: ../cache/locales.php:64 +#: [log]syslog_files msgid "Syslog and files" msgstr "יומן מערכת וקבצים" -#: ../cache/locales.php:65 +#: [rewrite]title msgid "URL Rewriting" msgstr "" -#: ../cache/locales.php:66 +#: [rewrite]info msgid "The URL Rewriting can be enabled" msgstr "" -#: ../cache/locales.php:67 +#: [admin]compatibility msgid "General Overview" msgstr "סקירה כללית" -#: ../cache/locales.php:68 -msgid "" -"Movim has found some issues or things that need to be fixed or improved" +#: [compatibility]info +msgid "Movim has found some issues or things that need to be fixed or improved" msgstr "" -#: ../cache/locales.php:69 -#, php-format +#: [compatibility]php1 msgid "Update your PHP-Version: %s" msgstr "עדכן גרסת PHP שלך: %s" -#: ../cache/locales.php:70 +#: [compatibility]php2 msgid "Required: 5.3.0" msgstr "צריך: 5.3.0" -#: ../cache/locales.php:71 +#: [compatibility]curl msgid "Install the php5-curl library" msgstr "התקן את הספרייה php5-curl" -#: ../cache/locales.php:72 +#: [compatibility]imagick msgid "Install the php5-imagick library" msgstr "" -#: ../cache/locales.php:73 +#: [compatibility]gd msgid "Install the php5-gd library" msgstr "" -#: ../cache/locales.php:74 -msgid "Read and write rights for the webserver in Movim's root directory" +#: [compatibility]rights +#, fuzzy +msgid "Read and write rights for the webserver in Movims root directory" msgstr "הרשאות קריאה וכתיבה עבור שרת הרשת במדור השורש (root) של Movim" -#: ../cache/locales.php:75 +#: [compatibility]rewrite msgid "The URL Rewriting support is currently disabled" msgstr "" -#: ../cache/locales.php:76 +#: [compatibility]db msgid "The database need to be updated, go to the database panel to fix this" msgstr "" -#: ../cache/locales.php:77 -msgid "" -"WebSocket connection error, check if the Movim Daemon is running and is " -"reacheable" +#: [compatibility]websocket +msgid "WebSocket connection error, check if the Movim Daemon is running and is reachable" msgstr "" -#: ../cache/locales.php:78 -msgid "" -"XMPP Websocket connection error, please check the validity of the URL given " -"in the General Configuration" +#: [compatibility]xmpp_websocket +msgid "XMPP Websocket connection error, please check the validity of the URL given in the General Configuration" msgstr "" -#: ../cache/locales.php:79 +#: [schema]browser msgid "Browser" msgstr "" -#: ../cache/locales.php:80 +#: [schema]movim msgid "Movim Core" msgstr "" -#: ../cache/locales.php:81 +#: [schema]daemon msgid "Movim Daemon" msgstr "" -#: ../cache/locales.php:84 +#: [schema]xmpp msgid "XMPP" msgstr "" -#: ../cache/locales.php:86 -#, php-format -msgid "" -"Here you can register your pod on the official %sMovim API%s and be listed " -"on %sthe pods page%s." -msgstr "" -"באפשרותך לרשום כאן את השרת שלך בתוך %sMovim API%s הרשמי בו יהיה מנוי בתוך " -"%sעמוד השרתים%s." +#: [api]info +msgid "Here you can register your pod on the official %sMovim API%s and be listed on %sthe pods page%s." +msgstr "באפשרותך לרשום כאן את השרת שלך בתוך %sMovim API%s הרשמי בו יהיה מנוי בתוך %sעמוד השרתים%s." -#: ../cache/locales.php:87 +#: [api]register msgid "Your pod is not registered on the API" msgstr "השרת שלך אינו רשום API" -#: ../cache/locales.php:88 +#: [api]registered msgid "Your pod is registered on the API" msgstr "השרת שלך הינו רשום API" -#: ../cache/locales.php:89 +#: [api]wait msgid "Your pod is not yet validated" msgstr "השרת שלך עדיין לא קיבל תוקף" -#: ../cache/locales.php:90 +#: [api]validated msgid "Your pod is validated" msgstr "השרת שלך הינו תקף" -#: ../cache/locales.php:91 -msgid "" -"You asked to be removed from the API, this request will be processed in a " -"couple of hours" +#: [api]unregister +msgid "You asked to be removed from the API, this request will be processed in a couple of hours" msgstr "" -#: ../cache/locales.php:92 ../cache/locales.php:147 +#: [api]conf_updated [config]updated msgid "Configuration updated" msgstr "תצורה עודכנה" -#: ../cache/locales.php:93 +#: [avatar]file msgid "File" msgstr "" -#: ../cache/locales.php:94 +#: [avatar]use_it msgid "Use it" msgstr "" -#: ../cache/locales.php:95 +#: [avatar]webcam msgid "Webcam" msgstr "מצלמת רשת" -#: ../cache/locales.php:96 +#: [avatar]cheese msgid "Cheese !" msgstr "חייכו !" -#: ../cache/locales.php:97 +#: [avatar]snapshot msgid "Take a webcam snapshot" msgstr "קח תצלום בזק מתוך מצלמת רשת" -#: ../cache/locales.php:98 +#: [avatar]updated msgid "Avatar Updated" msgstr "אווטאר עודכן" -#: ../cache/locales.php:99 +#: [avatar]not_updated msgid "Avatar Not Updated" msgstr "אווטאר לא מעודכן" -#: ../cache/locales.php:100 ../cache/locales.php:415 -#, php-format +#: [blog]title [feed]title msgid "%s's feed" msgstr "הערוץ של %s" -#: ../cache/locales.php:101 +#: [blog]empty msgid "This user has not posted anything right now" msgstr "" -#: ../cache/locales.php:102 +#: [title]conferences msgid "Conferences" msgstr "ועידות" -#: ../cache/locales.php:103 ../cache/locales.php:193 ../cache/locales.php:217 -#: ../cache/locales.php:468 +#: [title]groups [group]empty_title [menu]groups [page]groups msgid "Groups" msgstr "קבוצות" -#: ../cache/locales.php:104 +#: [chatroom]add msgid "Add a new Chat Room" msgstr "הוסף חדר שיחה חדש" -#: ../cache/locales.php:105 ../cache/locales.php:368 +#: [chatroom]id [chatrooms]id msgid "Chat Room ID" msgstr "מזהה חדר שיחה" -#: ../cache/locales.php:106 ../cache/locales.php:116 ../cache/locales.php:156 -#: ../cache/locales.php:361 ../cache/locales.php:369 ../cache/locales.php:424 +#: [chatroom]name +#, fuzzy +msgctxt "[chatroom]name" msgid "Name" msgstr "שם" -#: ../cache/locales.php:107 ../cache/locales.php:157 ../cache/locales.php:371 -#: ../cache/locales.php:425 +#: [chatroom]nickname [general]nickname [chatrooms]nickname msgid "Nickname" msgstr "שם כינוי" -#: ../cache/locales.php:108 +#: [chatroom]autojoin_label msgid "Do you want do join automaticaly this Chat Room ?" msgstr "האם ברצונך להצטרף אוטומטית אל שיחת חדר זו ?" -#: ../cache/locales.php:109 ../cache/locales.php:372 +#: [chatroom]bad_id [chatrooms]bad_id msgid "Bad Chatroom ID" msgstr "מזהה חדר שיחה רע" -#: ../cache/locales.php:110 ../cache/locales.php:373 +#: [chatroom]empty_name [chatrooms]empty_name msgid "Empty name" msgstr "שם ריק" -#: ../cache/locales.php:111 ../cache/locales.php:380 +#: [bookmarks]updated msgid "Bookmarks updated" msgstr "סימניות עודכנו" -#: ../cache/locales.php:112 -msgid "An error occured : " +#: [bookmarks]error +#, fuzzy +msgid "An error occured :" msgstr "ארעה שגיאה : " -#: ../cache/locales.php:113 +#: [bookmarks]configure msgid "Configure" msgstr "הגדר" -#: ../cache/locales.php:114 +#: [url]add msgid "Add a new URL" msgstr "הוסף URL חדש" -#: ../cache/locales.php:115 +#: [url]url msgid "URL" msgstr "URL" -#: ../cache/locales.php:117 +#: [url]name +#, fuzzy +msgctxt "[url]name" +msgid "Name" +msgstr "שם" + +#: [message]published msgid "Message Published" msgstr "הודעה פורסמה" -#: ../cache/locales.php:118 ../cache/locales.php:138 +#: [message]encrypted msgid "Encrypted message" msgstr "הודעה מוצפנת" -#: ../cache/locales.php:119 +#: [message]composing [chats]composing msgid "Composing..." msgstr "מלחין כעת..." -#: ../cache/locales.php:120 +#: [message]paused [chats]paused msgid "Paused..." msgstr "מושהה..." -#: ../cache/locales.php:121 +#: [message]gone msgid "Contact gone" msgstr "" -#: ../cache/locales.php:122 -#, php-format +#: [chat]attention msgid "%s needs your attention" msgstr "%s רוצה את צומת ליבך" -#: ../cache/locales.php:123 +#: [chat]placeholder msgid "Your message here..." msgstr "הודעתך כאן..." -#: ../cache/locales.php:124 +#: [chat]smileys msgid "Smileys" msgstr "סמיילים" -#: ../cache/locales.php:125 ../cache/locales.php:139 +#: [chat]empty_title [button]chat msgid "Chat" msgstr "שיחה" -#: ../cache/locales.php:126 +#: [chat]empty_text msgid "Discuss with your contacts" msgstr "שוחח עם האנשי קשר שלך" -#: ../cache/locales.php:127 -msgid "Members" -msgstr "" - -#: ../cache/locales.php:128 ../cache/locales.php:376 -msgid "Connected to the chatroom" -msgstr "מחובר אל שיחת קבוצה" - -#: ../cache/locales.php:129 ../cache/locales.php:377 -msgid "Disconnected from the chatroom" -msgstr "מנותק מתוך שיחת הקבוצה" - -#: ../cache/locales.php:130 ../cache/locales.php:200 ../cache/locales.php:469 -msgid "Configuration" -msgstr "תצורה" - -#: ../cache/locales.php:131 -msgid "Configuration saved" -msgstr "" - -#: ../cache/locales.php:132 -msgid "Subject" -msgstr "" - -#: ../cache/locales.php:133 -msgid "Subject changed" -msgstr "" - -#: ../cache/locales.php:134 -msgid "Open a new conversation by clicking on the plus button bellow" -msgstr "" - -#: ../cache/locales.php:135 -msgid "Chat with a contact" -msgstr "שיח עם איש קשר" - -#: ../cache/locales.php:136 +#: [chat]frequent [chats]frequent msgid "Frequent contacts" msgstr "" -#: ../cache/locales.php:137 +#: [chatroom]members +msgid "Members" +msgstr "" + +#: [chatroom]connected [chatrooms]connected +msgid "Connected to the chatroom" +msgstr "מחובר אל שיחת קבוצה" + +#: [chatroom]disconnected [chatrooms]disconnected +msgid "Disconnected from the chatroom" +msgstr "מנותק מתוך שיחת הקבוצה" + +#: [chatroom]config [group]configuration [page]configuration +msgid "Configuration" +msgstr "תצורה" + +#: [chatroom]config_saved +msgid "Configuration saved" +msgstr "" + +#: [chatroom]subject +msgid "Subject" +msgstr "" + +#: [chatroom]subject_changed +msgid "Subject changed" +msgstr "" + +#: [chats]empty_title +msgid "No chats yet..." +msgstr "" + +#: [chats]empty +msgid "Open a new conversation by clicking on the plus button bellow or visit the Contacts page." +msgstr "" + +#: [chats]add +msgid "Chat with a contact" +msgstr "שיח עם איש קשר" + +#: [chats]more msgid "Load more contacts" msgstr "" -#: ../cache/locales.php:140 -msgid "General" -msgstr "כללי" - -#: ../cache/locales.php:141 -msgid "Language" -msgstr "שפה" - -#: ../cache/locales.php:142 -msgid "Roster display" -msgstr "" - -#: ../cache/locales.php:143 -msgid "Show the offline contacts" -msgstr "" - -#: ../cache/locales.php:144 -msgid "Hide the offline contacts" -msgstr "" - -#: ../cache/locales.php:145 -msgid "Appearence" -msgstr "חזות" - -#: ../cache/locales.php:146 -msgid "This configuration is shared wherever you are connected !" -msgstr "תצורה זו משותפת כבל מקום בו אנו מחוברים !" - -#: ../cache/locales.php:148 -msgid "Notify on incoming message" -msgstr "התראה בעת הודעה נכנסת" - -#: ../cache/locales.php:149 -msgid "Use desktop notifications" -msgstr "השתמש בהתראות שולחן עבודה" - -#: ../cache/locales.php:150 +#: [title]data msgid "Data" msgstr "נתונים" -#: ../cache/locales.php:151 +#: [title]cache msgid "Cache" msgstr "מטמון" -#: ../cache/locales.php:152 ../cache/locales.php:218 ../cache/locales.php:466 +#: [title]contacts [menu]contacts [page]contacts msgid "Contacts" msgstr "אנשי קשר" -#: ../cache/locales.php:153 ../cache/locales.php:480 +#: [title]posts [page]posts msgid "Posts" msgstr "פרסומים" -#: ../cache/locales.php:154 +#: [title]messages msgid "Messages" msgstr "הודעות" +#: [config]general +msgid "General" +msgstr "כללי" + +#: [config]language +msgid "Language" +msgstr "שפה" + +#: [config]roster +msgid "Roster display" +msgstr "" + +#: [config]roster_show +msgid "Show the offline contacts" +msgstr "" + +#: [config]roster_hide +msgid "Hide the offline contacts" +msgstr "" + +#: [config]appearence +msgid "Appearence" +msgstr "חזות" + +#: [config]info +#, fuzzy +msgid "This configuration is shared wherever you are connected" +msgstr "תצורה זו משותפת כבל מקום בו אנו מחוברים !" + +#: [notifications]message +msgid "Notify on incoming message" +msgstr "התראה בעת הודעה נכנסת" + +#: [notifications]desktop +msgid "Use desktop notifications" +msgstr "השתמש בהתראות שולחן עבודה" + # BUG: Information(s) -#: ../cache/locales.php:155 ../cache/locales.php:423 +#: [general]legend [general]general_title msgid "General Informations" msgstr "מידע כללי" -#: ../cache/locales.php:158 ../cache/locales.php:427 +#: [general]name [public_groups]name [chatrooms]name +msgid "Name" +msgstr "שם" + +#: [general]date_of_birth msgid "Date of Birth" msgstr "תאריך לידה" -#: ../cache/locales.php:159 ../cache/locales.php:428 +#: [general]gender msgid "Gender" msgstr "מין" -#: ../cache/locales.php:160 ../cache/locales.php:429 +#: [general]marital msgid "Marital Status" msgstr "מצב משפחתי" -#: ../cache/locales.php:161 ../cache/locales.php:426 +#: [general]email msgid "Email" msgstr "דוא״ל" -#: ../cache/locales.php:162 ../cache/locales.php:430 +#: [general]website msgid "Website" msgstr "אתר רשת" -#: ../cache/locales.php:163 ../cache/locales.php:431 +#: [general]about msgid "About Me" msgstr "אודותיי" -#: ../cache/locales.php:164 +#: [general]accounts msgid "Other Accounts" msgstr "חשבונות אחרים" -#: ../cache/locales.php:165 +#: [general]tune msgid "Is Listening" msgstr "" -#: ../cache/locales.php:166 ../cache/locales.php:432 +#: [position]legend [position]position_title msgid "Geographic Position" msgstr "מיקום גאוגרפי" -#: ../cache/locales.php:167 ../cache/locales.php:433 +#: [position]locality msgid "Locality" msgstr "מקומיות" -#: ../cache/locales.php:168 ../cache/locales.php:434 +#: [position]country msgid "Country" msgstr "ארץ" -#: ../cache/locales.php:169 +#: [mood]title msgid "Mood" msgstr "מצב רוח" -#: ../cache/locales.php:170 +#: [mood]im msgid "I'm " msgstr "אני " -#: ../cache/locales.php:171 +#: [listen]title msgid "Listening" msgstr "מאזין כעת" -#: ../cache/locales.php:173 +#: [last]title msgid "Last seen" msgstr "נראה לאחרונה" -#: ../cache/locales.php:174 +#: [client]title msgid "Client Informations" msgstr "מידע לקוח" -#: ../cache/locales.php:175 +#: [explore]last_registered msgid "Last registered" msgstr "נרשמו לאחרונה" -#: ../cache/locales.php:176 +#: [explore]explore msgid "Find some new friends" msgstr "" -#: ../cache/locales.php:177 ../cache/locales.php:533 +#: [edit]title [button]edit msgid "Edit" msgstr "ערוך" -#: ../cache/locales.php:178 +#: [edit]alias msgid "Alias" msgstr "כינוי" -#: ../cache/locales.php:179 +#: [edit]group msgid "Group" msgstr "קבוצה" -#: ../cache/locales.php:180 ../cache/locales.php:400 +#: [edit]updated [roster]updated msgid "Contact updated" msgstr "איש קשר עודכן" -#: ../cache/locales.php:181 +#: [delete]title msgid "Are you sure?" msgstr "האם אתה בטוח?" -#: ../cache/locales.php:182 -msgid "" -"You are going to delete one of your contacts, please confirm your action" +#: [delete]text +msgid "You are going to delete one of your contacts, please confirm your action" msgstr "" -#: ../cache/locales.php:183 -#, php-format +#: [age]years msgid "%s years" msgstr "" -#: ../cache/locales.php:184 +#: [blog]last msgid "Last public post" msgstr "" -#: ../cache/locales.php:185 +#: [subscription]to +#, fuzzy +msgid "You can see this contact status" +msgstr "אין ערוץ פומבי עבור איש קשר זה" + +#: [subscription]to_button +msgid "Share my status" +msgstr "" + +#: [subscription]to_text +msgid "But this contact cannot see yours" +msgstr "" + +#: [subscription]from +#, fuzzy +msgid "You are not subscribed to this contact" +msgstr "אין ערוץ פומבי עבור איש קשר זה" + +#: [subscription]from_button +#, fuzzy +msgid "Ask to subscribe" +msgstr "בטל הרשמה" + +#: [subscription]from_text +msgid "But this contact can still see if you are online" +msgstr "" + +#: [subscription]nil +#, fuzzy +msgid "No subscriptions" +msgstr "הרשמות" + +#: [subscription]nil_button +msgid "Invite" +msgstr "" + +#: [subscription]nil_text +msgid "This contact is in your contact list but there is no subscriptions between the two accounts" +msgstr "" + +#: [group]subscribe msgid "Subscribe" msgstr "הירשם" -#: ../cache/locales.php:186 +#: [group]subscribed msgid "Subscribed" msgstr "מנוי" -#: ../cache/locales.php:187 +#: [group]unsubscribe msgid "Unsubscribe" msgstr "בטל הרשמה" -#: ../cache/locales.php:188 +#: [group]unsubscribe_text msgid "You are going to unsubscribe from this Group" msgstr "" -#: ../cache/locales.php:189 +#: [group]unsubscribed msgid "Unsubscribed" msgstr "" -#: ../cache/locales.php:190 +#: [group]share_label msgid "Make your membership to this group public to your friends" msgstr "" -#: ../cache/locales.php:191 +#: [group]label_label msgid "Give a label for this group" msgstr "" -#: ../cache/locales.php:192 +#: [group]sure msgid "Are you sure ?" msgstr "האם אתה בטוח ?" -#: ../cache/locales.php:194 +#: [group]empty_text msgid "Discover, follow and share" msgstr "" -#: ../cache/locales.php:195 +#: [group]empty msgid "Something bad happened to this group" msgstr "" -#: ../cache/locales.php:196 +#: [group]config_saved msgid "Group configuration saved" msgstr "תצורת קבוצה נשמרה" -#: ../cache/locales.php:197 +#: [group]delete_title msgid "Delete the group" msgstr "" -#: ../cache/locales.php:198 -msgid "" -"You are going to delete the following group. Please confirm your action." +#: [group]delete_text +msgid "You are going to delete the following group. Please confirm your action." msgstr "" -#: ../cache/locales.php:199 -msgid "" -"It seems that this group doesn't exists anymore. Do you want to remove it " -"from your subscriptions?" +#: [group]delete_clean_text +msgid "It seems that this group doesn't exists anymore. Do you want to remove it from your subscriptions?" msgstr "" -#: ../cache/locales.php:201 ../cache/locales.php:408 +#: [group]counter +msgid "%s groups on this server" +msgstr "" + +#: [group]subscriptions [statistics]subscriptions msgid "Subscriptions" msgstr "הרשמות" -#: ../cache/locales.php:202 ../cache/locales.php:290 +#: [group]servers +#, fuzzy +msgid "Groups servers" +msgstr "קבוצות" + +#: [group]search_server +msgid "Search for a new server" +msgstr "" + +#: [group]help_info1 +msgid "Groups are the perfect way to share posts about topics that you like with all the other Movim's users." +msgstr "" + +#: [group]help_info2 +msgid "Choose a server and a Group and subscribe to it using the %s button in the header. You can also create a new one using the %s button." +msgstr "" + +#: [group]help_info3 +msgid "Done? You can now publish a new post in the Group by using the %s button." +msgstr "" + +#: [group]help_info4 +msgid "You will find a list of all your subscribed Groups in My Subscriptions and receive instantly all the new incoming posts in the %sNews%s page." +msgstr "" + +#: [groups]empty_title msgid "Hello" msgstr "שלום" -#: ../cache/locales.php:203 ../cache/locales.php:225 ../cache/locales.php:291 +#: [groups]contact_post [hello]contact_post [menu]contact_post msgid "Contact post" msgstr "פרסום איש קשר" -#: ../cache/locales.php:204 -msgid "" -"You don't have any subscriptions yet, select a group server above to start " -"exploring." +#: [groups]empty_text1 +msgid "You don't have any subscriptions yet, select a group server above to start exploring." msgstr "" -#: ../cache/locales.php:205 +#: [groups]empty_text2 msgid "Subscribe to your favorite feeds by bookmarking them." msgstr "" -#: ../cache/locales.php:206 +#: [groups]subscriptions msgid "My Subscriptions" msgstr "" -#: ../cache/locales.php:207 +#: [groups]add msgid "Create a new Group" msgstr "" -#: ../cache/locales.php:208 +#: [groups]name msgid "Group name" msgstr "" -#: ../cache/locales.php:209 +#: [groups]name_example msgid "My Little Pony - Fan Club" msgstr "אין כמו אבא שבעולם - מועדון מעריצים" -#: ../cache/locales.php:210 +#: [groups]created msgid "Group created successfully" msgstr "" -#: ../cache/locales.php:211 +#: [groups]deleted msgid "Group deleted successfully" msgstr "" -#: ../cache/locales.php:212 +#: [groups]name_error msgid "Please provide a valid group name (4 characters minimum)" msgstr "" -#: ../cache/locales.php:213 +#: [groups]no_creation msgid "You cannot create a new Group on this server" msgstr "" -#: ../cache/locales.php:214 -#, php-format +#: [groups]sub msgid "%s subscribers" msgstr "" -#: ../cache/locales.php:215 -#, php-format +#: [groups]num msgid "%s posts" msgstr "" -#: ../cache/locales.php:216 +#: [groups]disco_error +#, fuzzy +msgid "This server doesn't exists" +msgstr "שרת זה מארח %s חשבונות" + +#: [menu]all msgid "All" msgstr "הכל" -#: ../cache/locales.php:219 +#: [menu]refresh msgid "Refresh all the streams" msgstr "רענון של כל הזרמים" -#: ../cache/locales.php:220 ../cache/locales.php:402 -msgid "Search" -msgstr "חיפוש" +#: [roster]search +#, fuzzy +msgid "Search in your contacts" +msgstr "שוחח עם האנשי קשר שלך" -#: ../cache/locales.php:221 +#: [hello]active_contacts +#, fuzzy +msgid "Active contacts" +msgstr "אנשי הקשר שלך" + +#: [hello]chat msgid "Go on the Chat page" msgstr "" -#: ../cache/locales.php:222 +#: [hello]news [page]news +msgid "News" +msgstr "חדשות" + +#: [hello]news_page msgid "Read all theses articles on the News page" msgstr "" -#: ../cache/locales.php:223 +#: [hello]blog_title msgid "Visit your public blog" msgstr "" -#: ../cache/locales.php:224 +#: [hello]blog_text msgid "See your public posts and share them with all your contacts" msgstr "" -#: ../cache/locales.php:226 +#: [hello]share_title msgid "Universal share button" msgstr "" -#: ../cache/locales.php:227 -msgid "" -"Bookmark or drag and drop the following button in your toolbar and use it on " -"all the pages you want to share on Movim" +#: [hello]share_text +msgid "Bookmark or drag and drop the following button in your toolbar and use it on all the pages you want to share on Movim" msgstr "" -#: ../cache/locales.php:228 +#: [hello]share_button msgid "Share on Movim" msgstr "" -#: ../cache/locales.php:229 +#: [help]faq msgid "Frequently Asked Questions" msgstr "שאלות נפוצות" -#: ../cache/locales.php:230 +#: [banner]title msgid "What do the little banners refer to ?" msgstr "מה כרזות קטנות אלו מייחסות ?" -#: ../cache/locales.php:231 -msgid "" -"Thanks to these five little banners, you can quickly identitfy the level of " -"confdentiality applied to the information you provide." -msgstr "" -"הודות לחמשת כרזות אלו, באפשרותך לברר במהירות את רמת החיסיון שחלה על המידע " -"אותו בחרת לספק." +#: [banner]info1 +msgid "Thanks to these five little banners, you can quickly identitfy the level of confdentiality applied to the information you provide." +msgstr "הודות לחמשת כרזות אלו, באפשרותך לברר במהירות את רמת החיסיון שחלה על המידע אותו בחרת לספק." -#: ../cache/locales.php:232 +#: [banner]white msgid "White, only you can see the information" msgstr "לבן, רק לך האפשרות לראות את המידע" -#: ../cache/locales.php:233 +#: [banner]green msgid "Green, you have chosen some contacts who can see your information" msgstr "ירוק, בחרת אנשי קשר מסוימים אשר יכולים לראות את המידע שלך" # רשימת אישי־הקשר -#: ../cache/locales.php:234 +#: [banner]orange msgid "Orange, all your contact list can see your information" msgstr "כתום, כל רשימת הקשר שלך יכולה לראות את המידע שלך" -#: ../cache/locales.php:235 +#: [banner]red msgid "Red, everybody in the XMPP network can see your information" msgstr "אדום, כל אחד ברשת התקשורת XMPP יכול לראות את המידע שלך" # כל האינטרנט יכול לראות -#: ../cache/locales.php:236 +#: [banner]black msgid "Black, the whole Internet can see your information" msgstr "שחור, כל המרשתת יכולה לראות את המידע שלך" -#: ../cache/locales.php:237 +#: [wiki]question msgid "Looking for some documentation ?" msgstr "מחפשים תיעוד ?" -#: ../cache/locales.php:238 +#: [wiki]button msgid "Read the Wiki" msgstr "קרא את הויקי" -#: ../cache/locales.php:239 +#: [ml]question msgid "Talk with us by email ?" msgstr "שוחח עמנו באמצעות דוא״ל ?" -#: ../cache/locales.php:240 +#: [ml]button msgid "Join the Mailing List" msgstr "הצטרף לרשימת דיוור" -#: ../cache/locales.php:241 +#: [chatroom]question msgid "Chat with the team ?" msgstr "שיחה עם הצוות ?" -#: ../cache/locales.php:242 +#: [chatroom]button msgid "Join the Chatroom" msgstr "הצטרף לשיחת קבוצה" -#: ../cache/locales.php:243 +#: [init]location msgid "Location node created" msgstr "צומת מיקום נוצר" -#: ../cache/locales.php:244 +#: [init]bookmark msgid "Bookmark node created" msgstr "צומת סימנייה נוצר" -#: ../cache/locales.php:245 +#: [init]vcard4 msgid "Profile node created" msgstr "צומת דיוקן נוצר" -#: ../cache/locales.php:246 +#: [init]avatar msgid "Avatar node created" msgstr "צומת אווטאר נוצר" -#: ../cache/locales.php:247 +#: [init]subscriptions msgid "Subscriptions node created" msgstr "צומת הרשמות נוצר" -#: ../cache/locales.php:248 +#: [init]microblog msgid "Microblog node created" msgstr "צומת מיקרו-בלוג נוצר" -#: ../cache/locales.php:249 +#: [location]title msgid "Location" msgstr "מיקום" -#: ../cache/locales.php:250 +#: [location]wrong_postition msgid "Wrong position" msgstr "מיקום שגוי" -#: ../cache/locales.php:251 +#: [location]updated msgid "Location updated" msgstr "מיקום עודכן" -#: ../cache/locales.php:252 +#: [location]update msgid "Update my position" msgstr "עדכן את המיקום שלי" -#: ../cache/locales.php:253 +#: [login_anonymous]bad_username +msgid "Bad nickname (between 4 and 40 characters)" +msgstr "" + +#: [error]username msgid "Wrong username" msgstr "שם משתמש שגוי" # כתובת JID שגויה -#: ../cache/locales.php:254 +#: [error]jid msgid "Invalid JID" msgstr "‫JID שגויה" -#: ../cache/locales.php:255 +#: [error]empty_challenge msgid "Empty Challenge from the server" msgstr "רוקן הזמנה מן השרת" -#: ../cache/locales.php:256 +#: [error]dns msgid "XMPP Domain error, your account is not a correct Jabber ID" msgstr "שגיאת מתחם XMPP, חשבונך אינו כתובת JID תקינה" -#: ../cache/locales.php:257 +#: [error]data_missings msgid "Some data are missing !" msgstr "חסר מידע מסוים !" -#: ../cache/locales.php:258 +#: [error]wrong_password msgid "Wrong password" msgstr "סיסמה שגויה" -#: ../cache/locales.php:259 +#: [error]internal msgid "Internal server error" msgstr "שגיאת שרת פנימית" -#: ../cache/locales.php:260 +#: [error]session msgid "Session error" msgstr "שגיאת סשן" -#: ../cache/locales.php:261 +#: [error]account_created msgid "Account successfully created" msgstr "חשבון נוצר בהצלחה" -#: ../cache/locales.php:262 ../cache/locales.php:271 +#: [error]xmpp_unauthorized +#, fuzzy +msgctxt "[error]xmpp_unauthorized" msgid "Your XMPP server is unauthorized" msgstr "השרת של XMPP שלך אינו מורשה" -#: ../cache/locales.php:263 +#: [error]mec_error msgid "The server takes too much time to respond" msgstr "לשרת לוקח יותר מדי זמן להגיב" -#: ../cache/locales.php:264 +#: [error]too_old msgid "Your web browser is too old to use with Movim." msgstr "דפדפן הרשת שלך הינו ישן מידי בכדי לעשות שימוש עם Movim." -#: ../cache/locales.php:265 -msgid "" -"Movim cannot talk with the server, please try again later (Websocket " -"connection error)" +#: [error]websocket +msgid "Movim cannot talk with the server, please try again later (Websocket connection error)" msgstr "" -#: ../cache/locales.php:266 +#: [error]impossible msgid "Impossible login" msgstr "" -#: ../cache/locales.php:267 +#: [error]title msgid "Oops!" msgstr "אופס!" -#: ../cache/locales.php:268 ../cache/locales.php:449 ../cache/locales.php:455 +#: [error]default [visio]unknown_error msgid "Unknown error" msgstr "שגיאה לא ידועה" -#: ../cache/locales.php:269 +#: [error]login_format msgid "Invalid username format" msgstr "" -#: ../cache/locales.php:270 +#: [error]password_format msgid "Invalid password format" msgstr "" -#: ../cache/locales.php:272 +#: [error]unauthorized +#, fuzzy +msgctxt "[error]unauthorized" +msgid "Your XMPP server is unauthorized" +msgstr "השרת של XMPP שלך אינו מורשה" + +#: [error]conflict msgid "A Movim session is already open on an other device" msgstr "" -#: ../cache/locales.php:273 +#: [error]wrong_account msgid "Movim failed to authenticate. You entered wrong data" msgstr "‫Movim נכשלה לאמת. הזנת מידע שגוי" -#: ../cache/locales.php:274 +#: [error]mechanism msgid "Authentication mechanism not supported by Movim" msgstr "מנגנון אימות לא נתמך על ידי Movim" # typo: authentication -#: ../cache/locales.php:275 +#: [error]fail_auth msgid "The XMPP authentification failed" msgstr "אימות XMPP נכשל" -#: ../cache/locales.php:276 -#, php-format -msgid "" -"You can login with Facebook (chat only) using %syour.id@chat.facebook.com%s " -"and your password" -msgstr "" -"באפשרותך להתחבר עם Facebook (צ׳אט בלבד) באמצעות " -"%syour.id@chat.facebook.com%s וסיסמה" - -#: ../cache/locales.php:277 -#, php-format -msgid "%sGmail accounts are also compatible%s but are not fully supported" -msgstr "%sחשבונות Gmail מתאימים גם כן%s אך אינם נתמכים באופן מלא" - -#: ../cache/locales.php:278 -msgid "You can login using your favorite Jabber account" -msgstr "באפשרותך להתחבר באמצעות חשבון Jabber המועדף עליך" - -#: ../cache/locales.php:279 -msgid "or with our demonstration account" -msgstr "או בעזרת חשבון ניסיון שלנו" - -#: ../cache/locales.php:280 ../cache/locales.php:435 +#: [account]title [accounts]accounts_title msgid "Accounts" msgstr "חשבונות" -#: ../cache/locales.php:281 +#: [form]username msgid "My address" msgstr "כתובת" -#: ../cache/locales.php:283 +#: [form]create_one msgid "Create one !" msgstr "צור חשבון !" -#: ../cache/locales.php:284 -msgid "No account yet ?" -msgstr "אין חשבון עדיין ?" - -#: ../cache/locales.php:285 +#: [form]another_account msgid "Another account" msgstr "חשבון אחר" -#: ../cache/locales.php:286 +#: [form]no_account +msgid "No account yet ?" +msgstr "אין חשבון עדיין ?" + +#: [form]whitelist.info msgid "You can login with accounts from theses servers" msgstr "" -#: ../cache/locales.php:287 +#: [form]connected msgid "Connected" msgstr "מחובר" -#: ../cache/locales.php:288 +#: [form]population msgid "Population" msgstr "אוכלוסיה" -#: ../cache/locales.php:289 -msgid "Bad nickname (between 4 and 40 characters)" +#: [menu]empty_title +msgid "No news yet..." msgstr "" -#: ../cache/locales.php:292 -msgid "" -"Welcome on your news feed, here you will see all the posts published in the " -"groups you have subscribed." +#: [menu]empty +msgid "Welcome on your news feed, here you will see all the posts published by your contacts and in the groups you have subscribed." msgstr "" -#: ../cache/locales.php:293 +#: [menu]refresh msgid "Refreshing all the streams" msgstr "רענון של כל הזרמים" -#: ../cache/locales.php:294 +#: [menu]public msgid "This post is public" msgstr "" -#: ../cache/locales.php:295 +#: [affiliations]title msgid "Manage your members" msgstr "נהל את חבריך" -#: ../cache/locales.php:296 +#: [affiliations]get msgid "Get the members" msgstr "השג את החברים" -#: ../cache/locales.php:297 +#: [affiliations]saved msgid "Affiliations saved" msgstr "סינופים נשמרו" -#: ../cache/locales.php:298 +#: [subscriptions]title msgid "Manage your subscriptions" msgstr "נהל את ההרשמות שלך" -#: ../cache/locales.php:299 +#: [subscriptions]info msgid "Manage the subscriptions" msgstr "נהל את ההרשמות" -#: ../cache/locales.php:300 +#: [subscriptions]get msgid "Get the subscriptions" msgstr "השג את ההרשמות" -#: ../cache/locales.php:301 +#: [subscriptions]saved msgid "Subscriptions saved" msgstr "הרשמות נשמרו" -#: ../cache/locales.php:302 +#: [notifs]title msgid "Pending Invitations" msgstr "הזמנות תלויות ועומדות" -#: ../cache/locales.php:303 -#, php-format +#: [notifs]wants_to_talk msgid "%s wants to talk with you" msgstr "%s רוצה לשוחח עמך" -#: ../cache/locales.php:304 +#: [notifs]manage msgid "Manage" msgstr "נהל" -#: ../cache/locales.php:305 ../cache/locales.php:338 +#: [post]news_feed msgid "News Feed" msgstr "הזנת חדשות" -#: ../cache/locales.php:306 ../cache/locales.php:339 +#: [post]placeholder msgid "Discover and register to the groups you are interested in" msgstr "" -#: ../cache/locales.php:307 ../cache/locales.php:340 ../cache/locales.php:482 +#: [post]preview [page]preview msgid "Preview" msgstr "תצוגה מקדימה" -#: ../cache/locales.php:308 ../cache/locales.php:341 ../cache/locales.php:478 +#: [post]help [page]help msgid "Help" msgstr "עזרה" -#: ../cache/locales.php:309 ../cache/locales.php:342 +#: [post]help_more msgid "More help" msgstr "" -#: ../cache/locales.php:310 ../cache/locales.php:343 +#: [post]help_manual msgid "Markdown syntax manual" msgstr "" -#: ../cache/locales.php:311 ../cache/locales.php:344 ../cache/locales.php:681 +#: [post]title msgid "Title" msgstr "כותרת" -#: ../cache/locales.php:312 ../cache/locales.php:345 +#: [post]content msgid "Content" msgstr "" -#: ../cache/locales.php:313 ../cache/locales.php:346 +#: [post]link msgid "Link" msgstr "קישור" -#: ../cache/locales.php:314 ../cache/locales.php:347 +#: [post]tags msgid "Tags" msgstr "" -#: ../cache/locales.php:315 ../cache/locales.php:348 +#: [post]valid_url [publish]valid_url msgid "Please enter a valid url" msgstr "" -#: ../cache/locales.php:316 ../cache/locales.php:349 +#: [post]no_content_preview [publish]no_content_preview msgid "No content to preview" msgstr "" -#: ../cache/locales.php:317 ../cache/locales.php:350 ../cache/locales.php:687 +#: [post]no_content [publish]no_content [post]empty msgid "No content" msgstr "אין איש קשר" -#: ../cache/locales.php:318 ../cache/locales.php:351 +#: [post]published msgid "Post published" msgstr "" -#: ../cache/locales.php:319 ../cache/locales.php:352 +#: [post]deleted msgid "Post deleted" msgstr "" -#: ../cache/locales.php:320 ../cache/locales.php:353 +#: [post]gallery msgid "This picture will be added to your gallery" msgstr "" -#: ../cache/locales.php:321 ../cache/locales.php:354 +#: [post]hot msgid "What's Hot" msgstr "מה חם" -#: ../cache/locales.php:322 ../cache/locales.php:355 +#: [post]hot_text +msgid "Posts recently published in Groups that you are not subscribed (yet)" +msgstr "" + +#: [post]new [publish]new msgid "New post" msgstr "" -#: ../cache/locales.php:323 ../cache/locales.php:357 -msgid "" -"You can also use services like Imgur or Flickr to host your picture and " -"paste the link here." +#: [post]embed_tip +msgid "You can also use services like Imgur or Flickr to host your picture and paste the link here." msgstr "" -#: ../cache/locales.php:324 -#, php-format +#: [post]repost msgid "This is a re-post from %s" msgstr "" -#: ../cache/locales.php:325 -#, php-format +#: [post]repost_profile msgid "See %s profile" msgstr "" -#: ../cache/locales.php:326 -msgid "Publish this post on your public feed?" -msgstr "" +#: [post]public +#, fuzzy +msgid "Publish this post publicly?" +msgstr "האם דיוקן זה הינו פומבי ?" -#: ../cache/locales.php:327 +#: [post]blog_add msgid "Post published on your blog" msgstr "" -#: ../cache/locales.php:328 +#: [post]blog_remove msgid "Post removed from your blog" msgstr "" -#: ../cache/locales.php:329 ../cache/locales.php:701 +#: [post]delete_title [post]delete msgid "Delete this post" msgstr "מחק את פרסום זה" -#: ../cache/locales.php:330 +#: [post]delete_text msgid "You are going to delete this post, please confirm your action" msgstr "" -#: ../cache/locales.php:331 +#: [post]comments_disabled msgid "Comments disabled" msgstr "" -#: ../cache/locales.php:332 +#: [post]comment_published msgid "Comment published" msgstr "" -#: ../cache/locales.php:333 +#: [status]disconnect msgid "Disconnect" msgstr "התנתק" -#: ../cache/locales.php:334 +#: [status]here msgid "Your status here !" msgstr "המצב שלך כאן !" -#: ../cache/locales.php:335 +#: [status]updated msgid "Status updated" msgstr "מצב עודכן" -#: ../cache/locales.php:336 +#: [status]status msgid "Status" msgstr "מצב" -#: ../cache/locales.php:337 +#: [status]presence msgid "Presence" msgstr "נוכחות" -#: ../cache/locales.php:356 +#: [status]online +msgid "Online with Movim" +msgstr "" + +#: [publish]title msgid "Publish" msgstr "" -#: ../cache/locales.php:358 +#: [publish]attach +msgid "Add a file or a picture to your post" +msgstr "" + +#: [publish]no_publication msgid "You cannot publish a post on this Group" msgstr "" -#: ../cache/locales.php:359 -msgid "" -"Some fields have been filled in. Do you still want to go back and loose " -"their content?" +#: [publish]form_filled +msgid "Some fields have been filled in. Do you still want to go back and loose their content?" msgstr "" -#: ../cache/locales.php:360 +#: [public_groups]shared msgid "Shared" msgstr "משותף" -#: ../cache/locales.php:362 -#, php-format +#: [public_groups]added msgid "%s has been added to your public groups" msgstr "%s התווסף אל הקבוצה הפומבית שלך" -#: ../cache/locales.php:363 -#, php-format -msgid "%s has been removed from your public groups" -msgstr "%s הוסר/ה מן הקבוצות הפומביות שלך" - -#: ../cache/locales.php:364 +#: [rooms]add msgid "Add a chatroom" msgstr "הוסף חדר שיחה" -#: ../cache/locales.php:365 +#: [rooms]empty_text1 msgid "You don't have any chatroom yet." msgstr "" -#: ../cache/locales.php:366 +#: [rooms]empty_text2 msgid "Add one by clicking on the add button in the header." msgstr "" -#: ../cache/locales.php:367 +#: [chatrooms]title msgid "Chatrooms" msgstr "חדרי שיחה" -#: ../cache/locales.php:370 +#: [chatrooms]name_placeholder msgid "My Favorite Room" msgstr "החדר המועדף עליי" -#: ../cache/locales.php:374 -msgid "Remove a chatroom" -msgstr "הסר חדר שיחה" - -#: ../cache/locales.php:375 -msgid "" -"You are going to remove the following chatroom. Please confirm your action." -msgstr "" - -#: ../cache/locales.php:378 +#: [chatrooms]users msgid "Users in the room" msgstr "משתמשים בתוך החדר" -#: ../cache/locales.php:379 -msgid "Please enter a correct nickname (6 to 40 characters)" +#: [chatrooms]bad_nickname +msgid "Please enter a correct nickname (2 to 40 characters)" msgstr "" -#: ../cache/locales.php:381 +#: [room]anonymous_title msgid "Public chatroom" msgstr "" -#: ../cache/locales.php:382 +#: [room]no_room msgid "Please provide a room address" msgstr "" -#: ../cache/locales.php:383 +#: [room]anonymous_text1 msgid "You are currently logued as an anonymous user." msgstr "" -#: ../cache/locales.php:384 -msgid "" -"You can join using your own account or create one on the login page by " -"loging out using the cross in the top-right corner." +#: [room]anonymous_text2 +msgid "You can join using your own account or create one on the login page by loging out using the cross in the top-right corner." msgstr "" -#: ../cache/locales.php:385 -#, php-format +#: [room]anonymous_login msgid "Login on %s" msgstr "" -#: ../cache/locales.php:386 +#: [room]nick msgid "Your nickname" msgstr "" -#: ../cache/locales.php:387 +#: [roster]ungrouped msgid "Ungrouped" msgstr "ללא קבוצה" -#: ../cache/locales.php:388 +#: [roster]show_disconnected msgid "Show disconnected contacts" msgstr "הצג אנשי קשר לא מחוברים" -#: ../cache/locales.php:389 +#: [roster]hide_disconnected msgid "Hide disconnected contacts" msgstr "הסתר אנשי קשר לא מחוברים" -#: ../cache/locales.php:390 -#, php-format +#: [roster]show_group msgid "Show group %s" msgstr "הצג את קבוצה %s" -#: ../cache/locales.php:391 -#, php-format +#: [roster]hide_group msgid "Hide group %s" msgstr "הסתר את קבוצה %s" -#: ../cache/locales.php:392 +#: [roster]jid_error msgid "Please enter a valid Jabber ID" msgstr "אנא הזן מזהה Jabber תקף" -#: ../cache/locales.php:393 -msgid "" -"No contacts ? You can add one using the + button bellow or going to the " -"Explore page" -msgstr "" -"אין אנשי קשר ? באפשרותך להוסיף אחד באמצעות לחצן + מתחת או באמצעות מעבר אל " -"עמוד גלה" +#: [roster]no_contacts_title +#, fuzzy +msgid "No contacts ?" +msgstr "אנשי הקשר שלך" -#: ../cache/locales.php:394 +#: [roster]no_contacts_text +#, fuzzy +msgid "You can add one using the + button bellow" +msgstr "אין אנשי קשר ? באפשרותך להוסיף אחד באמצעות לחצן + מתחת או באמצעות מעבר אל עמוד גלה" + +#: [roster]show_hide msgid "Show/Hide" msgstr "הצג/הסתר" -#: ../cache/locales.php:395 +#: [roster]add_contact_info1 msgid "Enter the Jabber ID of your contact." msgstr "הזן מזהה Jabber של איש קשר." -#: ../cache/locales.php:396 +#: [roster]add_contact_info2 msgid "Press enter to validate." msgstr "לחץ Enter לשם וידוא" -#: ../cache/locales.php:397 +#: [roster]jid msgid "JID" msgstr "JID" -#: ../cache/locales.php:398 +#: [roster]results msgid "Results" msgstr "תוצאות" -#: ../cache/locales.php:399 +#: [roster]added msgid "Contact added" msgstr "איש קשר התווסף" -#: ../cache/locales.php:401 +#: [roster]deleted msgid "Contact deleted" msgstr "איש קשר נמחק" -#: ../cache/locales.php:403 +#: [roster]search +msgid "Search" +msgstr "חיפוש" + +#: [share]error msgid "This is not a valid url" msgstr "" -#: ../cache/locales.php:404 +#: [share]success msgid "Sharing the URL" msgstr "" -#: ../cache/locales.php:405 +#: [statistics]title msgid "Statistics" msgstr "סטטיסטיקה" -#: ../cache/locales.php:406 +#: [statistics]since msgid "Since" msgstr "מאז" -#: ../cache/locales.php:407 +#: [statistics]sessions msgid "Sessions" msgstr "הפעלות" -#: ../cache/locales.php:409 +#: [statistics]monthly_sub msgid "Monthly Subscriptions" msgstr "הרשמות חודשיות" -#: ../cache/locales.php:410 +#: [statistics]monthly_sub_cum msgid "Monthly Subscriptions Cumulated" msgstr "הרשמות חודשיות שהצטברו" -#: ../cache/locales.php:412 -msgid "" -"Movim is a decentralized social network, before creating a new account you " -"need to choose a server to register." -msgstr "" -"Movim הינה רשת חברתית מבוזרת (א-ריכוזית), טרם יצירת חשבון חדש עליך לבחור שרת " -"להירשם אליו." +#: [subscribe]info +msgid "Movim is a decentralized social network, before creating a new account you need to choose a server to register." +msgstr "Movim הינה רשת חברתית מבוזרת (א-ריכוזית), טרם יצירת חשבון חדש עליך לבחור שרת להירשם אליו." -#: ../cache/locales.php:413 +#: [subscribe]server_question msgid "Your server here ?" msgstr "שרתך כאן ?" -#: ../cache/locales.php:414 +#: [subscribe]server_contact msgid "Contact us to add yours to the officially supported servers list" msgstr "צור עמנו קשר כדי להוסיף את שלך אל רשימת השרתים אשר נתמכת באופן רשמי" -#: ../cache/locales.php:416 +#: [feed]nope msgid "No public feed for this contact" msgstr "אין ערוץ פומבי עבור איש קשר זה" -#: ../cache/locales.php:417 +#: [feed]nope_contact msgid "No contact specified" msgstr "לא צוין איש קשר" -#: ../cache/locales.php:418 ../cache/locales.php:473 +#: [upload]title +#, fuzzy +msgid "Upload a file" +msgstr "העלאה" + +#: [upload]choose +msgid "Choose a file to upload" +msgstr "" + +#: [vcard]title [page]profile msgid "Profile" msgstr "דיוקן" -#: ../cache/locales.php:419 +#: [vcard]updated msgid "Profile Updated" msgstr "דיוקן עודכן" -#: ../cache/locales.php:420 +#: [vcard]not_updated msgid "Profile Not Updated" msgstr "דיוקן לא מעודכן" -#: ../cache/locales.php:421 +#: [vcard]public msgid "Your profile is now public" msgstr "הדיוקן שלך הינו פומבי כעת" -#: ../cache/locales.php:422 +#: [vcard]restricted msgid "Your profile is now restricted" msgstr "הדיוקן שלך הינו מוגבל כעת" -#: ../cache/locales.php:436 +#: [general]nickname +#, fuzzy +msgctxt "[general]nickname" +msgid "Nickname" +msgstr "שם כינוי" + +#: [accounts]twitter msgid "Twitter" msgstr "Twitter" -#: ../cache/locales.php:437 +#: [accounts]skype msgid "Skype" msgstr "Skype" -#: ../cache/locales.php:438 +#: [accounts]yahoo msgid "Yahoo" msgstr "Yahoo" -#: ../cache/locales.php:439 +#: [accounts]accounts_nickname +#, fuzzy +msgctxt "[accounts]accounts_nickname" +msgid "Nickname" +msgstr "שם כינוי" + +#: [accounts]accounts_yahoo +#, fuzzy +msgid "Yahoo Account" +msgstr "חשבונות אחרים" + +#: [privacy]privacy_title msgid "Privacy Level" msgstr "רמת פרטיות" -#: ../cache/locales.php:440 +#: [privacy]privacy_question msgid "Is this profile public ?" msgstr "האם דיוקן זה הינו פומבי ?" -#: ../cache/locales.php:441 -msgid "" -"Please pay attention ! By making your profile public, all the information " -"listed above will be available for all the Movim users and on the whole " -"Internet." -msgstr "" -"לצומת לבך ! בהופכך את דיוקנך לפומבי, כל המידע שמנוי מעלה יהיה זמין לכל " -"המשתמשים של Movim וגם בכל המרשתת." +#: [privacy]privacy_info +msgid "Please pay attention ! By making your profile public, all the information listed above will be available for all the Movim users and on the whole Internet." +msgstr "לצומת לבך ! בהופכך את דיוקנך לפומבי, כל המידע שמנוי מעלה יהיה זמין לכל המשתמשים של Movim וגם בכל המרשתת." -#: ../cache/locales.php:442 -msgid "Call" -msgstr "צור קשר" +#: [save]submit [button]submit +msgid "Submit" +msgstr "שלח" -#: ../cache/locales.php:443 -msgid "Hang up" -msgstr "נתק" +#: [save]reset [button]reset +msgid "Reset" +msgstr "אפס" -#: ../cache/locales.php:444 -msgid "Connection" -msgstr "חיבור" - -#: ../cache/locales.php:445 ../cache/locales.php:451 +#: [visio]hung_up msgid "Hung up" msgstr "נותקה" -#: ../cache/locales.php:446 ../cache/locales.php:452 +#: [visio]busy msgid "Your contact is busy" msgstr "איש הקשר שלך הינו עסוק" -#: ../cache/locales.php:447 ../cache/locales.php:453 +#: [visio]declined msgid "Declined" msgstr "נדחתה" -#: ../cache/locales.php:448 ../cache/locales.php:454 -msgid "Remote application incompatible" -msgstr "יישום מרוחק לא תואם" - -#: ../cache/locales.php:450 ../cache/locales.php:456 +#: [visio]calling msgid "Is calling you" msgstr "מתקשר אליך" -#: ../cache/locales.php:457 +#: [visio]call +msgid "Call" +msgstr "צור קשר" + +#: [visio]hang_up +msgid "Hang up" +msgstr "נתק" + +#: [visio]connection +msgid "Connection" +msgstr "חיבור" + +#: [global]no_js msgid "You don't have javascript enabled. Good luck with that." -msgstr "" -"אין לך Javascript מאופשר. עליך לאפשר Javascript בכדי להשתמש באתר זה." +msgstr "אין לך Javascript מאופשר. עליך לאפשר Javascript בכדי להשתמש באתר זה." -#: ../cache/locales.php:458 -msgid "" -"Movim is a kickass distributed social networking platform that protect your " -"privacy an comes with a set of awesome features." -msgstr "" -"Movim היא פלטפורמת רשת חברתית מבוזרת אשר שומרת על הפרטיות שלך ומגיעה עם סט " -"של תכונות נהדרות." +#: [global]description +msgid "Movim is a kickass distributed social networking platform that protect your privacy an comes with a set of awesome features." +msgstr "Movim היא פלטפורמת רשת חברתית מבוזרת אשר שומרת על הפרטיות שלך ומגיעה עם סט של תכונות נהדרות." -#: ../cache/locales.php:459 +#: [page]administration msgid "Administration" msgstr "ניהול" -#: ../cache/locales.php:460 +#: [page]home msgid "Home" msgstr "בית" -#: ../cache/locales.php:461 +#: [page]discover msgid "Discover" msgstr "גלה" -#: ../cache/locales.php:462 +#: [page]explore msgid "Explore" msgstr "סייר" -#: ../cache/locales.php:463 +#: [page]account_creation msgid "Account Creation" msgstr "יצירת חשבון" -#: ../cache/locales.php:464 -msgid "News" -msgstr "חדשות" - -#: ../cache/locales.php:465 +#: [page]avatar msgid "Avatar" msgstr "אווטאר" -#: ../cache/locales.php:467 +#: [page]chats msgid "Chats" msgstr "שיחות" -#: ../cache/locales.php:470 +#: [page]server msgid "Server" msgstr "שרת" -#: ../cache/locales.php:471 +#: [page]public_groups msgid "Public Groups" msgstr "קבוצות פומביות" -#: ../cache/locales.php:472 +#: [page]viewer msgid "Viewer" msgstr "צופה" -#: ../cache/locales.php:474 +#: [page]media msgid "Media" msgstr "מדיה" -#: ../cache/locales.php:475 +#: [page]blog msgid "Blog" msgstr "בלוג" -#: ../cache/locales.php:476 +#: [page]about msgid "About" msgstr "אודות" -#: ../cache/locales.php:477 +#: [page]login msgid "Login" msgstr "כניסה" # הזנה -#: ../cache/locales.php:479 +#: [page]feed msgid "Feed" msgstr "ערוץ" -#: ../cache/locales.php:481 +#: [page]gallery msgid "Gallery" msgstr "גלריה" -#: ../cache/locales.php:483 +#: [page]visio msgid "Visio-conference" msgstr "ועידת וידאו" -#: ../cache/locales.php:484 +#: [page]pods msgid "Pods" msgstr "שרתים" -#: ../cache/locales.php:485 +#: [page]share msgid "Share" msgstr "" -#: ../cache/locales.php:486 +#: [page]room msgid "Room" msgstr "" -#: ../cache/locales.php:487 -#, php-format +#: [error]error msgid "Error: %s" msgstr "שגיאה: %s" -#: ../cache/locales.php:488 -#, php-format +#: [error]cannot_load_file msgid "Cannot load file '%s'" msgstr "לא ניתן לטעון קובץ '%s'" -#: ../cache/locales.php:489 -#, php-format +#: [error]route msgid "Route error, please set all the parameters for the page %s" msgstr "שגיאת ניתוב, אנא הגדר את כל הפרמטרים עבור העמוד %s" -#: ../cache/locales.php:490 -#, php-format +#: [error]widget_load_error msgid "Requested widget '%s' doesn't exist." msgstr "וידג׳ט מבוקש '%s' לא קיים." -#: ../cache/locales.php:491 -#, php-format +#: [error]widget_call_error msgid "Requested event '%s' not registered." msgstr "אירוע מבוקש '%s' לא רשום." -#: ../cache/locales.php:492 +#: [error]whoops msgid "Whoops!" msgstr "אופס!" -#: ../cache/locales.php:493 +#: [error]media_not_found msgid "It seem that you don't have any pictures here?" msgstr "נראה כי אין לך שום תמונה כאן?" -#: ../cache/locales.php:494 +#: [error]media_ask_upload msgid "You can try to upload a couple by going to the Media page" msgstr "" -#: ../cache/locales.php:495 -#, php-format +#: [title]about msgid "%s - About" msgstr "%s - אודות" -#: ../cache/locales.php:496 -#, php-format +#: [title]account msgid "%s - Account" msgstr "%s - חשבון" -#: ../cache/locales.php:497 -#, php-format +#: [title]administration msgid "%s - Administration Panel" msgstr "%s - לוח ניהול" -#: ../cache/locales.php:498 -#, php-format +#: [title]blog msgid "%s - Blog" msgstr "%s - בלוג" -#: ../cache/locales.php:499 -#, php-format +#: [title]configuration msgid "%s - Configuration" msgstr "‏‏%s - תצורה" -#: ../cache/locales.php:500 -#, php-format +#: [title]discover msgid "%s - Discover" msgstr "%s - לגלות" -#: ../cache/locales.php:501 -#, php-format +#: [title]explore msgid "%s - Explore" msgstr "%s - סייר" -#: ../cache/locales.php:502 -#, php-format +#: [title]help msgid "%s - Help Page" msgstr "‏‏%s - עמוד עזרה" -#: ../cache/locales.php:503 -#, php-format +#: [title]login msgid "%s - Login to Movim" msgstr "‏‏%s - התחברות אל Movim" -#: ../cache/locales.php:504 -#, php-format +#: [title]main msgid "%s - Welcome to Movim" msgstr "‏‏%s - ברוך בואך אל Movim" -#: ../cache/locales.php:505 -#, php-format +#: [title]media msgid "%s - Media" msgstr "%s - מדיה" -#: ../cache/locales.php:506 -#, php-format +#: [title]news msgid "%s - News" msgstr "%s - חדשות" -#: ../cache/locales.php:507 -#, php-format +#: [title]node_configuration msgid "%s - Group Configuration" msgstr "%s - תצורת קבוצה" -#: ../cache/locales.php:508 -#, php-format +#: [title]node msgid "%s - Group" msgstr "%s - קבוצה" -#: ../cache/locales.php:509 -#, php-format +#: [title]not_found msgid "%s - 404" msgstr "" -#: ../cache/locales.php:510 -#, php-format +#: [title]profile msgid "%s - Profile" msgstr "‏‏%s - דיוקן" -#: ../cache/locales.php:511 -#, php-format +#: [title]server msgid "%s - Server" msgstr "%s - שרת" -#: ../cache/locales.php:512 +#: [button]validate msgid "Validate" msgstr "מתן תוקף" -#: ../cache/locales.php:513 +#: [button]refresh msgid "Refresh" msgstr "רענן" -#: ../cache/locales.php:514 +#: [button]add msgid "Add" msgstr "הוסף" -#: ../cache/locales.php:515 +#: [button]delete msgid "Delete" msgstr "מחק" -#: ../cache/locales.php:516 -msgid "Remove" -msgstr "הסר" - -#: ../cache/locales.php:517 +#: [button]cancel msgid "Cancel" msgstr "ביטול" -#: ../cache/locales.php:518 +#: [button]close msgid "Close" msgstr "סגור" -#: ../cache/locales.php:519 +#: [button]update msgid "Update" msgstr "עדכן" -#: ../cache/locales.php:520 +#: [button]updating msgid "Updating" msgstr "מעדכן כעת" -#: ../cache/locales.php:521 -msgid "Submit" -msgstr "שלח" - -#: ../cache/locales.php:522 +#: [button]submitting msgid "Submitting" msgstr "שולח כעת" -#: ../cache/locales.php:523 -msgid "Reset" -msgstr "אפס" - -#: ../cache/locales.php:524 +#: [button]register msgid "Register" msgstr "הירשם" -#: ../cache/locales.php:525 +#: [button]unregister msgid "Unregister" msgstr "בטל רישום" -#: ../cache/locales.php:526 +#: [button]save msgid "Save" msgstr "שמור" -#: ../cache/locales.php:527 +#: [button]clear msgid "Clear" msgstr "טהר" -#: ../cache/locales.php:528 +#: [button]upload msgid "Upload" msgstr "העלאה" # היכנסו פנימה! # היכנס/י -#: ../cache/locales.php:529 +#: [button]come_in msgid "Come in!" msgstr "כניסה!" -#: ../cache/locales.php:530 +#: [button]connecting msgid "Connecting" msgstr "כעת מתחבר" -#: ../cache/locales.php:531 +#: [button]bool_yes msgid "Yes" msgstr "כן" -#: ../cache/locales.php:532 +#: [button]bool_no msgid "No" msgstr "לא" -#: ../cache/locales.php:534 +#: [button]return msgid "Return" msgstr "חזור" -#: ../cache/locales.php:535 +#: [button]accept msgid "Accept" msgstr "קבלה" -#: ../cache/locales.php:536 +#: [button]refuse msgid "Refuse" msgstr "" -#: ../cache/locales.php:537 +#: [button]next msgid "Next" msgstr "" -#: ../cache/locales.php:538 +#: [button]previous msgid "Previous" msgstr "" -#: ../cache/locales.php:539 -#, php-format +#: [step]step msgid "Step %s" msgstr "צעד %s" -#: ../cache/locales.php:542 +#: [day]title msgid "Day" msgstr "יום" -#: ../cache/locales.php:543 +#: [day]monday msgid "Monday" msgstr "יום שני" -#: ../cache/locales.php:544 +#: [day]tuesday msgid "Tuesday" msgstr "יום שלישי" -#: ../cache/locales.php:545 +#: [day]wednesday msgid "Wednesday" msgstr "יום רביעי" -#: ../cache/locales.php:546 +#: [day]thursday msgid "Thursday" msgstr "יום חמישי" -#: ../cache/locales.php:547 +#: [day]friday msgid "Friday" msgstr "יום שישי" -#: ../cache/locales.php:548 +#: [day]saturday msgid "Saturday" msgstr "יום שבת" -#: ../cache/locales.php:549 +#: [day]sunday msgid "Sunday" msgstr "יום ראשון" # אין -#: ../cache/locales.php:550 ../cache/locales.php:559 +#: [gender]nil +#, fuzzy +msgctxt "[gender]nil" msgid "None" msgstr "ללא" -#: ../cache/locales.php:551 +#: [gender]male msgid "Male" msgstr "זכר" -#: ../cache/locales.php:552 +#: [gender]female msgid "Female" msgstr "נקבה" -#: ../cache/locales.php:553 +#: [gender]other msgid "Other" msgstr "אחר" -#: ../cache/locales.php:554 +#: [client]bot msgid "Bot" msgstr "בוט" -#: ../cache/locales.php:555 +#: [client]desktop msgid "Desktop" msgstr "שולחן עבודה" -#: ../cache/locales.php:556 +#: [client]phone msgid "Phone" msgstr "טלפון" -#: ../cache/locales.php:557 +#: [client]web msgid "Web" msgstr "רשת" -#: ../cache/locales.php:558 +#: [client]registered msgid "Registered" msgstr "רשום" -#: ../cache/locales.php:560 +# אין +#: [marital]nil +#, fuzzy +msgctxt "[marital]nil" +msgid "None" +msgstr "ללא" + +#: [marital]single msgid "Single" msgstr "רווק/ה" -#: ../cache/locales.php:561 +#: [marital]relationship msgid "In a relationship" msgstr "במערכת יחסים" -#: ../cache/locales.php:562 +#: [marital]married msgid "Married" msgstr "נישואים" -#: ../cache/locales.php:563 +#: [marital]divorced msgid "Divorced" msgstr "גרוש/ה" -#: ../cache/locales.php:564 +#: [marital]widowed msgid "Widowed" msgstr "אלמן/ה" -#: ../cache/locales.php:565 +#: [marital]cohabiting msgid "Cohabiting" msgstr "חיים במשותף" # שותפות אזרחית -#: ../cache/locales.php:566 +#: [marital]union msgid "Civil Union" msgstr "נישואים אזרחיים" -#: ../cache/locales.php:567 +#: [flag]white msgid "Not shared" msgstr "לא שותף" -#: ../cache/locales.php:568 +#: [flag]green msgid "Shared with one contact" msgstr "שותף עם איש קשר אחד" -#: ../cache/locales.php:569 +#: [flag]orange msgid "Shared with all contacts" msgstr "שותף עם כל אנשי הקשר" -#: ../cache/locales.php:570 +#: [flag]red msgid "Shared with the XMPP network" msgstr "שותף עם רשת התקשורת XMPP" -#: ../cache/locales.php:571 +#: [flag]black msgid "Shared with the whole Internet" msgstr "שותף עם כל המרשתת" -#: ../cache/locales.php:572 +#: [presence]online msgid "Online" msgstr "מקוון" -#: ../cache/locales.php:573 +#: [presence]away msgid "Away" msgstr "נעדר" -#: ../cache/locales.php:574 +#: [presence]dnd msgid "Do Not Disturb" msgstr "נא לא להפריע" -#: ../cache/locales.php:575 +#: [presence]xa msgid "Extended Away" msgstr "לא זמין" -#: ../cache/locales.php:576 +#: [presence]offline msgid "Offline" msgstr "לא מקוון" -#: ../cache/locales.php:577 +#: [presence]error msgid "Error" msgstr "שגיאה" -#: ../cache/locales.php:578 +#: [mood]afraid msgid "afraid" msgstr "מפחד" -#: ../cache/locales.php:579 +#: [mood]amazed msgid "amazed" msgstr "נדהם" -#: ../cache/locales.php:580 +#: [mood]amorous msgid "amorous" msgstr "חושק" -#: ../cache/locales.php:581 +#: [mood]angry msgid "angry" msgstr "כועס" -#: ../cache/locales.php:582 +#: [mood]annoyed msgid "annoyed" msgstr "נרגז" -#: ../cache/locales.php:583 +#: [mood]anxious msgid "anxious" msgstr "חרד" -#: ../cache/locales.php:584 +#: [mood]aroused msgid "aroused" msgstr "מרוגש" -#: ../cache/locales.php:585 +#: [mood]ashamed msgid "ashamed" msgstr "מתבייש" -#: ../cache/locales.php:586 +#: [mood]bored msgid "bored" msgstr "משועמם" -#: ../cache/locales.php:587 +#: [mood]brave msgid "brave" msgstr "אמיץ" -#: ../cache/locales.php:588 +#: [mood]calm msgid "calm" msgstr "רגוע" -#: ../cache/locales.php:589 +#: [mood]cautious msgid "cautious" msgstr "זהיר" -#: ../cache/locales.php:590 +#: [mood]cold msgid "cold" msgstr "קר" -#: ../cache/locales.php:591 +#: [mood]confident msgid "confident" msgstr "סמוך" -#: ../cache/locales.php:592 +#: [mood]confused msgid "confused" msgstr "מבולבל" -#: ../cache/locales.php:593 +#: [mood]contemplative msgid "contemplative" msgstr "ספקולטיבי" -#: ../cache/locales.php:594 +#: [mood]contented msgid "contented" msgstr "מסופק" -#: ../cache/locales.php:595 +#: [mood]cranky msgid "cranky" msgstr "נרגז" -#: ../cache/locales.php:596 +#: [mood]crazy msgid "crazy" msgstr "מטורף" -#: ../cache/locales.php:597 +#: [mood]creative msgid "creative" msgstr "יצירתי" -#: ../cache/locales.php:598 +#: [mood]curious msgid "curious" msgstr "סקרן" -#: ../cache/locales.php:599 +#: [mood]dejected msgid "dejected" msgstr "מיואש" -#: ../cache/locales.php:600 +#: [mood]depressed msgid "depressed" msgstr "מדוכא" -#: ../cache/locales.php:601 +#: [mood]disappointed msgid "disappointed" msgstr "מאוכזב" -#: ../cache/locales.php:602 +#: [mood]disgusted msgid "disgusted" msgstr "נגעל" -#: ../cache/locales.php:603 +#: [mood]dismayed msgid "dismayed" msgstr "נחרד" -#: ../cache/locales.php:604 +#: [mood]distracted msgid "distracted" msgstr "טרוד" -#: ../cache/locales.php:605 +#: [mood]embarrassed msgid "embarrassed" msgstr "נבוך" -#: ../cache/locales.php:606 +#: [mood]envious msgid "envious" msgstr "מקנא" -#: ../cache/locales.php:607 +#: [mood]excited msgid "excited" msgstr "נרגש" -#: ../cache/locales.php:608 +#: [mood]flirtatious msgid "flirtatious" msgstr "פלרטטני" -#: ../cache/locales.php:609 +#: [mood]frustated msgid "frustated" msgstr "מתוסכל" -#: ../cache/locales.php:610 +#: [mood]grateful msgid "grateful" msgstr "נעים" -#: ../cache/locales.php:611 +#: [mood]grieving msgid "grieving" msgstr "מתאבל" -#: ../cache/locales.php:612 +#: [mood]grumpy msgid "grumpy" msgstr "זועף" -#: ../cache/locales.php:613 +#: [mood]guilty msgid "guilty" msgstr "אשם" -#: ../cache/locales.php:614 +#: [mood]happy msgid "happy" msgstr "שמח" -#: ../cache/locales.php:615 +#: [mood]hopeful msgid "hopeful" msgstr "אופטימי" -#: ../cache/locales.php:616 +#: [mood]hot msgid "hot" msgstr "לוהט" -#: ../cache/locales.php:617 +#: [mood]humbled msgid "humbled" msgstr "מוכנע" -#: ../cache/locales.php:618 +#: [mood]humiliated msgid "humiliated" msgstr "מושפל" -#: ../cache/locales.php:619 +#: [mood]hungry msgid "hungry" msgstr "רעב" -#: ../cache/locales.php:620 +#: [mood]hurt msgid "hurt" msgstr "פגוע" -#: ../cache/locales.php:621 +#: [mood]impressed msgid "impressed" msgstr "מתפעל" -#: ../cache/locales.php:622 +#: [mood]in_awe msgid "in awe" msgstr "מפוחד" -#: ../cache/locales.php:623 +#: [mood]in_love msgid "in love" msgstr "מאוהב" -#: ../cache/locales.php:624 +#: [mood]indignant msgid "indignant" msgstr "ממורמר" -#: ../cache/locales.php:625 +#: [mood]interested msgid "interested" msgstr "מתעניין" -#: ../cache/locales.php:626 +#: [mood]intoxicated msgid "intoxicated" msgstr "שיכור" -#: ../cache/locales.php:627 +#: [mood]invincible msgid "invincible" msgstr "בלתי מנוצח" -#: ../cache/locales.php:628 +#: [mood]jealous msgid "jealous" msgstr "מקנא" -#: ../cache/locales.php:629 +#: [mood]lonely msgid "lonely" msgstr "בודד" -#: ../cache/locales.php:630 +#: [mood]lost msgid "lost" msgstr "אבוד" -#: ../cache/locales.php:631 +#: [mood]lucky msgid "lucky" msgstr "בר מזל" -#: ../cache/locales.php:632 +#: [mood]mean msgid "mean" msgstr "דל" -#: ../cache/locales.php:633 +#: [mood]moody msgid "moody" msgstr "מדוכדך" -#: ../cache/locales.php:634 +#: [mood]nervous msgid "nervous" msgstr "עצבני" -#: ../cache/locales.php:635 +#: [mood]neutral msgid "neutral" msgstr "אדיש" -#: ../cache/locales.php:636 +#: [mood]offended msgid "offended" msgstr "נעלב" -#: ../cache/locales.php:637 +#: [mood]outraged msgid "outraged" msgstr "מזועזע" -#: ../cache/locales.php:638 +#: [mood]playful msgid "playful" msgstr "שובב" -#: ../cache/locales.php:639 +#: [mood]proud msgid "proud" msgstr "יהיר" -#: ../cache/locales.php:640 +#: [mood]relaxed msgid "relaxed" msgstr "רגוע" -#: ../cache/locales.php:641 +#: [mood]relieved msgid "relieved" msgstr "משוחרר" -#: ../cache/locales.php:642 -msgid "remorseful" -msgstr "מתייסר" - -#: ../cache/locales.php:643 +#: [mood]restless msgid "restless" msgstr "חסר מנוחה" -#: ../cache/locales.php:644 +#: [mood]sad msgid "sad" msgstr "עצוב" -#: ../cache/locales.php:645 +#: [mood]sarcastic msgid "sarcastic" msgstr "עוקצני" -#: ../cache/locales.php:646 +#: [mood]satisfied msgid "satisfied" msgstr "מרוצה" -#: ../cache/locales.php:647 +#: [mood]serious msgid "serious" msgstr "רציני" -#: ../cache/locales.php:648 +#: [mood]shocked msgid "shocked" msgstr "הלום" -#: ../cache/locales.php:649 +#: [mood]shy msgid "shy" msgstr "ביישן" -#: ../cache/locales.php:650 +#: [mood]sick msgid "sick" msgstr "חולה" -#: ../cache/locales.php:651 +#: [mood]sleepy msgid "sleepy" msgstr "ישנוני" -#: ../cache/locales.php:652 +#: [mood]spontaneous msgid "spontaneous" msgstr "ספונטני" -#: ../cache/locales.php:653 +#: [mood]stressed msgid "stressed" msgstr "לחוץ" -#: ../cache/locales.php:654 +#: [mood]strong msgid "strong" msgstr "חזק" -#: ../cache/locales.php:655 +#: [mood]surprised msgid "surprised" msgstr "מופתע" -#: ../cache/locales.php:656 +#: [mood]thankful msgid "thankful" msgstr "אסיר תודה" -#: ../cache/locales.php:657 +#: [mood]thirsty msgid "thirsty" msgstr "צמא" -#: ../cache/locales.php:658 +#: [mood]tired msgid "tired" msgstr "עייף" -#: ../cache/locales.php:659 +#: [mood]undefined msgid "undefined" msgstr "מעורפל" -#: ../cache/locales.php:660 +#: [mood]weak msgid "weak" msgstr "חלש" -#: ../cache/locales.php:661 +#: [mood]worried msgid "worried" msgstr "מודאג" -#: ../cache/locales.php:662 +#: [month]title msgid "Month" msgstr "חודש" -#: ../cache/locales.php:663 +#: [month]january msgid "January" msgstr "ינואר" -#: ../cache/locales.php:664 +#: [month]february msgid "February" msgstr "פברואר" -#: ../cache/locales.php:665 +#: [month]march msgid "March" msgstr "מרץ" -#: ../cache/locales.php:666 +#: [month]april msgid "April" msgstr "אפריל" -#: ../cache/locales.php:667 +#: [month]may msgid "May" msgstr "מאי" -#: ../cache/locales.php:668 +#: [month]june msgid "June" msgstr "יוני" -#: ../cache/locales.php:669 +#: [month]july msgid "July" msgstr "יולי" -#: ../cache/locales.php:670 +#: [month]august msgid "August" msgstr "אוגוסט" -#: ../cache/locales.php:671 +#: [month]september msgid "September" msgstr "ספטמבר" -#: ../cache/locales.php:672 +#: [month]october msgid "October" msgstr "אוקטובר" -#: ../cache/locales.php:673 +#: [month]november msgid "November" msgstr "נובמבר" -#: ../cache/locales.php:674 +#: [month]december msgid "December" msgstr "דצמבר" -#: ../cache/locales.php:675 +#: [year]title msgid "Year" msgstr "שנה" -#: ../cache/locales.php:676 +#: [date]today msgid "Today" msgstr "היום" -#: ../cache/locales.php:677 +#: [date]tomorrow msgid "Tomorrow" msgstr "מחר" -#: ../cache/locales.php:678 +#: [date]yesterday msgid "Yesterday" msgstr "אתמול" -#: ../cache/locales.php:679 -#, php-format -msgid " %d days ago" +#: [date]ago +#, fuzzy +msgid "%d days ago" msgstr " לפני %d ימים" -#: ../cache/locales.php:680 +#: [date]day msgid "day" msgstr "יום" -#: ../cache/locales.php:682 +#: [post]whats_new msgid "What's new ?" msgstr "מה חדש ?" -#: ../cache/locales.php:683 +#: [post]place msgid "Place" msgstr "מיקום" -#: ../cache/locales.php:684 +#: [post]by msgid "by" msgstr "על ידי" -#: ../cache/locales.php:685 +#: [post]geolocalisation msgid "Geolocalisation" msgstr "" -#: ../cache/locales.php:686 +#: [post]email msgid "email" msgstr "דוא״ל" -#: ../cache/locales.php:688 +#: [post]no_comments msgid "No comments yet" msgstr "" -#: ../cache/locales.php:689 +#: [post]no_comments_stream msgid "No comments stream" msgstr "אין זרם תגובות" -#: ../cache/locales.php:690 +#: [post]no_load msgid "Your feed cannot be loaded." msgstr "ערוצך לא יכול להיטען." -#: ../cache/locales.php:691 +#: [post]older msgid "Get older posts" msgstr "השג רשומות נושנות" -#: ../cache/locales.php:692 -#, php-format +#: [post]new_items msgid "%s new items" msgstr "%s פריטים חדשים" -#: ../cache/locales.php:693 +#: [post]comment_error msgid "Comment publication error" msgstr "שגיאת פרסום תגובה" -#: ../cache/locales.php:694 +#: [post]comments_older msgid "Show the older comments" msgstr "הצג את התגובות הישנות יותר" -#: ../cache/locales.php:695 -msgid "Loading comments ..." +#: [post]comments_loading +#, fuzzy +msgid "Loading comments..." msgstr "כעת טוען תגובות ..." -#: ../cache/locales.php:696 +#: [post]comments_get msgid "Get the comments" msgstr "השג תגובות" -#: ../cache/locales.php:697 +#: [post]comment_add msgid "Add a comment" msgstr "הוסף תגובה" -#: ../cache/locales.php:698 +#: [post]share msgid "Share with" msgstr "שתף בעזרת" -#: ../cache/locales.php:699 +#: [post]share_everyone msgid "Everyone" msgstr "כולם" -#: ../cache/locales.php:700 +#: [post]share_your_contacts msgid "Your contacts" msgstr "אנשי הקשר שלך" -#: ../cache/locales.php:702 +#: [post]updated msgid "Updated" msgstr "עודכן" -#: ../cache/locales.php:703 +#: [post]content_not_found msgid "Content not found" msgstr "תוכן לא נמצא" -#: ../cache/locales.php:704 +#: [post]default_title msgid "Contact publication" msgstr "פרסום איש קשר" -#: ../cache/locales.php:705 +#: [post]comments msgid "Comments" msgstr "" -#: ../cache/locales.php:706 +#: [api]error msgid "The API is not reachable, try again later" msgstr "API אינו נגיש, נסה שוב מאוחר יותר" -#: ../cache/locales.php:707 +#: [field]type_here msgid "Type here" msgstr "" +#~ msgid "Environment" +#~ msgstr "סביבה" + +#~ msgid "You can login with Facebook (chat only) using %syour.id@chat.facebook.com%s and your password" +#~ msgstr "באפשרותך להתחבר עם Facebook (צ׳אט בלבד) באמצעות %syour.id@chat.facebook.com%s וסיסמה" + +#~ msgid "%sGmail accounts are also compatible%s but are not fully supported" +#~ msgstr "%sחשבונות Gmail מתאימים גם כן%s אך אינם נתמכים באופן מלא" + +#~ msgid "You can login using your favorite Jabber account" +#~ msgstr "באפשרותך להתחבר באמצעות חשבון Jabber המועדף עליך" + +#~ msgid "or with our demonstration account" +#~ msgstr "או בעזרת חשבון ניסיון שלנו" + +#~ msgid "%s has been removed from your public groups" +#~ msgstr "%s הוסר/ה מן הקבוצות הפומביות שלך" + +#~ msgid "Remove a chatroom" +#~ msgstr "הסר חדר שיחה" + +#~ msgid "Remote application incompatible" +#~ msgstr "יישום מרוחק לא תואם" + +#~ msgid "Remove" +#~ msgstr "הסר" + +#~ msgid "remorseful" +#~ msgstr "מתייסר" + #~ msgid "Actual version : " #~ msgstr "גרסה ממשית : " #~ msgid "Update your PHP version or contact your server administrator" #~ msgstr "נא לעדכן גרסת PHP או ליצור קשר עם מנהל שרתך" -#, php-format #~ msgid "Install %s and %s packages" #~ msgstr "התקנת %s וגם חבילות %s" -#, php-format #~ msgid "Install the %s package" #~ msgstr "התקנת החבילה %s" @@ -2638,23 +2794,18 @@ msgstr "" #~ msgid "or" #~ msgstr "או" -#, php-format #~ msgid "Bosh connection failed with error '%s'" #~ msgstr "חיבור Bosh נכשל עם שגיאה '%s'" -#, php-format #~ msgid "XMPP connection through Bosh failed with error '%s'" #~ msgstr "חיבור XMPP דרך Bosh נכשל עם שגיאה '%s'" -#, php-format #~ msgid "Couldn't create directory '%s'." #~ msgstr "לא ניתן ליצור מדור '%s'." -#, php-format #~ msgid "Couldn't create configuration file '%s'." #~ msgstr "לא ניתן ליצור קובץ תצורה '%s'." -#, php-format #~ msgid "Database connection failed with error '%s'" #~ msgstr "חיבור מסד נתונים נכשל עם שגיאה '%s'" @@ -2669,14 +2820,10 @@ msgstr "" #~ msgid "Compatibility Test" #~ msgstr "בדיקת תאימות" -#~ msgid "" -#~ "The following requirements were not met. Please make sure they are all " -#~ "satisfied in order to install Movim." +#~ msgid "The following requirements were not met. Please make sure they are all satisfied in order to install Movim." #~ msgstr "הדרישות הבאות לא סופקו. נא לוודא שכולן מסופקות בכדי להתקין את Movim." -#~ msgid "" -#~ "Some errors were detected. Please correct them for the installation to " -#~ "proceed." +#~ msgid "Some errors were detected. Please correct them for the installation to proceed." #~ msgstr "אותרו שגיאות מסוימות. נא לתקנן למען המשך ההתקנה." #~ msgid "XMPP Connection Preferences" @@ -2703,15 +2850,12 @@ msgstr "" #~ msgid "JID not provided." #~ msgstr "לא סופקה כתובת JID." -#, php-format #~ msgid "jid '%s' is incorrect" #~ msgstr "כתובת jid ‫'%s' שגויה" -#, php-format #~ msgid "%s - Account Creation" #~ msgstr "‏‏%s - יצירת חשבון" -#, php-format #~ msgid "%s - Add An Account" #~ msgstr "‏‏%s - הוספת חשבון" @@ -2771,12 +2915,8 @@ msgstr "" #~ msgid "What is Movim?" #~ msgstr "מהי Movim?" -#~ msgid "" -#~ "Some features are missing/I can't do everything I used to do on other social " -#~ "networks" -#~ msgstr "" -#~ "קיימות תכונות מסוימות שהינן חסרות/אין ביכולתי לעשות כל מה שנהגתי לעשות " -#~ "ברשתות חברתיות אחרות" +#~ msgid "Some features are missing/I can't do everything I used to do on other social networks" +#~ msgstr "קיימות תכונות מסוימות שהינן חסרות/אין ביכולתי לעשות כל מה שנהגתי לעשות ברשתות חברתיות אחרות" #~ msgid "The current BOSH URL in invalid" #~ msgstr "כתובת BOSH URL נוכחית הינה שגויה" @@ -2784,10 +2924,6 @@ msgstr "" #~ msgid "Connecting..." #~ msgstr "מתחבר כעת..." -#, php-format -#~ msgid "This server hosts %s accounts" -#~ msgstr "שרת זה מארח %s חשבונות" - #~ msgid "Debug console" #~ msgstr "מסוף ניפוי שגיאות" @@ -2808,49 +2944,35 @@ msgstr "" #~ msgid "PHP version mismatch. Movim requires PHP 5.3 minimum." #~ msgstr "גרסת PHP לא תואמת. Movim מצריכה PHP 5.3 לפחות." -#, php-format #~ msgid "Movim requires the %s extension." #~ msgstr "‫Movim מצריכה את ההרחבות %s." # בטרם ברצונך ליהנות # רשת העבודה החברתית -#~ msgid "" -#~ "Before you enjoy your social network, a few adjustements are required." +#~ msgid "Before you enjoy your social network, a few adjustements are required." #~ msgstr "לפני שיהיה ביכולתך ליהנות מן הרשת החברתית שלך, נדרשות התאמות מספר." # בכוח potentially # אפשרי שהשימוש בה עלול לסכן # handle (manage, touch)? -#~ msgid "" -#~ "Keep in mind that Movim is still under development and will handle many " -#~ "personal details. Its use can potentially endanger your data. Always pay " -#~ "attention to information that you submit." -#~ msgstr "" -#~ "לצומת לבך, Movim עדיין מצויה תחת פיתוח ותטפל בפרטים אישיים רבים. השימוש בה " -#~ "עלול, באופן פוטנציאלי, לסכן את המידע שלך. יש להסב תמיד תשומת לב ולהבחין " -#~ "במידע שנשלח על ידך." +#~ msgid "Keep in mind that Movim is still under development and will handle many personal details. Its use can potentially endanger your data. Always pay attention to information that you submit." +#~ msgstr "לצומת לבך, Movim עדיין מצויה תחת פיתוח ותטפל בפרטים אישיים רבים. השימוש בה עלול, באופן פוטנציאלי, לסכן את המידע שלך. יש להסב תמיד תשומת לב ולהבחין במידע שנשלח על ידך." #~ msgid "Database Movim schema installed" #~ msgstr "סכימת מסד נתונים Movim מותקנת" # אלמנט -#, php-format #~ msgid "Cannot load element value '%s'" #~ msgstr "לא ניתן לטעון ערך יסוד '%s'" -#, php-format #~ msgid "Cannot open log file '%s'" #~ msgstr "לא ניתן לפתוח קובץ רשומת יומן '%s'" #~ msgid "Wrong ID" #~ msgstr "‏ID שגויה" -#~ msgid "" -#~ "Firstly fill in this blank with a brand new account ID, this address will " -#~ "follow you on all the Movim network !" -#~ msgstr "" -#~ "ראשית נא למלא את חלל זה עם ID חדשה לגמרי, כתובת זו תעקוב אחריך לכל אורך רשת " -#~ "Movim !" +#~ msgid "Firstly fill in this blank with a brand new account ID, this address will follow you on all the Movim network !" +#~ msgstr "ראשית נא למלא את חלל זה עם ID חדשה לגמרי, כתובת זו תעקוב אחריך לכל אורך רשת Movim !" #~ msgid "Only alphanumerics elements are authorized" #~ msgstr "יסודות אלפא-נומריות בלבד מותרות" @@ -2861,16 +2983,9 @@ msgstr "" # typo X2 to the to the # Go to the %s to the Frequently Asked Questions %s # Go to the %s Frequently Asked Questions %s -#, php-format -#~ msgid "" -#~ "Go to the %s to the Frequently Asked Questions %s or come ask your question " -#~ "on the official chatroom %s or via our mailing-list (%s see the dedicated " -#~ "page %s)." -#~ msgstr "" -#~ "עברו אל %s שאלות ותשובות נפוצות %s או לחלופין ניתן לגשת ולשאול את שאלתך בחדר " -#~ "השיחה הרשמי %s או באמצעות רשימת הדיוור שלנו (%s ראו את העמוד המוקצה לכך %s)." +#~ msgid "Go to the %s to the Frequently Asked Questions %s or come ask your question on the official chatroom %s or via our mailing-list (%s see the dedicated page %s)." +#~ msgstr "עברו אל %s שאלות ותשובות נפוצות %s או לחלופין ניתן לגשת ולשאול את שאלתך בחדר השיחה הרשמי %s או באמצעות רשימת הדיוור שלנו (%s ראו את העמוד המוקצה לכך %s)." -#, php-format #~ msgid "Contacts (%s)" #~ msgstr "אישי־קשר (%s)" @@ -2886,7 +3001,6 @@ msgstr "" #~ msgstr "ערוץ איש־קשר נטען כעת ..." # you can replace the word instance with "server", "pod" -#, php-format #~ msgid "You can now access your shiny Movim instance %sJump In !%s" #~ msgstr "כעת ביכולתך לגשת אל שרת ה־Movim המבריק שלך %sזנק/י פנימה !%s" @@ -2896,20 +3010,14 @@ msgstr "" #~ msgid "Link my current account" #~ msgstr "קישור אל חשבוני הנוכחי" -#, php-format #~ msgid "Please remove the %s folder in order to complete the installation" #~ msgstr "נא להסיר את התיקייה ‭%s‬ כדי לסיים את ההתקנה" #~ msgid "I can't find the answer to my question here" #~ msgstr "אין ביכולתי למצוא את התשובה לשאלתי כאן" -#, php-format -#~ msgid "" -#~ "Visit the page %s What is Movim ? %s to know more about the project, its " -#~ "aims and understand how it works." -#~ msgstr "" -#~ "ניתן לבקר בעמוד %s מה זה Movim ? %s כדי לדעת עוד אודות הפרויקט, מטרותיו וגם " -#~ "כדי להבין כיצד הוא פועל." +#~ msgid "Visit the page %s What is Movim ? %s to know more about the project, its aims and understand how it works." +#~ msgstr "ניתן לבקר בעמוד %s מה זה Movim ? %s כדי לדעת עוד אודות הפרויקט, מטרותיו וגם כדי להבין כיצד הוא פועל." #~ msgid "empty" #~ msgstr "ריק" @@ -2938,28 +3046,14 @@ msgstr "" #~ msgid "Create my vCard" #~ msgstr "צור vCard" -#, php-format -#~ msgid "" -#~ "Although Movim is evolving fast, many (many) features are missing. Be " -#~ "patient ;). You can have a look %s at next versions's roadmaps %s to know if " -#~ "the one you want is on its way." -#~ msgstr "" -#~ "אף על פי שהפלטפורמה Movim מתפתחת מהר, המון (המון) תכונות חסרות. עליך להיעזר " -#~ "בסבלנות ;). באפשרותך להגניב הצצה %s במפות הדרכים של הגרסא הבאה %s כדי לדעת " -#~ "אם התכונה שרצונך בה כבר בדרך." +#~ msgid "Although Movim is evolving fast, many (many) features are missing. Be patient ;). You can have a look %s at next versions's roadmaps %s to know if the one you want is on its way." +#~ msgstr "אף על פי שהפלטפורמה Movim מתפתחת מהר, המון (המון) תכונות חסרות. עליך להיעזר בסבלנות ;). באפשרותך להגניב הצצה %s במפות הדרכים של הגרסא הבאה %s כדי לדעת אם התכונה שרצונך בה כבר בדרך." -#, php-format -#~ msgid "" -#~ "Don't forget that Movim is an open source project, a helping hand is always " -#~ "welcome (see %s Can I participate %s)" -#~ msgstr "" -#~ "נא לא לשכוח שהפלטפורמה Movim הינה פרויקט קוד פתוח, סיוע תמיד יתקבל באהדה " -#~ "(ראו %s האם באפשרותי להשתתף %s)" +#~ msgid "Don't forget that Movim is an open source project, a helping hand is always welcome (see %s Can I participate %s)" +#~ msgstr "נא לא לשכוח שהפלטפורמה Movim הינה פרויקט קוד פתוח, סיוע תמיד יתקבל באהדה (ראו %s האם באפשרותי להשתתף %s)" #~ msgid "My Posts" #~ msgstr "הפרסומים שלי" -#~ msgid "" -#~ "Your server doesn't support post publication, you can only read contact's " -#~ "feeds" +#~ msgid "Your server doesn't support post publication, you can only read contact's feeds" #~ msgstr "השרת שלך לא תומך בפרסום רשומות, באפשרותך לקרוא ערוצי איש קשר בלבד" diff --git a/sources/locales/hr.po b/sources/locales/hr.po index 89fef26..338b823 100644 --- a/sources/locales/hr.po +++ b/sources/locales/hr.po @@ -3,2583 +3,2696 @@ # This file is distributed under the same license as the movim package. # FIRST AUTHOR , 2014. # +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/About/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Account/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AccountNext/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AdHoc/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AdminDB/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AdminMain/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AdminTest/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Api/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Avatar/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Blog/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Bookmark/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Chat/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Chats/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/ConfigData/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Config/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Contact/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Group/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Groups/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Header/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Hello/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Help/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Init/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Location/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/LoginAnonymous/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Login/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Menu/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/NodeAffiliations/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/NodeSubscriptions/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Notifs/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Post/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Presence/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Publish/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/PubsubSubscriptionConfig/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Rooms/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Roster/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Share/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Statistics/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Subscribe/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Syndication/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Upload/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Vcard4/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/VisioExt/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Visio/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../locales/locales.ini msgid "" msgstr "" "Project-Id-Version: movim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-06-08 22:06+0200\n" +"POT-Creation-Date: 2015-08-20 15:17+0200\n" "PO-Revision-Date: 2014-06-22 14:34+0000\n" "Last-Translator: Martina \n" "Language-Team: Croatian \n" +"Language: hr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2015-06-18 21:08+0000\n" "X-Generator: Launchpad (build 17570)\n" -"Language: hr\n" -#: ../cache/locales.php:2 +#: [about]thanks msgid "Thanks" msgstr "Hvala" -#: ../cache/locales.php:3 +#: [about]developers msgid "Developers" msgstr "Programeri" -#: ../cache/locales.php:4 +#: [about]translators msgid "Translators" msgstr "Prevoditelji" -#: ../cache/locales.php:5 +#: [about]software msgid "Software" msgstr "Softver" -#: ../cache/locales.php:6 +#: [about]resources msgid "Resources" msgstr "Resursi" -#: ../cache/locales.php:7 ../cache/locales.php:83 ../cache/locales.php:85 +#: [about]api [schema]api [api]title msgid "API" msgstr "API" -#: ../cache/locales.php:8 -msgid "" -"Movim is an XMPP-based communication platform. All the project, except the " -"following software and resources, is under" +#: [about]info +msgid "Movim is an XMPP-based communication platform. All the project, except the following software and resources, is under" msgstr "" -#: ../cache/locales.php:9 +#: [account]title msgid "Account" msgstr "" -#: ../cache/locales.php:10 -msgid "The password has been updated" +#: [account]password_change_title +msgid "Change my password" msgstr "" -#: ../cache/locales.php:11 -msgid "Please provide a valid password (6 characters minimum)" -msgstr "" - -#: ../cache/locales.php:12 -msgid "The provided passwords are not the same" -msgstr "" - -#: ../cache/locales.php:13 -msgid "Delete my account" -msgstr "" - -#: ../cache/locales.php:14 -msgid "" -"You will delete your XMPP account and all the relative information linked to " -"it (profile, contacts and publications)." -msgstr "" - -#: ../cache/locales.php:15 -msgid "Are you sure that you want to delete it ?" -msgstr "" - -#: ../cache/locales.php:16 ../cache/locales.php:411 -msgid "Create a new account" -msgstr "" - -#: ../cache/locales.php:17 -msgid "No account creation form found on the server" -msgstr "" - -#: ../cache/locales.php:18 ../cache/locales.php:172 -msgid "on" -msgstr "" - -#: ../cache/locales.php:19 -msgid "Your acccount has been successfully registered" -msgstr "" - -#: ../cache/locales.php:20 -msgid "Loading" -msgstr "" - -#: ../cache/locales.php:21 -msgid "Not Acceptable" -msgstr "" - -#: ../cache/locales.php:22 -msgid "The registration system of this server is currently unavailable" -msgstr "" - -#: ../cache/locales.php:23 -msgid "" -"This server use an external system for the registration, please click on the " -"following URL." -msgstr "" - -#: ../cache/locales.php:24 -msgid "Actions" -msgstr "" - -#: ../cache/locales.php:25 ../cache/locales.php:82 -msgid "Database" -msgstr "" - -#: ../cache/locales.php:26 -msgid "Modl wasn't able to connect to the database" -msgstr "" - -#: ../cache/locales.php:27 -msgid "Movim is connected to the database" -msgstr "" - -#: ../cache/locales.php:28 -msgid "The database need to be updated" -msgstr "" - -#: ../cache/locales.php:29 -msgid "Movim database is up to date" -msgstr "" - -#: ../cache/locales.php:30 -msgid "Database Type" -msgstr "" - -#: ../cache/locales.php:31 ../cache/locales.php:50 ../cache/locales.php:540 -msgid "Username" -msgstr "" - -#: ../cache/locales.php:32 ../cache/locales.php:51 ../cache/locales.php:282 -#: ../cache/locales.php:541 +#: [account]password [db]password [credentials]password [form]password +#: [input]password msgid "Password" msgstr "" -#: ../cache/locales.php:33 +#: [account]password_confirmation +msgid "Password confirmation" +msgstr "" + +#: [account]password_changed +msgid "The password has been updated" +msgstr "" + +#: [account]password_not_valid +msgid "Please provide a valid password (6 characters minimum)" +msgstr "" + +#: [account]password_not_same +msgid "The provided passwords are not the same" +msgstr "" + +#: [account]delete_title +msgid "Delete my account" +msgstr "" + +#: [account]delete +msgid "Delete your account" +msgstr "" + +#: [account]delete_text +msgid "You will delete your XMPP account and all the relative information linked to it (profile, contacts and publications)." +msgstr "" + +#: [account]delete_text_confirm +msgid "Are you sure that you want to delete it ?" +msgstr "" + +#: [account]gateway_title +msgid "Gateway" +msgstr "" + +#: [create]title [subscribe]title +msgid "Create a new account" +msgstr "" + +#: [create]notfound +msgid "No account creation form found on the server" +msgstr "" + +#: [create]server_on +msgid "on" +msgstr "" + +#: [create]successfull +msgid "Your acccount has been successfully registered" +msgstr "" + +#: [create]loading +msgid "Loading" +msgstr "" + +#: [error]not_acceptable +msgid "Not Acceptable" +msgstr "" + +#: [error]service_unavailable +msgid "The registration system of this server is currently unavailable" +msgstr "" + +#: [oob]about +msgid "This server use an external system for the registration, please click on the following URL." +msgstr "" + +#: [adhoc]title +msgid "Actions" +msgstr "" + +#: [db]legend [schema]database +msgid "Database" +msgstr "" + +#: [db]connect_error +msgid "Modl wasn't able to connect to the database" +msgstr "" + +#: [db]connect_success +msgid "Movim is connected to the database" +msgstr "" + +#: [db]update +msgid "The database need to be updated" +msgstr "" + +#: [db]up_to_date +msgid "Movim database is up to date" +msgstr "" + +#: [db]type +msgid "Database Type" +msgstr "" + +#: [db]username [credentials]username [input]username +msgid "Username" +msgstr "" + +#: [db]host msgid "Host" msgstr "" -#: ../cache/locales.php:34 +#: [db]port msgid "Port" msgstr "" -#: ../cache/locales.php:35 -msgid "Database Name" +#: [db]name +msgid "Database sName" msgstr "" -#: ../cache/locales.php:36 +#: [admin]general msgid "General Settings" msgstr "" -#: ../cache/locales.php:37 +#: [general]theme msgid "Theme" msgstr "" -#: ../cache/locales.php:38 +#: [general]language msgid "Default language" msgstr "" -#: ../cache/locales.php:39 -msgid "Environment" -msgstr "" - -#: ../cache/locales.php:40 +#: [general]log_verbosity msgid "Log verbosity" msgstr "" -#: ../cache/locales.php:41 +#: [general]timezone msgid "Server Timezone" msgstr "" -#: ../cache/locales.php:42 +#: [general]limit msgid "User folder size limit (in bytes)" msgstr "" -#: ../cache/locales.php:43 +#: [websocket]title msgid "WebSocket Configuration" msgstr "" -#: ../cache/locales.php:44 +#: [websocket]info msgid "Enter here a valid WebSocket URI in the form" msgstr "" -#: ../cache/locales.php:45 +#: [websocket]label msgid "WebSocket URI" msgstr "" -#: ../cache/locales.php:46 -msgid "" -"If you change the URI, please restart the daemon to reload the configuration" +#: [websocket]save_info +msgid "If you change the URI, please restart the daemon to reload the configuration" msgstr "" -#: ../cache/locales.php:47 +#: [websocket]publics msgid "Public WebSockets" msgstr "" -#: ../cache/locales.php:48 +#: [credentials]title msgid "Administration Credential" msgstr "" -#: ../cache/locales.php:49 +#: [credentials]info msgid "Change the default credentials admin/password" msgstr "" -#: ../cache/locales.php:52 +#: [credentials]re_password msgid "Retype password" msgstr "" -#: ../cache/locales.php:53 +#: [whitelist]title msgid "Whitelist - XMPP Server" msgstr "" -#: ../cache/locales.php:54 -msgid "" -"If you want to specify a list of authorized XMPP servers on your Movim pod " -"and forbid the connection on all the others please put their domain name " -"here, with comma (ex: movim.eu,jabber.fr)" +#: [whitelist]info1 +msgid "If you want to specify a list of authorized XMPP servers on your Movim pod and forbid the connection on all the others please put their domain name here, with comma (ex: movim.eu,jabber.fr)" msgstr "" -#: ../cache/locales.php:55 -msgid "" -"Leave this field blank if you allow the access to all the XMPP accounts." +#: [whitelist]info2 +msgid "Leave this field blank if you allow the access to all the XMPP accounts." msgstr "" -#: ../cache/locales.php:56 +#: [whitelist]label msgid "List of whitelisted XMPP servers" msgstr "" -#: ../cache/locales.php:57 ../cache/locales.php:61 +#: [information]title +msgctxt "[information]title" msgid "Information Message" msgstr "" -#: ../cache/locales.php:58 +#: [information]description msgid "Description" msgstr "" -#: ../cache/locales.php:59 +#: [information]info1 msgid "This message will be displayed on the login page" msgstr "" -#: ../cache/locales.php:60 -msgid "Leave this field blank if you don't want to show any message." +#: [information]info2 +msgid "Leave this field blank if you dont want to show any message." msgstr "" -#: ../cache/locales.php:62 +#: [information]label +msgctxt "[information]label" +msgid "Information Message" +msgstr "" + +#: [log]empty msgid "Empty" msgstr "" -#: ../cache/locales.php:63 +#: [log]syslog msgid "Syslog" msgstr "" -#: ../cache/locales.php:64 +#: [log]syslog_files msgid "Syslog and files" msgstr "" -#: ../cache/locales.php:65 +#: [rewrite]title msgid "URL Rewriting" msgstr "" -#: ../cache/locales.php:66 +#: [rewrite]info msgid "The URL Rewriting can be enabled" msgstr "" -#: ../cache/locales.php:67 +#: [admin]compatibility msgid "General Overview" msgstr "" -#: ../cache/locales.php:68 -msgid "" -"Movim has found some issues or things that need to be fixed or improved" +#: [compatibility]info +msgid "Movim has found some issues or things that need to be fixed or improved" msgstr "" -#: ../cache/locales.php:69 -#, php-format +#: [compatibility]php1 msgid "Update your PHP-Version: %s" msgstr "" -#: ../cache/locales.php:70 +#: [compatibility]php2 msgid "Required: 5.3.0" msgstr "" -#: ../cache/locales.php:71 +#: [compatibility]curl msgid "Install the php5-curl library" msgstr "" -#: ../cache/locales.php:72 +#: [compatibility]imagick msgid "Install the php5-imagick library" msgstr "" -#: ../cache/locales.php:73 +#: [compatibility]gd msgid "Install the php5-gd library" msgstr "" -#: ../cache/locales.php:74 -msgid "Read and write rights for the webserver in Movim's root directory" +#: [compatibility]rights +msgid "Read and write rights for the webserver in Movims root directory" msgstr "" -#: ../cache/locales.php:75 +#: [compatibility]rewrite msgid "The URL Rewriting support is currently disabled" msgstr "" -#: ../cache/locales.php:76 +#: [compatibility]db msgid "The database need to be updated, go to the database panel to fix this" msgstr "" -#: ../cache/locales.php:77 -msgid "" -"WebSocket connection error, check if the Movim Daemon is running and is " -"reacheable" +#: [compatibility]websocket +msgid "WebSocket connection error, check if the Movim Daemon is running and is reachable" msgstr "" -#: ../cache/locales.php:78 -msgid "" -"XMPP Websocket connection error, please check the validity of the URL given " -"in the General Configuration" +#: [compatibility]xmpp_websocket +msgid "XMPP Websocket connection error, please check the validity of the URL given in the General Configuration" msgstr "" -#: ../cache/locales.php:79 +#: [schema]browser msgid "Browser" msgstr "" -#: ../cache/locales.php:80 +#: [schema]movim msgid "Movim Core" msgstr "" -#: ../cache/locales.php:81 +#: [schema]daemon msgid "Movim Daemon" msgstr "" -#: ../cache/locales.php:84 +#: [schema]xmpp msgid "XMPP" msgstr "" -#: ../cache/locales.php:86 -#, php-format -msgid "" -"Here you can register your pod on the official %sMovim API%s and be listed " -"on %sthe pods page%s." +#: [api]info +msgid "Here you can register your pod on the official %sMovim API%s and be listed on %sthe pods page%s." msgstr "" -#: ../cache/locales.php:87 +#: [api]register msgid "Your pod is not registered on the API" msgstr "" -#: ../cache/locales.php:88 +#: [api]registered msgid "Your pod is registered on the API" msgstr "" -#: ../cache/locales.php:89 +#: [api]wait msgid "Your pod is not yet validated" msgstr "" -#: ../cache/locales.php:90 +#: [api]validated msgid "Your pod is validated" msgstr "" -#: ../cache/locales.php:91 -msgid "" -"You asked to be removed from the API, this request will be processed in a " -"couple of hours" +#: [api]unregister +msgid "You asked to be removed from the API, this request will be processed in a couple of hours" msgstr "" -#: ../cache/locales.php:92 ../cache/locales.php:147 +#: [api]conf_updated [config]updated msgid "Configuration updated" msgstr "" -#: ../cache/locales.php:93 +#: [avatar]file msgid "File" msgstr "" -#: ../cache/locales.php:94 +#: [avatar]use_it msgid "Use it" msgstr "" -#: ../cache/locales.php:95 +#: [avatar]webcam msgid "Webcam" msgstr "" -#: ../cache/locales.php:96 +#: [avatar]cheese msgid "Cheese !" msgstr "" -#: ../cache/locales.php:97 +#: [avatar]snapshot msgid "Take a webcam snapshot" msgstr "" -#: ../cache/locales.php:98 +#: [avatar]updated msgid "Avatar Updated" msgstr "" -#: ../cache/locales.php:99 +#: [avatar]not_updated msgid "Avatar Not Updated" msgstr "" -#: ../cache/locales.php:100 ../cache/locales.php:415 -#, php-format +#: [blog]title [feed]title msgid "%s's feed" msgstr "" -#: ../cache/locales.php:101 +#: [blog]empty msgid "This user has not posted anything right now" msgstr "" -#: ../cache/locales.php:102 +#: [title]conferences msgid "Conferences" msgstr "" -#: ../cache/locales.php:103 ../cache/locales.php:193 ../cache/locales.php:217 -#: ../cache/locales.php:468 +#: [title]groups [group]empty_title [menu]groups [page]groups msgid "Groups" msgstr "" -#: ../cache/locales.php:104 +#: [chatroom]add msgid "Add a new Chat Room" msgstr "" -#: ../cache/locales.php:105 ../cache/locales.php:368 +#: [chatroom]id [chatrooms]id msgid "Chat Room ID" msgstr "" -#: ../cache/locales.php:106 ../cache/locales.php:116 ../cache/locales.php:156 -#: ../cache/locales.php:361 ../cache/locales.php:369 ../cache/locales.php:424 +#: [chatroom]name +msgctxt "[chatroom]name" msgid "Name" msgstr "" -#: ../cache/locales.php:107 ../cache/locales.php:157 ../cache/locales.php:371 -#: ../cache/locales.php:425 +#: [chatroom]nickname [general]nickname [chatrooms]nickname msgid "Nickname" msgstr "" -#: ../cache/locales.php:108 +#: [chatroom]autojoin_label msgid "Do you want do join automaticaly this Chat Room ?" msgstr "" -#: ../cache/locales.php:109 ../cache/locales.php:372 +#: [chatroom]bad_id [chatrooms]bad_id msgid "Bad Chatroom ID" msgstr "" -#: ../cache/locales.php:110 ../cache/locales.php:373 +#: [chatroom]empty_name [chatrooms]empty_name msgid "Empty name" msgstr "" -#: ../cache/locales.php:111 ../cache/locales.php:380 +#: [bookmarks]updated msgid "Bookmarks updated" msgstr "" -#: ../cache/locales.php:112 -msgid "An error occured : " +#: [bookmarks]error +msgid "An error occured :" msgstr "" -#: ../cache/locales.php:113 +#: [bookmarks]configure msgid "Configure" msgstr "" -#: ../cache/locales.php:114 +#: [url]add msgid "Add a new URL" msgstr "" -#: ../cache/locales.php:115 +#: [url]url msgid "URL" msgstr "" -#: ../cache/locales.php:117 +#: [url]name +msgctxt "[url]name" +msgid "Name" +msgstr "" + +#: [message]published msgid "Message Published" msgstr "" -#: ../cache/locales.php:118 ../cache/locales.php:138 +#: [message]encrypted msgid "Encrypted message" msgstr "" -#: ../cache/locales.php:119 +#: [message]composing [chats]composing msgid "Composing..." msgstr "" -#: ../cache/locales.php:120 +#: [message]paused [chats]paused msgid "Paused..." msgstr "" -#: ../cache/locales.php:121 +#: [message]gone msgid "Contact gone" msgstr "" -#: ../cache/locales.php:122 -#, php-format +#: [chat]attention msgid "%s needs your attention" msgstr "" -#: ../cache/locales.php:123 +#: [chat]placeholder msgid "Your message here..." msgstr "" -#: ../cache/locales.php:124 +#: [chat]smileys msgid "Smileys" msgstr "" -#: ../cache/locales.php:125 ../cache/locales.php:139 +#: [chat]empty_title [button]chat msgid "Chat" msgstr "" -#: ../cache/locales.php:126 +#: [chat]empty_text msgid "Discuss with your contacts" msgstr "" -#: ../cache/locales.php:127 -msgid "Members" -msgstr "" - -#: ../cache/locales.php:128 ../cache/locales.php:376 -msgid "Connected to the chatroom" -msgstr "" - -#: ../cache/locales.php:129 ../cache/locales.php:377 -msgid "Disconnected from the chatroom" -msgstr "" - -#: ../cache/locales.php:130 ../cache/locales.php:200 ../cache/locales.php:469 -msgid "Configuration" -msgstr "" - -#: ../cache/locales.php:131 -msgid "Configuration saved" -msgstr "" - -#: ../cache/locales.php:132 -msgid "Subject" -msgstr "" - -#: ../cache/locales.php:133 -msgid "Subject changed" -msgstr "" - -#: ../cache/locales.php:134 -msgid "Open a new conversation by clicking on the plus button bellow" -msgstr "" - -#: ../cache/locales.php:135 -msgid "Chat with a contact" -msgstr "" - -#: ../cache/locales.php:136 +#: [chat]frequent [chats]frequent msgid "Frequent contacts" msgstr "" -#: ../cache/locales.php:137 +#: [chatroom]members +msgid "Members" +msgstr "" + +#: [chatroom]connected [chatrooms]connected +msgid "Connected to the chatroom" +msgstr "" + +#: [chatroom]disconnected [chatrooms]disconnected +msgid "Disconnected from the chatroom" +msgstr "" + +#: [chatroom]config [group]configuration [page]configuration +msgid "Configuration" +msgstr "" + +#: [chatroom]config_saved +msgid "Configuration saved" +msgstr "" + +#: [chatroom]subject +msgid "Subject" +msgstr "" + +#: [chatroom]subject_changed +msgid "Subject changed" +msgstr "" + +#: [chats]empty_title +msgid "No chats yet..." +msgstr "" + +#: [chats]empty +msgid "Open a new conversation by clicking on the plus button bellow or visit the Contacts page." +msgstr "" + +#: [chats]add +msgid "Chat with a contact" +msgstr "" + +#: [chats]more msgid "Load more contacts" msgstr "" -#: ../cache/locales.php:140 -msgid "General" -msgstr "" - -#: ../cache/locales.php:141 -msgid "Language" -msgstr "" - -#: ../cache/locales.php:142 -msgid "Roster display" -msgstr "" - -#: ../cache/locales.php:143 -msgid "Show the offline contacts" -msgstr "" - -#: ../cache/locales.php:144 -msgid "Hide the offline contacts" -msgstr "" - -#: ../cache/locales.php:145 -msgid "Appearence" -msgstr "" - -#: ../cache/locales.php:146 -msgid "This configuration is shared wherever you are connected !" -msgstr "" - -#: ../cache/locales.php:148 -msgid "Notify on incoming message" -msgstr "" - -#: ../cache/locales.php:149 -msgid "Use desktop notifications" -msgstr "" - -#: ../cache/locales.php:150 +#: [title]data msgid "Data" msgstr "" -#: ../cache/locales.php:151 +#: [title]cache msgid "Cache" msgstr "" -#: ../cache/locales.php:152 ../cache/locales.php:218 ../cache/locales.php:466 +#: [title]contacts [menu]contacts [page]contacts msgid "Contacts" msgstr "" -#: ../cache/locales.php:153 ../cache/locales.php:480 +#: [title]posts [page]posts msgid "Posts" msgstr "" -#: ../cache/locales.php:154 +#: [title]messages msgid "Messages" msgstr "" -#: ../cache/locales.php:155 ../cache/locales.php:423 +#: [config]general +msgid "General" +msgstr "" + +#: [config]language +msgid "Language" +msgstr "" + +#: [config]roster +msgid "Roster display" +msgstr "" + +#: [config]roster_show +msgid "Show the offline contacts" +msgstr "" + +#: [config]roster_hide +msgid "Hide the offline contacts" +msgstr "" + +#: [config]appearence +msgid "Appearence" +msgstr "" + +#: [config]info +msgid "This configuration is shared wherever you are connected" +msgstr "" + +#: [notifications]message +msgid "Notify on incoming message" +msgstr "" + +#: [notifications]desktop +msgid "Use desktop notifications" +msgstr "" + +#: [general]legend [general]general_title msgid "General Informations" msgstr "" -#: ../cache/locales.php:158 ../cache/locales.php:427 +#: [general]name [public_groups]name [chatrooms]name +msgid "Name" +msgstr "" + +#: [general]date_of_birth msgid "Date of Birth" msgstr "" -#: ../cache/locales.php:159 ../cache/locales.php:428 +#: [general]gender msgid "Gender" msgstr "" -#: ../cache/locales.php:160 ../cache/locales.php:429 +#: [general]marital msgid "Marital Status" msgstr "" -#: ../cache/locales.php:161 ../cache/locales.php:426 +#: [general]email msgid "Email" msgstr "" -#: ../cache/locales.php:162 ../cache/locales.php:430 +#: [general]website msgid "Website" msgstr "" -#: ../cache/locales.php:163 ../cache/locales.php:431 +#: [general]about msgid "About Me" msgstr "" -#: ../cache/locales.php:164 +#: [general]accounts msgid "Other Accounts" msgstr "" -#: ../cache/locales.php:165 +#: [general]tune msgid "Is Listening" msgstr "" -#: ../cache/locales.php:166 ../cache/locales.php:432 +#: [position]legend [position]position_title msgid "Geographic Position" msgstr "" -#: ../cache/locales.php:167 ../cache/locales.php:433 +#: [position]locality msgid "Locality" msgstr "" -#: ../cache/locales.php:168 ../cache/locales.php:434 +#: [position]country msgid "Country" msgstr "" -#: ../cache/locales.php:169 +#: [mood]title msgid "Mood" msgstr "" -#: ../cache/locales.php:170 +#: [mood]im msgid "I'm " msgstr "" -#: ../cache/locales.php:171 +#: [listen]title msgid "Listening" msgstr "" -#: ../cache/locales.php:173 +#: [last]title msgid "Last seen" msgstr "" -#: ../cache/locales.php:174 +#: [client]title msgid "Client Informations" msgstr "" -#: ../cache/locales.php:175 +#: [explore]last_registered msgid "Last registered" msgstr "" -#: ../cache/locales.php:176 +#: [explore]explore msgid "Find some new friends" msgstr "" -#: ../cache/locales.php:177 ../cache/locales.php:533 +#: [edit]title [button]edit msgid "Edit" msgstr "" -#: ../cache/locales.php:178 +#: [edit]alias msgid "Alias" msgstr "" -#: ../cache/locales.php:179 +#: [edit]group msgid "Group" msgstr "" -#: ../cache/locales.php:180 ../cache/locales.php:400 +#: [edit]updated [roster]updated msgid "Contact updated" msgstr "" -#: ../cache/locales.php:181 +#: [delete]title msgid "Are you sure?" msgstr "" -#: ../cache/locales.php:182 -msgid "" -"You are going to delete one of your contacts, please confirm your action" +#: [delete]text +msgid "You are going to delete one of your contacts, please confirm your action" msgstr "" -#: ../cache/locales.php:183 -#, php-format +#: [age]years msgid "%s years" msgstr "" -#: ../cache/locales.php:184 +#: [blog]last msgid "Last public post" msgstr "" -#: ../cache/locales.php:185 +#: [subscription]to +msgid "You can see this contact status" +msgstr "" + +#: [subscription]to_button +msgid "Share my status" +msgstr "" + +#: [subscription]to_text +msgid "But this contact cannot see yours" +msgstr "" + +#: [subscription]from +msgid "You are not subscribed to this contact" +msgstr "" + +#: [subscription]from_button +msgid "Ask to subscribe" +msgstr "" + +#: [subscription]from_text +msgid "But this contact can still see if you are online" +msgstr "" + +#: [subscription]nil +msgid "No subscriptions" +msgstr "" + +#: [subscription]nil_button +msgid "Invite" +msgstr "" + +#: [subscription]nil_text +msgid "This contact is in your contact list but there is no subscriptions between the two accounts" +msgstr "" + +#: [group]subscribe msgid "Subscribe" msgstr "" -#: ../cache/locales.php:186 +#: [group]subscribed msgid "Subscribed" msgstr "" -#: ../cache/locales.php:187 +#: [group]unsubscribe msgid "Unsubscribe" msgstr "" -#: ../cache/locales.php:188 +#: [group]unsubscribe_text msgid "You are going to unsubscribe from this Group" msgstr "" -#: ../cache/locales.php:189 +#: [group]unsubscribed msgid "Unsubscribed" msgstr "" -#: ../cache/locales.php:190 +#: [group]share_label msgid "Make your membership to this group public to your friends" msgstr "" -#: ../cache/locales.php:191 +#: [group]label_label msgid "Give a label for this group" msgstr "" -#: ../cache/locales.php:192 +#: [group]sure msgid "Are you sure ?" msgstr "" -#: ../cache/locales.php:194 +#: [group]empty_text msgid "Discover, follow and share" msgstr "" -#: ../cache/locales.php:195 +#: [group]empty msgid "Something bad happened to this group" msgstr "" -#: ../cache/locales.php:196 +#: [group]config_saved msgid "Group configuration saved" msgstr "" -#: ../cache/locales.php:197 +#: [group]delete_title msgid "Delete the group" msgstr "" -#: ../cache/locales.php:198 -msgid "" -"You are going to delete the following group. Please confirm your action." +#: [group]delete_text +msgid "You are going to delete the following group. Please confirm your action." msgstr "" -#: ../cache/locales.php:199 -msgid "" -"It seems that this group doesn't exists anymore. Do you want to remove it " -"from your subscriptions?" +#: [group]delete_clean_text +msgid "It seems that this group doesn't exists anymore. Do you want to remove it from your subscriptions?" msgstr "" -#: ../cache/locales.php:201 ../cache/locales.php:408 +#: [group]counter +msgid "%s groups on this server" +msgstr "" + +#: [group]subscriptions [statistics]subscriptions msgid "Subscriptions" msgstr "" -#: ../cache/locales.php:202 ../cache/locales.php:290 +#: [group]servers +msgid "Groups servers" +msgstr "" + +#: [group]search_server +msgid "Search for a new server" +msgstr "" + +#: [group]help_info1 +msgid "Groups are the perfect way to share posts about topics that you like with all the other Movim's users." +msgstr "" + +#: [group]help_info2 +msgid "Choose a server and a Group and subscribe to it using the %s button in the header. You can also create a new one using the %s button." +msgstr "" + +#: [group]help_info3 +msgid "Done? You can now publish a new post in the Group by using the %s button." +msgstr "" + +#: [group]help_info4 +msgid "You will find a list of all your subscribed Groups in My Subscriptions and receive instantly all the new incoming posts in the %sNews%s page." +msgstr "" + +#: [groups]empty_title msgid "Hello" msgstr "" -#: ../cache/locales.php:203 ../cache/locales.php:225 ../cache/locales.php:291 +#: [groups]contact_post [hello]contact_post [menu]contact_post msgid "Contact post" msgstr "" -#: ../cache/locales.php:204 -msgid "" -"You don't have any subscriptions yet, select a group server above to start " -"exploring." +#: [groups]empty_text1 +msgid "You don't have any subscriptions yet, select a group server above to start exploring." msgstr "" -#: ../cache/locales.php:205 +#: [groups]empty_text2 msgid "Subscribe to your favorite feeds by bookmarking them." msgstr "" -#: ../cache/locales.php:206 +#: [groups]subscriptions msgid "My Subscriptions" msgstr "" -#: ../cache/locales.php:207 +#: [groups]add msgid "Create a new Group" msgstr "" -#: ../cache/locales.php:208 +#: [groups]name msgid "Group name" msgstr "" -#: ../cache/locales.php:209 +#: [groups]name_example msgid "My Little Pony - Fan Club" msgstr "" -#: ../cache/locales.php:210 +#: [groups]created msgid "Group created successfully" msgstr "" -#: ../cache/locales.php:211 +#: [groups]deleted msgid "Group deleted successfully" msgstr "" -#: ../cache/locales.php:212 +#: [groups]name_error msgid "Please provide a valid group name (4 characters minimum)" msgstr "" -#: ../cache/locales.php:213 +#: [groups]no_creation msgid "You cannot create a new Group on this server" msgstr "" -#: ../cache/locales.php:214 -#, php-format +#: [groups]sub msgid "%s subscribers" msgstr "" -#: ../cache/locales.php:215 -#, php-format +#: [groups]num msgid "%s posts" msgstr "" -#: ../cache/locales.php:216 +#: [groups]disco_error +msgid "This server doesn't exists" +msgstr "" + +#: [menu]all msgid "All" msgstr "" -#: ../cache/locales.php:219 +#: [menu]refresh msgid "Refresh all the streams" msgstr "" -#: ../cache/locales.php:220 ../cache/locales.php:402 -msgid "Search" +#: [roster]search +msgid "Search in your contacts" msgstr "" -#: ../cache/locales.php:221 +#: [hello]active_contacts +msgid "Active contacts" +msgstr "" + +#: [hello]chat msgid "Go on the Chat page" msgstr "" -#: ../cache/locales.php:222 -msgid "Read all theses articles on the News page" -msgstr "" - -#: ../cache/locales.php:223 -msgid "Visit your public blog" -msgstr "" - -#: ../cache/locales.php:224 -msgid "See your public posts and share them with all your contacts" -msgstr "" - -#: ../cache/locales.php:226 -msgid "Universal share button" -msgstr "" - -#: ../cache/locales.php:227 -msgid "" -"Bookmark or drag and drop the following button in your toolbar and use it on " -"all the pages you want to share on Movim" -msgstr "" - -#: ../cache/locales.php:228 -msgid "Share on Movim" -msgstr "" - -#: ../cache/locales.php:229 -msgid "Frequently Asked Questions" -msgstr "" - -#: ../cache/locales.php:230 -msgid "What do the little banners refer to ?" -msgstr "" - -#: ../cache/locales.php:231 -msgid "" -"Thanks to these five little banners, you can quickly identitfy the level of " -"confdentiality applied to the information you provide." -msgstr "" - -#: ../cache/locales.php:232 -msgid "White, only you can see the information" -msgstr "" - -#: ../cache/locales.php:233 -msgid "Green, you have chosen some contacts who can see your information" -msgstr "" - -#: ../cache/locales.php:234 -msgid "Orange, all your contact list can see your information" -msgstr "" - -#: ../cache/locales.php:235 -msgid "Red, everybody in the XMPP network can see your information" -msgstr "" - -#: ../cache/locales.php:236 -msgid "Black, the whole Internet can see your information" -msgstr "" - -#: ../cache/locales.php:237 -msgid "Looking for some documentation ?" -msgstr "" - -#: ../cache/locales.php:238 -msgid "Read the Wiki" -msgstr "" - -#: ../cache/locales.php:239 -msgid "Talk with us by email ?" -msgstr "" - -#: ../cache/locales.php:240 -msgid "Join the Mailing List" -msgstr "" - -#: ../cache/locales.php:241 -msgid "Chat with the team ?" -msgstr "" - -#: ../cache/locales.php:242 -msgid "Join the Chatroom" -msgstr "" - -#: ../cache/locales.php:243 -msgid "Location node created" -msgstr "" - -#: ../cache/locales.php:244 -msgid "Bookmark node created" -msgstr "" - -#: ../cache/locales.php:245 -msgid "Profile node created" -msgstr "" - -#: ../cache/locales.php:246 -msgid "Avatar node created" -msgstr "" - -#: ../cache/locales.php:247 -msgid "Subscriptions node created" -msgstr "" - -#: ../cache/locales.php:248 -msgid "Microblog node created" -msgstr "" - -#: ../cache/locales.php:249 -msgid "Location" -msgstr "" - -#: ../cache/locales.php:250 -msgid "Wrong position" -msgstr "" - -#: ../cache/locales.php:251 -msgid "Location updated" -msgstr "" - -#: ../cache/locales.php:252 -msgid "Update my position" -msgstr "" - -#: ../cache/locales.php:253 -msgid "Wrong username" -msgstr "" - -#: ../cache/locales.php:254 -msgid "Invalid JID" -msgstr "" - -#: ../cache/locales.php:255 -msgid "Empty Challenge from the server" -msgstr "" - -#: ../cache/locales.php:256 -msgid "XMPP Domain error, your account is not a correct Jabber ID" -msgstr "" - -#: ../cache/locales.php:257 -msgid "Some data are missing !" -msgstr "" - -#: ../cache/locales.php:258 -msgid "Wrong password" -msgstr "" - -#: ../cache/locales.php:259 -msgid "Internal server error" -msgstr "" - -#: ../cache/locales.php:260 -msgid "Session error" -msgstr "" - -#: ../cache/locales.php:261 -msgid "Account successfully created" -msgstr "" - -#: ../cache/locales.php:262 ../cache/locales.php:271 -msgid "Your XMPP server is unauthorized" -msgstr "" - -#: ../cache/locales.php:263 -msgid "The server takes too much time to respond" -msgstr "" - -#: ../cache/locales.php:264 -msgid "Your web browser is too old to use with Movim." -msgstr "" - -#: ../cache/locales.php:265 -msgid "" -"Movim cannot talk with the server, please try again later (Websocket " -"connection error)" -msgstr "" - -#: ../cache/locales.php:266 -msgid "Impossible login" -msgstr "" - -#: ../cache/locales.php:267 -msgid "Oops!" -msgstr "" - -#: ../cache/locales.php:268 ../cache/locales.php:449 ../cache/locales.php:455 -msgid "Unknown error" -msgstr "" - -#: ../cache/locales.php:269 -msgid "Invalid username format" -msgstr "" - -#: ../cache/locales.php:270 -msgid "Invalid password format" -msgstr "" - -#: ../cache/locales.php:272 -msgid "A Movim session is already open on an other device" -msgstr "" - -#: ../cache/locales.php:273 -msgid "Movim failed to authenticate. You entered wrong data" -msgstr "" - -#: ../cache/locales.php:274 -msgid "Authentication mechanism not supported by Movim" -msgstr "" - -#: ../cache/locales.php:275 -msgid "The XMPP authentification failed" -msgstr "" - -#: ../cache/locales.php:276 -#, php-format -msgid "" -"You can login with Facebook (chat only) using %syour.id@chat.facebook.com%s " -"and your password" -msgstr "" - -#: ../cache/locales.php:277 -#, php-format -msgid "%sGmail accounts are also compatible%s but are not fully supported" -msgstr "" - -#: ../cache/locales.php:278 -msgid "You can login using your favorite Jabber account" -msgstr "" - -#: ../cache/locales.php:279 -msgid "or with our demonstration account" -msgstr "" - -#: ../cache/locales.php:280 ../cache/locales.php:435 -msgid "Accounts" -msgstr "" - -#: ../cache/locales.php:281 -msgid "My address" -msgstr "" - -#: ../cache/locales.php:283 -msgid "Create one !" -msgstr "" - -#: ../cache/locales.php:284 -msgid "No account yet ?" -msgstr "" - -#: ../cache/locales.php:285 -msgid "Another account" -msgstr "" - -#: ../cache/locales.php:286 -msgid "You can login with accounts from theses servers" -msgstr "" - -#: ../cache/locales.php:287 -msgid "Connected" -msgstr "" - -#: ../cache/locales.php:288 -msgid "Population" -msgstr "" - -#: ../cache/locales.php:289 -msgid "Bad nickname (between 4 and 40 characters)" -msgstr "" - -#: ../cache/locales.php:292 -msgid "" -"Welcome on your news feed, here you will see all the posts published in the " -"groups you have subscribed." -msgstr "" - -#: ../cache/locales.php:293 -msgid "Refreshing all the streams" -msgstr "" - -#: ../cache/locales.php:294 -msgid "This post is public" -msgstr "" - -#: ../cache/locales.php:295 -msgid "Manage your members" -msgstr "" - -#: ../cache/locales.php:296 -msgid "Get the members" -msgstr "" - -#: ../cache/locales.php:297 -msgid "Affiliations saved" -msgstr "" - -#: ../cache/locales.php:298 -msgid "Manage your subscriptions" -msgstr "" - -#: ../cache/locales.php:299 -msgid "Manage the subscriptions" -msgstr "" - -#: ../cache/locales.php:300 -msgid "Get the subscriptions" -msgstr "" - -#: ../cache/locales.php:301 -msgid "Subscriptions saved" -msgstr "" - -#: ../cache/locales.php:302 -msgid "Pending Invitations" -msgstr "" - -#: ../cache/locales.php:303 -#, php-format -msgid "%s wants to talk with you" -msgstr "" - -#: ../cache/locales.php:304 -msgid "Manage" -msgstr "" - -#: ../cache/locales.php:305 ../cache/locales.php:338 -msgid "News Feed" -msgstr "" - -#: ../cache/locales.php:306 ../cache/locales.php:339 -msgid "Discover and register to the groups you are interested in" -msgstr "" - -#: ../cache/locales.php:307 ../cache/locales.php:340 ../cache/locales.php:482 -msgid "Preview" -msgstr "" - -#: ../cache/locales.php:308 ../cache/locales.php:341 ../cache/locales.php:478 -msgid "Help" -msgstr "" - -#: ../cache/locales.php:309 ../cache/locales.php:342 -msgid "More help" -msgstr "" - -#: ../cache/locales.php:310 ../cache/locales.php:343 -msgid "Markdown syntax manual" -msgstr "" - -#: ../cache/locales.php:311 ../cache/locales.php:344 ../cache/locales.php:681 -msgid "Title" -msgstr "" - -#: ../cache/locales.php:312 ../cache/locales.php:345 -msgid "Content" -msgstr "" - -#: ../cache/locales.php:313 ../cache/locales.php:346 -msgid "Link" -msgstr "" - -#: ../cache/locales.php:314 ../cache/locales.php:347 -msgid "Tags" -msgstr "" - -#: ../cache/locales.php:315 ../cache/locales.php:348 -msgid "Please enter a valid url" -msgstr "" - -#: ../cache/locales.php:316 ../cache/locales.php:349 -msgid "No content to preview" -msgstr "" - -#: ../cache/locales.php:317 ../cache/locales.php:350 ../cache/locales.php:687 -msgid "No content" -msgstr "" - -#: ../cache/locales.php:318 ../cache/locales.php:351 -msgid "Post published" -msgstr "" - -#: ../cache/locales.php:319 ../cache/locales.php:352 -msgid "Post deleted" -msgstr "" - -#: ../cache/locales.php:320 ../cache/locales.php:353 -msgid "This picture will be added to your gallery" -msgstr "" - -#: ../cache/locales.php:321 ../cache/locales.php:354 -msgid "What's Hot" -msgstr "" - -#: ../cache/locales.php:322 ../cache/locales.php:355 -msgid "New post" -msgstr "" - -#: ../cache/locales.php:323 ../cache/locales.php:357 -msgid "" -"You can also use services like Imgur or Flickr to host your picture and " -"paste the link here." -msgstr "" - -#: ../cache/locales.php:324 -#, php-format -msgid "This is a re-post from %s" -msgstr "" - -#: ../cache/locales.php:325 -#, php-format -msgid "See %s profile" -msgstr "" - -#: ../cache/locales.php:326 -msgid "Publish this post on your public feed?" -msgstr "" - -#: ../cache/locales.php:327 -msgid "Post published on your blog" -msgstr "" - -#: ../cache/locales.php:328 -msgid "Post removed from your blog" -msgstr "" - -#: ../cache/locales.php:329 ../cache/locales.php:701 -msgid "Delete this post" -msgstr "" - -#: ../cache/locales.php:330 -msgid "You are going to delete this post, please confirm your action" -msgstr "" - -#: ../cache/locales.php:331 -msgid "Comments disabled" -msgstr "" - -#: ../cache/locales.php:332 -msgid "Comment published" -msgstr "" - -#: ../cache/locales.php:333 -msgid "Disconnect" -msgstr "" - -#: ../cache/locales.php:334 -msgid "Your status here !" -msgstr "" - -#: ../cache/locales.php:335 -msgid "Status updated" -msgstr "" - -#: ../cache/locales.php:336 -msgid "Status" -msgstr "" - -#: ../cache/locales.php:337 -msgid "Presence" -msgstr "" - -#: ../cache/locales.php:356 -msgid "Publish" -msgstr "" - -#: ../cache/locales.php:358 -msgid "You cannot publish a post on this Group" -msgstr "" - -#: ../cache/locales.php:359 -msgid "" -"Some fields have been filled in. Do you still want to go back and loose " -"their content?" -msgstr "" - -#: ../cache/locales.php:360 -msgid "Shared" -msgstr "" - -#: ../cache/locales.php:362 -#, php-format -msgid "%s has been added to your public groups" -msgstr "" - -#: ../cache/locales.php:363 -#, php-format -msgid "%s has been removed from your public groups" -msgstr "" - -#: ../cache/locales.php:364 -msgid "Add a chatroom" -msgstr "" - -#: ../cache/locales.php:365 -msgid "You don't have any chatroom yet." -msgstr "" - -#: ../cache/locales.php:366 -msgid "Add one by clicking on the add button in the header." -msgstr "" - -#: ../cache/locales.php:367 -msgid "Chatrooms" -msgstr "" - -#: ../cache/locales.php:370 -msgid "My Favorite Room" -msgstr "" - -#: ../cache/locales.php:374 -msgid "Remove a chatroom" -msgstr "" - -#: ../cache/locales.php:375 -msgid "" -"You are going to remove the following chatroom. Please confirm your action." -msgstr "" - -#: ../cache/locales.php:378 -msgid "Users in the room" -msgstr "" - -#: ../cache/locales.php:379 -msgid "Please enter a correct nickname (6 to 40 characters)" -msgstr "" - -#: ../cache/locales.php:381 -msgid "Public chatroom" -msgstr "" - -#: ../cache/locales.php:382 -msgid "Please provide a room address" -msgstr "" - -#: ../cache/locales.php:383 -msgid "You are currently logued as an anonymous user." -msgstr "" - -#: ../cache/locales.php:384 -msgid "" -"You can join using your own account or create one on the login page by " -"loging out using the cross in the top-right corner." -msgstr "" - -#: ../cache/locales.php:385 -#, php-format -msgid "Login on %s" -msgstr "" - -#: ../cache/locales.php:386 -msgid "Your nickname" -msgstr "" - -#: ../cache/locales.php:387 -msgid "Ungrouped" -msgstr "" - -#: ../cache/locales.php:388 -msgid "Show disconnected contacts" -msgstr "" - -#: ../cache/locales.php:389 -msgid "Hide disconnected contacts" -msgstr "" - -#: ../cache/locales.php:390 -#, php-format -msgid "Show group %s" -msgstr "" - -#: ../cache/locales.php:391 -#, php-format -msgid "Hide group %s" -msgstr "" - -#: ../cache/locales.php:392 -msgid "Please enter a valid Jabber ID" -msgstr "" - -#: ../cache/locales.php:393 -msgid "" -"No contacts ? You can add one using the + button bellow or going to the " -"Explore page" -msgstr "" - -#: ../cache/locales.php:394 -msgid "Show/Hide" -msgstr "" - -#: ../cache/locales.php:395 -msgid "Enter the Jabber ID of your contact." -msgstr "" - -#: ../cache/locales.php:396 -msgid "Press enter to validate." -msgstr "" - -#: ../cache/locales.php:397 -msgid "JID" -msgstr "" - -#: ../cache/locales.php:398 -msgid "Results" -msgstr "" - -#: ../cache/locales.php:399 -msgid "Contact added" -msgstr "" - -#: ../cache/locales.php:401 -msgid "Contact deleted" -msgstr "" - -#: ../cache/locales.php:403 -msgid "This is not a valid url" -msgstr "" - -#: ../cache/locales.php:404 -msgid "Sharing the URL" -msgstr "" - -#: ../cache/locales.php:405 -msgid "Statistics" -msgstr "" - -#: ../cache/locales.php:406 -msgid "Since" -msgstr "" - -#: ../cache/locales.php:407 -msgid "Sessions" -msgstr "" - -#: ../cache/locales.php:409 -msgid "Monthly Subscriptions" -msgstr "" - -#: ../cache/locales.php:410 -msgid "Monthly Subscriptions Cumulated" -msgstr "" - -#: ../cache/locales.php:412 -msgid "" -"Movim is a decentralized social network, before creating a new account you " -"need to choose a server to register." -msgstr "" - -#: ../cache/locales.php:413 -msgid "Your server here ?" -msgstr "" - -#: ../cache/locales.php:414 -msgid "Contact us to add yours to the officially supported servers list" -msgstr "" - -#: ../cache/locales.php:416 -msgid "No public feed for this contact" -msgstr "" - -#: ../cache/locales.php:417 -msgid "No contact specified" -msgstr "" - -#: ../cache/locales.php:418 ../cache/locales.php:473 -msgid "Profile" -msgstr "" - -#: ../cache/locales.php:419 -msgid "Profile Updated" -msgstr "" - -#: ../cache/locales.php:420 -msgid "Profile Not Updated" -msgstr "" - -#: ../cache/locales.php:421 -msgid "Your profile is now public" -msgstr "" - -#: ../cache/locales.php:422 -msgid "Your profile is now restricted" -msgstr "" - -#: ../cache/locales.php:436 -msgid "Twitter" -msgstr "" - -#: ../cache/locales.php:437 -msgid "Skype" -msgstr "" - -#: ../cache/locales.php:438 -msgid "Yahoo" -msgstr "" - -#: ../cache/locales.php:439 -msgid "Privacy Level" -msgstr "" - -#: ../cache/locales.php:440 -msgid "Is this profile public ?" -msgstr "" - -#: ../cache/locales.php:441 -msgid "" -"Please pay attention ! By making your profile public, all the information " -"listed above will be available for all the Movim users and on the whole " -"Internet." -msgstr "" - -#: ../cache/locales.php:442 -msgid "Call" -msgstr "" - -#: ../cache/locales.php:443 -msgid "Hang up" -msgstr "" - -#: ../cache/locales.php:444 -msgid "Connection" -msgstr "" - -#: ../cache/locales.php:445 ../cache/locales.php:451 -msgid "Hung up" -msgstr "" - -#: ../cache/locales.php:446 ../cache/locales.php:452 -msgid "Your contact is busy" -msgstr "" - -#: ../cache/locales.php:447 ../cache/locales.php:453 -msgid "Declined" -msgstr "" - -#: ../cache/locales.php:448 ../cache/locales.php:454 -msgid "Remote application incompatible" -msgstr "" - -#: ../cache/locales.php:450 ../cache/locales.php:456 -msgid "Is calling you" -msgstr "" - -#: ../cache/locales.php:457 -msgid "You don't have javascript enabled. Good luck with that." -msgstr "" - -#: ../cache/locales.php:458 -msgid "" -"Movim is a kickass distributed social networking platform that protect your " -"privacy an comes with a set of awesome features." -msgstr "" - -#: ../cache/locales.php:459 -msgid "Administration" -msgstr "" - -#: ../cache/locales.php:460 -msgid "Home" -msgstr "" - -#: ../cache/locales.php:461 -msgid "Discover" -msgstr "" - -#: ../cache/locales.php:462 -msgid "Explore" -msgstr "" - -#: ../cache/locales.php:463 -msgid "Account Creation" -msgstr "" - -#: ../cache/locales.php:464 +#: [hello]news [page]news msgid "News" msgstr "" -#: ../cache/locales.php:465 -msgid "Avatar" +#: [hello]news_page +msgid "Read all theses articles on the News page" msgstr "" -#: ../cache/locales.php:467 -msgid "Chats" +#: [hello]blog_title +msgid "Visit your public blog" msgstr "" -#: ../cache/locales.php:470 -msgid "Server" +#: [hello]blog_text +msgid "See your public posts and share them with all your contacts" msgstr "" -#: ../cache/locales.php:471 -msgid "Public Groups" +#: [hello]share_title +msgid "Universal share button" msgstr "" -#: ../cache/locales.php:472 -msgid "Viewer" +#: [hello]share_text +msgid "Bookmark or drag and drop the following button in your toolbar and use it on all the pages you want to share on Movim" msgstr "" -#: ../cache/locales.php:474 -msgid "Media" +#: [hello]share_button +msgid "Share on Movim" msgstr "" -#: ../cache/locales.php:475 -msgid "Blog" +#: [help]faq +msgid "Frequently Asked Questions" msgstr "" -#: ../cache/locales.php:476 -msgid "About" +#: [banner]title +msgid "What do the little banners refer to ?" msgstr "" -#: ../cache/locales.php:477 -msgid "Login" +#: [banner]info1 +msgid "Thanks to these five little banners, you can quickly identitfy the level of confdentiality applied to the information you provide." msgstr "" -#: ../cache/locales.php:479 -msgid "Feed" +#: [banner]white +msgid "White, only you can see the information" msgstr "" -#: ../cache/locales.php:481 -msgid "Gallery" +#: [banner]green +msgid "Green, you have chosen some contacts who can see your information" msgstr "" -#: ../cache/locales.php:483 -msgid "Visio-conference" +#: [banner]orange +msgid "Orange, all your contact list can see your information" msgstr "" -#: ../cache/locales.php:484 -msgid "Pods" +#: [banner]red +msgid "Red, everybody in the XMPP network can see your information" msgstr "" -#: ../cache/locales.php:485 -msgid "Share" +#: [banner]black +msgid "Black, the whole Internet can see your information" msgstr "" -#: ../cache/locales.php:486 -msgid "Room" +#: [wiki]question +msgid "Looking for some documentation ?" msgstr "" -#: ../cache/locales.php:487 -#, php-format -msgid "Error: %s" +#: [wiki]button +msgid "Read the Wiki" msgstr "" -#: ../cache/locales.php:488 -#, php-format -msgid "Cannot load file '%s'" +#: [ml]question +msgid "Talk with us by email ?" msgstr "" -#: ../cache/locales.php:489 -#, php-format -msgid "Route error, please set all the parameters for the page %s" +#: [ml]button +msgid "Join the Mailing List" msgstr "" -#: ../cache/locales.php:490 -#, php-format -msgid "Requested widget '%s' doesn't exist." +#: [chatroom]question +msgid "Chat with the team ?" msgstr "" -#: ../cache/locales.php:491 -#, php-format -msgid "Requested event '%s' not registered." +#: [chatroom]button +msgid "Join the Chatroom" msgstr "" -#: ../cache/locales.php:492 -msgid "Whoops!" +#: [init]location +msgid "Location node created" msgstr "" -#: ../cache/locales.php:493 -msgid "It seem that you don't have any pictures here?" +#: [init]bookmark +msgid "Bookmark node created" msgstr "" -#: ../cache/locales.php:494 -msgid "You can try to upload a couple by going to the Media page" +#: [init]vcard4 +msgid "Profile node created" msgstr "" -#: ../cache/locales.php:495 -#, php-format -msgid "%s - About" +#: [init]avatar +msgid "Avatar node created" msgstr "" -#: ../cache/locales.php:496 -#, php-format -msgid "%s - Account" +#: [init]subscriptions +msgid "Subscriptions node created" msgstr "" -#: ../cache/locales.php:497 -#, php-format -msgid "%s - Administration Panel" +#: [init]microblog +msgid "Microblog node created" msgstr "" -#: ../cache/locales.php:498 -#, php-format -msgid "%s - Blog" +#: [location]title +msgid "Location" msgstr "" -#: ../cache/locales.php:499 -#, php-format -msgid "%s - Configuration" +#: [location]wrong_postition +msgid "Wrong position" msgstr "" -#: ../cache/locales.php:500 -#, php-format -msgid "%s - Discover" +#: [location]updated +msgid "Location updated" msgstr "" -#: ../cache/locales.php:501 -#, php-format -msgid "%s - Explore" +#: [location]update +msgid "Update my position" msgstr "" -#: ../cache/locales.php:502 -#, php-format -msgid "%s - Help Page" +#: [login_anonymous]bad_username +msgid "Bad nickname (between 4 and 40 characters)" msgstr "" -#: ../cache/locales.php:503 -#, php-format -msgid "%s - Login to Movim" +#: [error]username +msgid "Wrong username" msgstr "" -#: ../cache/locales.php:504 -#, php-format -msgid "%s - Welcome to Movim" +#: [error]jid +msgid "Invalid JID" msgstr "" -#: ../cache/locales.php:505 -#, php-format -msgid "%s - Media" +#: [error]empty_challenge +msgid "Empty Challenge from the server" msgstr "" -#: ../cache/locales.php:506 -#, php-format -msgid "%s - News" +#: [error]dns +msgid "XMPP Domain error, your account is not a correct Jabber ID" msgstr "" -#: ../cache/locales.php:507 -#, php-format -msgid "%s - Group Configuration" +#: [error]data_missings +msgid "Some data are missing !" msgstr "" -#: ../cache/locales.php:508 -#, php-format -msgid "%s - Group" +#: [error]wrong_password +msgid "Wrong password" msgstr "" -#: ../cache/locales.php:509 -#, php-format -msgid "%s - 404" +#: [error]internal +msgid "Internal server error" msgstr "" -#: ../cache/locales.php:510 -#, php-format -msgid "%s - Profile" +#: [error]session +msgid "Session error" msgstr "" -#: ../cache/locales.php:511 -#, php-format -msgid "%s - Server" +#: [error]account_created +msgid "Account successfully created" msgstr "" -#: ../cache/locales.php:512 -msgid "Validate" +#: [error]xmpp_unauthorized +msgctxt "[error]xmpp_unauthorized" +msgid "Your XMPP server is unauthorized" msgstr "" -#: ../cache/locales.php:513 -msgid "Refresh" +#: [error]mec_error +msgid "The server takes too much time to respond" msgstr "" -#: ../cache/locales.php:514 -msgid "Add" +#: [error]too_old +msgid "Your web browser is too old to use with Movim." msgstr "" -#: ../cache/locales.php:515 -msgid "Delete" +#: [error]websocket +msgid "Movim cannot talk with the server, please try again later (Websocket connection error)" msgstr "" -#: ../cache/locales.php:516 -msgid "Remove" +#: [error]impossible +msgid "Impossible login" msgstr "" -#: ../cache/locales.php:517 -msgid "Cancel" +#: [error]title +msgid "Oops!" msgstr "" -#: ../cache/locales.php:518 -msgid "Close" +#: [error]default [visio]unknown_error +msgid "Unknown error" msgstr "" -#: ../cache/locales.php:519 -msgid "Update" +#: [error]login_format +msgid "Invalid username format" msgstr "" -#: ../cache/locales.php:520 -msgid "Updating" +#: [error]password_format +msgid "Invalid password format" msgstr "" -#: ../cache/locales.php:521 +#: [error]unauthorized +msgctxt "[error]unauthorized" +msgid "Your XMPP server is unauthorized" +msgstr "" + +#: [error]conflict +msgid "A Movim session is already open on an other device" +msgstr "" + +#: [error]wrong_account +msgid "Movim failed to authenticate. You entered wrong data" +msgstr "" + +#: [error]mechanism +msgid "Authentication mechanism not supported by Movim" +msgstr "" + +#: [error]fail_auth +msgid "The XMPP authentification failed" +msgstr "" + +#: [account]title [accounts]accounts_title +msgid "Accounts" +msgstr "" + +#: [form]username +msgid "My address" +msgstr "" + +#: [form]create_one +msgid "Create one !" +msgstr "" + +#: [form]another_account +msgid "Another account" +msgstr "" + +#: [form]no_account +msgid "No account yet ?" +msgstr "" + +#: [form]whitelist.info +msgid "You can login with accounts from theses servers" +msgstr "" + +#: [form]connected +msgid "Connected" +msgstr "" + +#: [form]population +msgid "Population" +msgstr "" + +#: [menu]empty_title +msgid "No news yet..." +msgstr "" + +#: [menu]empty +msgid "Welcome on your news feed, here you will see all the posts published by your contacts and in the groups you have subscribed." +msgstr "" + +#: [menu]refresh +msgid "Refreshing all the streams" +msgstr "" + +#: [menu]public +msgid "This post is public" +msgstr "" + +#: [affiliations]title +msgid "Manage your members" +msgstr "" + +#: [affiliations]get +msgid "Get the members" +msgstr "" + +#: [affiliations]saved +msgid "Affiliations saved" +msgstr "" + +#: [subscriptions]title +msgid "Manage your subscriptions" +msgstr "" + +#: [subscriptions]info +msgid "Manage the subscriptions" +msgstr "" + +#: [subscriptions]get +msgid "Get the subscriptions" +msgstr "" + +#: [subscriptions]saved +msgid "Subscriptions saved" +msgstr "" + +#: [notifs]title +msgid "Pending Invitations" +msgstr "" + +#: [notifs]wants_to_talk +msgid "%s wants to talk with you" +msgstr "" + +#: [notifs]manage +msgid "Manage" +msgstr "" + +#: [post]news_feed +msgid "News Feed" +msgstr "" + +#: [post]placeholder +msgid "Discover and register to the groups you are interested in" +msgstr "" + +#: [post]preview [page]preview +msgid "Preview" +msgstr "" + +#: [post]help [page]help +msgid "Help" +msgstr "" + +#: [post]help_more +msgid "More help" +msgstr "" + +#: [post]help_manual +msgid "Markdown syntax manual" +msgstr "" + +#: [post]title +msgid "Title" +msgstr "" + +#: [post]content +msgid "Content" +msgstr "" + +#: [post]link +msgid "Link" +msgstr "" + +#: [post]tags +msgid "Tags" +msgstr "" + +#: [post]valid_url [publish]valid_url +msgid "Please enter a valid url" +msgstr "" + +#: [post]no_content_preview [publish]no_content_preview +msgid "No content to preview" +msgstr "" + +#: [post]no_content [publish]no_content [post]empty +msgid "No content" +msgstr "" + +#: [post]published +msgid "Post published" +msgstr "" + +#: [post]deleted +msgid "Post deleted" +msgstr "" + +#: [post]gallery +msgid "This picture will be added to your gallery" +msgstr "" + +#: [post]hot +msgid "What's Hot" +msgstr "" + +#: [post]hot_text +msgid "Posts recently published in Groups that you are not subscribed (yet)" +msgstr "" + +#: [post]new [publish]new +msgid "New post" +msgstr "" + +#: [post]embed_tip +msgid "You can also use services like Imgur or Flickr to host your picture and paste the link here." +msgstr "" + +#: [post]repost +msgid "This is a re-post from %s" +msgstr "" + +#: [post]repost_profile +msgid "See %s profile" +msgstr "" + +#: [post]public +msgid "Publish this post publicly?" +msgstr "" + +#: [post]blog_add +msgid "Post published on your blog" +msgstr "" + +#: [post]blog_remove +msgid "Post removed from your blog" +msgstr "" + +#: [post]delete_title [post]delete +msgid "Delete this post" +msgstr "" + +#: [post]delete_text +msgid "You are going to delete this post, please confirm your action" +msgstr "" + +#: [post]comments_disabled +msgid "Comments disabled" +msgstr "" + +#: [post]comment_published +msgid "Comment published" +msgstr "" + +#: [status]disconnect +msgid "Disconnect" +msgstr "" + +#: [status]here +msgid "Your status here !" +msgstr "" + +#: [status]updated +msgid "Status updated" +msgstr "" + +#: [status]status +msgid "Status" +msgstr "" + +#: [status]presence +msgid "Presence" +msgstr "" + +#: [status]online +msgid "Online with Movim" +msgstr "" + +#: [publish]title +msgid "Publish" +msgstr "" + +#: [publish]attach +msgid "Add a file or a picture to your post" +msgstr "" + +#: [publish]no_publication +msgid "You cannot publish a post on this Group" +msgstr "" + +#: [publish]form_filled +msgid "Some fields have been filled in. Do you still want to go back and loose their content?" +msgstr "" + +#: [public_groups]shared +msgid "Shared" +msgstr "" + +#: [public_groups]added +msgid "%s has been added to your public groups" +msgstr "" + +#: [rooms]add +msgid "Add a chatroom" +msgstr "" + +#: [rooms]empty_text1 +msgid "You don't have any chatroom yet." +msgstr "" + +#: [rooms]empty_text2 +msgid "Add one by clicking on the add button in the header." +msgstr "" + +#: [chatrooms]title +msgid "Chatrooms" +msgstr "" + +#: [chatrooms]name_placeholder +msgid "My Favorite Room" +msgstr "" + +#: [chatrooms]users +msgid "Users in the room" +msgstr "" + +#: [chatrooms]bad_nickname +msgid "Please enter a correct nickname (2 to 40 characters)" +msgstr "" + +#: [room]anonymous_title +msgid "Public chatroom" +msgstr "" + +#: [room]no_room +msgid "Please provide a room address" +msgstr "" + +#: [room]anonymous_text1 +msgid "You are currently logued as an anonymous user." +msgstr "" + +#: [room]anonymous_text2 +msgid "You can join using your own account or create one on the login page by loging out using the cross in the top-right corner." +msgstr "" + +#: [room]anonymous_login +msgid "Login on %s" +msgstr "" + +#: [room]nick +msgid "Your nickname" +msgstr "" + +#: [roster]ungrouped +msgid "Ungrouped" +msgstr "" + +#: [roster]show_disconnected +msgid "Show disconnected contacts" +msgstr "" + +#: [roster]hide_disconnected +msgid "Hide disconnected contacts" +msgstr "" + +#: [roster]show_group +msgid "Show group %s" +msgstr "" + +#: [roster]hide_group +msgid "Hide group %s" +msgstr "" + +#: [roster]jid_error +msgid "Please enter a valid Jabber ID" +msgstr "" + +#: [roster]no_contacts_title +msgid "No contacts ?" +msgstr "" + +#: [roster]no_contacts_text +msgid "You can add one using the + button bellow" +msgstr "" + +#: [roster]show_hide +msgid "Show/Hide" +msgstr "" + +#: [roster]add_contact_info1 +msgid "Enter the Jabber ID of your contact." +msgstr "" + +#: [roster]add_contact_info2 +msgid "Press enter to validate." +msgstr "" + +#: [roster]jid +msgid "JID" +msgstr "" + +#: [roster]results +msgid "Results" +msgstr "" + +#: [roster]added +msgid "Contact added" +msgstr "" + +#: [roster]deleted +msgid "Contact deleted" +msgstr "" + +#: [roster]search +msgid "Search" +msgstr "" + +#: [share]error +msgid "This is not a valid url" +msgstr "" + +#: [share]success +msgid "Sharing the URL" +msgstr "" + +#: [statistics]title +msgid "Statistics" +msgstr "" + +#: [statistics]since +msgid "Since" +msgstr "" + +#: [statistics]sessions +msgid "Sessions" +msgstr "" + +#: [statistics]monthly_sub +msgid "Monthly Subscriptions" +msgstr "" + +#: [statistics]monthly_sub_cum +msgid "Monthly Subscriptions Cumulated" +msgstr "" + +#: [subscribe]info +msgid "Movim is a decentralized social network, before creating a new account you need to choose a server to register." +msgstr "" + +#: [subscribe]server_question +msgid "Your server here ?" +msgstr "" + +#: [subscribe]server_contact +msgid "Contact us to add yours to the officially supported servers list" +msgstr "" + +#: [feed]nope +msgid "No public feed for this contact" +msgstr "" + +#: [feed]nope_contact +msgid "No contact specified" +msgstr "" + +#: [upload]title +msgid "Upload a file" +msgstr "" + +#: [upload]choose +msgid "Choose a file to upload" +msgstr "" + +#: [vcard]title [page]profile +msgid "Profile" +msgstr "" + +#: [vcard]updated +msgid "Profile Updated" +msgstr "" + +#: [vcard]not_updated +msgid "Profile Not Updated" +msgstr "" + +#: [vcard]public +msgid "Your profile is now public" +msgstr "" + +#: [vcard]restricted +msgid "Your profile is now restricted" +msgstr "" + +#: [general]nickname +msgctxt "[general]nickname" +msgid "Nickname" +msgstr "" + +#: [accounts]twitter +msgid "Twitter" +msgstr "" + +#: [accounts]skype +msgid "Skype" +msgstr "" + +#: [accounts]yahoo +msgid "Yahoo" +msgstr "" + +#: [accounts]accounts_nickname +msgctxt "[accounts]accounts_nickname" +msgid "Nickname" +msgstr "" + +#: [accounts]accounts_yahoo +msgid "Yahoo Account" +msgstr "" + +#: [privacy]privacy_title +msgid "Privacy Level" +msgstr "" + +#: [privacy]privacy_question +msgid "Is this profile public ?" +msgstr "" + +#: [privacy]privacy_info +msgid "Please pay attention ! By making your profile public, all the information listed above will be available for all the Movim users and on the whole Internet." +msgstr "" + +#: [save]submit [button]submit msgid "Submit" msgstr "" -#: ../cache/locales.php:522 -msgid "Submitting" -msgstr "" - -#: ../cache/locales.php:523 +#: [save]reset [button]reset msgid "Reset" msgstr "" -#: ../cache/locales.php:524 +#: [visio]hung_up +msgid "Hung up" +msgstr "" + +#: [visio]busy +msgid "Your contact is busy" +msgstr "" + +#: [visio]declined +msgid "Declined" +msgstr "" + +#: [visio]calling +msgid "Is calling you" +msgstr "" + +#: [visio]call +msgid "Call" +msgstr "" + +#: [visio]hang_up +msgid "Hang up" +msgstr "" + +#: [visio]connection +msgid "Connection" +msgstr "" + +#: [global]no_js +msgid "You don't have javascript enabled. Good luck with that." +msgstr "" + +#: [global]description +msgid "Movim is a kickass distributed social networking platform that protect your privacy an comes with a set of awesome features." +msgstr "" + +#: [page]administration +msgid "Administration" +msgstr "" + +#: [page]home +msgid "Home" +msgstr "" + +#: [page]discover +msgid "Discover" +msgstr "" + +#: [page]explore +msgid "Explore" +msgstr "" + +#: [page]account_creation +msgid "Account Creation" +msgstr "" + +#: [page]avatar +msgid "Avatar" +msgstr "" + +#: [page]chats +msgid "Chats" +msgstr "" + +#: [page]server +msgid "Server" +msgstr "" + +#: [page]public_groups +msgid "Public Groups" +msgstr "" + +#: [page]viewer +msgid "Viewer" +msgstr "" + +#: [page]media +msgid "Media" +msgstr "" + +#: [page]blog +msgid "Blog" +msgstr "" + +#: [page]about +msgid "About" +msgstr "" + +#: [page]login +msgid "Login" +msgstr "" + +#: [page]feed +msgid "Feed" +msgstr "" + +#: [page]gallery +msgid "Gallery" +msgstr "" + +#: [page]visio +msgid "Visio-conference" +msgstr "" + +#: [page]pods +msgid "Pods" +msgstr "" + +#: [page]share +msgid "Share" +msgstr "" + +#: [page]room +msgid "Room" +msgstr "" + +#: [error]error +msgid "Error: %s" +msgstr "" + +#: [error]cannot_load_file +msgid "Cannot load file '%s'" +msgstr "" + +#: [error]route +msgid "Route error, please set all the parameters for the page %s" +msgstr "" + +#: [error]widget_load_error +msgid "Requested widget '%s' doesn't exist." +msgstr "" + +#: [error]widget_call_error +msgid "Requested event '%s' not registered." +msgstr "" + +#: [error]whoops +msgid "Whoops!" +msgstr "" + +#: [error]media_not_found +msgid "It seem that you don't have any pictures here?" +msgstr "" + +#: [error]media_ask_upload +msgid "You can try to upload a couple by going to the Media page" +msgstr "" + +#: [title]about +msgid "%s - About" +msgstr "" + +#: [title]account +msgid "%s - Account" +msgstr "" + +#: [title]administration +msgid "%s - Administration Panel" +msgstr "" + +#: [title]blog +msgid "%s - Blog" +msgstr "" + +#: [title]configuration +msgid "%s - Configuration" +msgstr "" + +#: [title]discover +msgid "%s - Discover" +msgstr "" + +#: [title]explore +msgid "%s - Explore" +msgstr "" + +#: [title]help +msgid "%s - Help Page" +msgstr "" + +#: [title]login +msgid "%s - Login to Movim" +msgstr "" + +#: [title]main +msgid "%s - Welcome to Movim" +msgstr "" + +#: [title]media +msgid "%s - Media" +msgstr "" + +#: [title]news +msgid "%s - News" +msgstr "" + +#: [title]node_configuration +msgid "%s - Group Configuration" +msgstr "" + +#: [title]node +msgid "%s - Group" +msgstr "" + +#: [title]not_found +msgid "%s - 404" +msgstr "" + +#: [title]profile +msgid "%s - Profile" +msgstr "" + +#: [title]server +msgid "%s - Server" +msgstr "" + +#: [button]validate +msgid "Validate" +msgstr "" + +#: [button]refresh +msgid "Refresh" +msgstr "" + +#: [button]add +msgid "Add" +msgstr "" + +#: [button]delete +msgid "Delete" +msgstr "" + +#: [button]cancel +msgid "Cancel" +msgstr "" + +#: [button]close +msgid "Close" +msgstr "" + +#: [button]update +msgid "Update" +msgstr "" + +#: [button]updating +msgid "Updating" +msgstr "" + +#: [button]submitting +msgid "Submitting" +msgstr "" + +#: [button]register msgid "Register" msgstr "" -#: ../cache/locales.php:525 +#: [button]unregister msgid "Unregister" msgstr "" -#: ../cache/locales.php:526 +#: [button]save msgid "Save" msgstr "" -#: ../cache/locales.php:527 +#: [button]clear msgid "Clear" msgstr "" -#: ../cache/locales.php:528 +#: [button]upload msgid "Upload" msgstr "" -#: ../cache/locales.php:529 +#: [button]come_in msgid "Come in!" msgstr "" -#: ../cache/locales.php:530 +#: [button]connecting msgid "Connecting" msgstr "" -#: ../cache/locales.php:531 +#: [button]bool_yes msgid "Yes" msgstr "" -#: ../cache/locales.php:532 +#: [button]bool_no msgid "No" msgstr "" -#: ../cache/locales.php:534 +#: [button]return msgid "Return" msgstr "" -#: ../cache/locales.php:535 +#: [button]accept msgid "Accept" msgstr "" -#: ../cache/locales.php:536 +#: [button]refuse msgid "Refuse" msgstr "" -#: ../cache/locales.php:537 +#: [button]next msgid "Next" msgstr "" -#: ../cache/locales.php:538 +#: [button]previous msgid "Previous" msgstr "" -#: ../cache/locales.php:539 -#, php-format +#: [step]step msgid "Step %s" msgstr "" -#: ../cache/locales.php:542 +#: [day]title msgid "Day" msgstr "" -#: ../cache/locales.php:543 +#: [day]monday msgid "Monday" msgstr "" -#: ../cache/locales.php:544 +#: [day]tuesday msgid "Tuesday" msgstr "" -#: ../cache/locales.php:545 +#: [day]wednesday msgid "Wednesday" msgstr "" -#: ../cache/locales.php:546 +#: [day]thursday msgid "Thursday" msgstr "" -#: ../cache/locales.php:547 +#: [day]friday msgid "Friday" msgstr "" -#: ../cache/locales.php:548 +#: [day]saturday msgid "Saturday" msgstr "" -#: ../cache/locales.php:549 +#: [day]sunday msgid "Sunday" msgstr "" -#: ../cache/locales.php:550 ../cache/locales.php:559 +#: [gender]nil +msgctxt "[gender]nil" msgid "None" msgstr "" -#: ../cache/locales.php:551 +#: [gender]male msgid "Male" msgstr "" -#: ../cache/locales.php:552 +#: [gender]female msgid "Female" msgstr "" -#: ../cache/locales.php:553 +#: [gender]other msgid "Other" msgstr "" -#: ../cache/locales.php:554 +#: [client]bot msgid "Bot" msgstr "" -#: ../cache/locales.php:555 +#: [client]desktop msgid "Desktop" msgstr "" -#: ../cache/locales.php:556 +#: [client]phone msgid "Phone" msgstr "" -#: ../cache/locales.php:557 +#: [client]web msgid "Web" msgstr "" -#: ../cache/locales.php:558 +#: [client]registered msgid "Registered" msgstr "" -#: ../cache/locales.php:560 +#: [marital]nil +msgctxt "[marital]nil" +msgid "None" +msgstr "" + +#: [marital]single msgid "Single" msgstr "" -#: ../cache/locales.php:561 +#: [marital]relationship msgid "In a relationship" msgstr "" -#: ../cache/locales.php:562 +#: [marital]married msgid "Married" msgstr "" -#: ../cache/locales.php:563 +#: [marital]divorced msgid "Divorced" msgstr "" -#: ../cache/locales.php:564 +#: [marital]widowed msgid "Widowed" msgstr "" -#: ../cache/locales.php:565 +#: [marital]cohabiting msgid "Cohabiting" msgstr "" -#: ../cache/locales.php:566 +#: [marital]union msgid "Civil Union" msgstr "" -#: ../cache/locales.php:567 +#: [flag]white msgid "Not shared" msgstr "" -#: ../cache/locales.php:568 +#: [flag]green msgid "Shared with one contact" msgstr "" -#: ../cache/locales.php:569 +#: [flag]orange msgid "Shared with all contacts" msgstr "" -#: ../cache/locales.php:570 +#: [flag]red msgid "Shared with the XMPP network" msgstr "" -#: ../cache/locales.php:571 +#: [flag]black msgid "Shared with the whole Internet" msgstr "" -#: ../cache/locales.php:572 +#: [presence]online msgid "Online" msgstr "" -#: ../cache/locales.php:573 +#: [presence]away msgid "Away" msgstr "" -#: ../cache/locales.php:574 +#: [presence]dnd msgid "Do Not Disturb" msgstr "" -#: ../cache/locales.php:575 +#: [presence]xa msgid "Extended Away" msgstr "" -#: ../cache/locales.php:576 +#: [presence]offline msgid "Offline" msgstr "" -#: ../cache/locales.php:577 +#: [presence]error msgid "Error" msgstr "" -#: ../cache/locales.php:578 +#: [mood]afraid msgid "afraid" msgstr "" -#: ../cache/locales.php:579 +#: [mood]amazed msgid "amazed" msgstr "" -#: ../cache/locales.php:580 +#: [mood]amorous msgid "amorous" msgstr "" -#: ../cache/locales.php:581 +#: [mood]angry msgid "angry" msgstr "" -#: ../cache/locales.php:582 +#: [mood]annoyed msgid "annoyed" msgstr "" -#: ../cache/locales.php:583 +#: [mood]anxious msgid "anxious" msgstr "" -#: ../cache/locales.php:584 +#: [mood]aroused msgid "aroused" msgstr "" -#: ../cache/locales.php:585 +#: [mood]ashamed msgid "ashamed" msgstr "" -#: ../cache/locales.php:586 +#: [mood]bored msgid "bored" msgstr "" -#: ../cache/locales.php:587 +#: [mood]brave msgid "brave" msgstr "" -#: ../cache/locales.php:588 +#: [mood]calm msgid "calm" msgstr "" -#: ../cache/locales.php:589 +#: [mood]cautious msgid "cautious" msgstr "" -#: ../cache/locales.php:590 +#: [mood]cold msgid "cold" msgstr "" -#: ../cache/locales.php:591 +#: [mood]confident msgid "confident" msgstr "" -#: ../cache/locales.php:592 +#: [mood]confused msgid "confused" msgstr "" -#: ../cache/locales.php:593 +#: [mood]contemplative msgid "contemplative" msgstr "" -#: ../cache/locales.php:594 +#: [mood]contented msgid "contented" msgstr "" -#: ../cache/locales.php:595 +#: [mood]cranky msgid "cranky" msgstr "" -#: ../cache/locales.php:596 +#: [mood]crazy msgid "crazy" msgstr "" -#: ../cache/locales.php:597 +#: [mood]creative msgid "creative" msgstr "" -#: ../cache/locales.php:598 +#: [mood]curious msgid "curious" msgstr "" -#: ../cache/locales.php:599 +#: [mood]dejected msgid "dejected" msgstr "" -#: ../cache/locales.php:600 +#: [mood]depressed msgid "depressed" msgstr "" -#: ../cache/locales.php:601 +#: [mood]disappointed msgid "disappointed" msgstr "" -#: ../cache/locales.php:602 +#: [mood]disgusted msgid "disgusted" msgstr "" -#: ../cache/locales.php:603 +#: [mood]dismayed msgid "dismayed" msgstr "" -#: ../cache/locales.php:604 +#: [mood]distracted msgid "distracted" msgstr "" -#: ../cache/locales.php:605 +#: [mood]embarrassed msgid "embarrassed" msgstr "" -#: ../cache/locales.php:606 +#: [mood]envious msgid "envious" msgstr "" -#: ../cache/locales.php:607 +#: [mood]excited msgid "excited" msgstr "" -#: ../cache/locales.php:608 +#: [mood]flirtatious msgid "flirtatious" msgstr "" -#: ../cache/locales.php:609 +#: [mood]frustated msgid "frustated" msgstr "" -#: ../cache/locales.php:610 +#: [mood]grateful msgid "grateful" msgstr "" -#: ../cache/locales.php:611 +#: [mood]grieving msgid "grieving" msgstr "" -#: ../cache/locales.php:612 +#: [mood]grumpy msgid "grumpy" msgstr "" -#: ../cache/locales.php:613 +#: [mood]guilty msgid "guilty" msgstr "" -#: ../cache/locales.php:614 +#: [mood]happy msgid "happy" msgstr "" -#: ../cache/locales.php:615 +#: [mood]hopeful msgid "hopeful" msgstr "" -#: ../cache/locales.php:616 +#: [mood]hot msgid "hot" msgstr "" -#: ../cache/locales.php:617 +#: [mood]humbled msgid "humbled" msgstr "" -#: ../cache/locales.php:618 +#: [mood]humiliated msgid "humiliated" msgstr "" -#: ../cache/locales.php:619 +#: [mood]hungry msgid "hungry" msgstr "" -#: ../cache/locales.php:620 +#: [mood]hurt msgid "hurt" msgstr "" -#: ../cache/locales.php:621 +#: [mood]impressed msgid "impressed" msgstr "" -#: ../cache/locales.php:622 +#: [mood]in_awe msgid "in awe" msgstr "" -#: ../cache/locales.php:623 +#: [mood]in_love msgid "in love" msgstr "" -#: ../cache/locales.php:624 +#: [mood]indignant msgid "indignant" msgstr "" -#: ../cache/locales.php:625 +#: [mood]interested msgid "interested" msgstr "" -#: ../cache/locales.php:626 +#: [mood]intoxicated msgid "intoxicated" msgstr "" -#: ../cache/locales.php:627 +#: [mood]invincible msgid "invincible" msgstr "" -#: ../cache/locales.php:628 +#: [mood]jealous msgid "jealous" msgstr "" -#: ../cache/locales.php:629 +#: [mood]lonely msgid "lonely" msgstr "" -#: ../cache/locales.php:630 +#: [mood]lost msgid "lost" msgstr "" -#: ../cache/locales.php:631 +#: [mood]lucky msgid "lucky" msgstr "" -#: ../cache/locales.php:632 +#: [mood]mean msgid "mean" msgstr "" -#: ../cache/locales.php:633 +#: [mood]moody msgid "moody" msgstr "" -#: ../cache/locales.php:634 +#: [mood]nervous msgid "nervous" msgstr "" -#: ../cache/locales.php:635 +#: [mood]neutral msgid "neutral" msgstr "" -#: ../cache/locales.php:636 +#: [mood]offended msgid "offended" msgstr "" -#: ../cache/locales.php:637 +#: [mood]outraged msgid "outraged" msgstr "" -#: ../cache/locales.php:638 +#: [mood]playful msgid "playful" msgstr "" -#: ../cache/locales.php:639 +#: [mood]proud msgid "proud" msgstr "" -#: ../cache/locales.php:640 +#: [mood]relaxed msgid "relaxed" msgstr "" -#: ../cache/locales.php:641 +#: [mood]relieved msgid "relieved" msgstr "" -#: ../cache/locales.php:642 -msgid "remorseful" -msgstr "" - -#: ../cache/locales.php:643 +#: [mood]restless msgid "restless" msgstr "" -#: ../cache/locales.php:644 +#: [mood]sad msgid "sad" msgstr "" -#: ../cache/locales.php:645 +#: [mood]sarcastic msgid "sarcastic" msgstr "" -#: ../cache/locales.php:646 +#: [mood]satisfied msgid "satisfied" msgstr "" -#: ../cache/locales.php:647 +#: [mood]serious msgid "serious" msgstr "" -#: ../cache/locales.php:648 +#: [mood]shocked msgid "shocked" msgstr "" -#: ../cache/locales.php:649 +#: [mood]shy msgid "shy" msgstr "" -#: ../cache/locales.php:650 +#: [mood]sick msgid "sick" msgstr "" -#: ../cache/locales.php:651 +#: [mood]sleepy msgid "sleepy" msgstr "" -#: ../cache/locales.php:652 +#: [mood]spontaneous msgid "spontaneous" msgstr "" -#: ../cache/locales.php:653 +#: [mood]stressed msgid "stressed" msgstr "" -#: ../cache/locales.php:654 +#: [mood]strong msgid "strong" msgstr "" -#: ../cache/locales.php:655 +#: [mood]surprised msgid "surprised" msgstr "" -#: ../cache/locales.php:656 +#: [mood]thankful msgid "thankful" msgstr "" -#: ../cache/locales.php:657 +#: [mood]thirsty msgid "thirsty" msgstr "" -#: ../cache/locales.php:658 +#: [mood]tired msgid "tired" msgstr "" -#: ../cache/locales.php:659 +#: [mood]undefined msgid "undefined" msgstr "" -#: ../cache/locales.php:660 +#: [mood]weak msgid "weak" msgstr "" -#: ../cache/locales.php:661 +#: [mood]worried msgid "worried" msgstr "" -#: ../cache/locales.php:662 +#: [month]title msgid "Month" msgstr "" -#: ../cache/locales.php:663 +#: [month]january msgid "January" msgstr "" -#: ../cache/locales.php:664 +#: [month]february msgid "February" msgstr "" -#: ../cache/locales.php:665 +#: [month]march msgid "March" msgstr "" -#: ../cache/locales.php:666 +#: [month]april msgid "April" msgstr "" -#: ../cache/locales.php:667 +#: [month]may msgid "May" msgstr "" -#: ../cache/locales.php:668 +#: [month]june msgid "June" msgstr "" -#: ../cache/locales.php:669 +#: [month]july msgid "July" msgstr "" -#: ../cache/locales.php:670 +#: [month]august msgid "August" msgstr "" -#: ../cache/locales.php:671 +#: [month]september msgid "September" msgstr "" -#: ../cache/locales.php:672 +#: [month]october msgid "October" msgstr "" -#: ../cache/locales.php:673 +#: [month]november msgid "November" msgstr "" -#: ../cache/locales.php:674 +#: [month]december msgid "December" msgstr "" -#: ../cache/locales.php:675 +#: [year]title msgid "Year" msgstr "" -#: ../cache/locales.php:676 +#: [date]today msgid "Today" msgstr "" -#: ../cache/locales.php:677 +#: [date]tomorrow msgid "Tomorrow" msgstr "" -#: ../cache/locales.php:678 +#: [date]yesterday msgid "Yesterday" msgstr "" -#: ../cache/locales.php:679 -#, php-format -msgid " %d days ago" +#: [date]ago +msgid "%d days ago" msgstr "" -#: ../cache/locales.php:680 +#: [date]day msgid "day" msgstr "" -#: ../cache/locales.php:682 +#: [post]whats_new msgid "What's new ?" msgstr "" -#: ../cache/locales.php:683 +#: [post]place msgid "Place" msgstr "" -#: ../cache/locales.php:684 +#: [post]by msgid "by" msgstr "" -#: ../cache/locales.php:685 +#: [post]geolocalisation msgid "Geolocalisation" msgstr "" -#: ../cache/locales.php:686 +#: [post]email msgid "email" msgstr "" -#: ../cache/locales.php:688 +#: [post]no_comments msgid "No comments yet" msgstr "" -#: ../cache/locales.php:689 +#: [post]no_comments_stream msgid "No comments stream" msgstr "" -#: ../cache/locales.php:690 +#: [post]no_load msgid "Your feed cannot be loaded." msgstr "" -#: ../cache/locales.php:691 +#: [post]older msgid "Get older posts" msgstr "" -#: ../cache/locales.php:692 -#, php-format +#: [post]new_items msgid "%s new items" msgstr "" -#: ../cache/locales.php:693 +#: [post]comment_error msgid "Comment publication error" msgstr "" -#: ../cache/locales.php:694 +#: [post]comments_older msgid "Show the older comments" msgstr "" -#: ../cache/locales.php:695 -msgid "Loading comments ..." +#: [post]comments_loading +msgid "Loading comments..." msgstr "" -#: ../cache/locales.php:696 +#: [post]comments_get msgid "Get the comments" msgstr "" -#: ../cache/locales.php:697 +#: [post]comment_add msgid "Add a comment" msgstr "" -#: ../cache/locales.php:698 +#: [post]share msgid "Share with" msgstr "" -#: ../cache/locales.php:699 +#: [post]share_everyone msgid "Everyone" msgstr "" -#: ../cache/locales.php:700 +#: [post]share_your_contacts msgid "Your contacts" msgstr "" -#: ../cache/locales.php:702 +#: [post]updated msgid "Updated" msgstr "" -#: ../cache/locales.php:703 +#: [post]content_not_found msgid "Content not found" msgstr "" -#: ../cache/locales.php:704 +#: [post]default_title msgid "Contact publication" msgstr "" -#: ../cache/locales.php:705 +#: [post]comments msgid "Comments" msgstr "" -#: ../cache/locales.php:706 +#: [api]error msgid "The API is not reachable, try again later" msgstr "" -#: ../cache/locales.php:707 +#: [field]type_here msgid "Type here" msgstr "" diff --git a/sources/locales/id.po b/sources/locales/id.po index 496a873..2365384 100644 --- a/sources/locales/id.po +++ b/sources/locales/id.po @@ -3,2622 +3,2738 @@ # This file is distributed under the same license as the movim package. # FIRST AUTHOR , 2013. # +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/About/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Account/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AccountNext/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AdHoc/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AdminDB/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AdminMain/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AdminTest/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Api/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Avatar/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Blog/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Bookmark/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Chat/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Chats/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/ConfigData/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Config/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Contact/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Group/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Groups/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Header/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Hello/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Help/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Init/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Location/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/LoginAnonymous/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Login/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Menu/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/NodeAffiliations/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/NodeSubscriptions/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Notifs/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Post/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Presence/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Publish/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/PubsubSubscriptionConfig/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Rooms/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Roster/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Share/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Statistics/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Subscribe/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Syndication/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Upload/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Vcard4/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/VisioExt/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Visio/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../locales/locales.ini msgid "" msgstr "" "Project-Id-Version: movim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-06-08 22:06+0200\n" +"POT-Creation-Date: 2015-08-20 15:17+0200\n" "PO-Revision-Date: 2015-06-09 12:21+0000\n" "Last-Translator: edhelas \n" "Language-Team: Indonesian \n" +"Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2015-06-18 21:08+0000\n" "X-Generator: Launchpad (build 17570)\n" -"Language: id\n" -#: ../cache/locales.php:2 +#: [about]thanks msgid "Thanks" msgstr "" -#: ../cache/locales.php:3 +#: [about]developers msgid "Developers" msgstr "" -#: ../cache/locales.php:4 +#: [about]translators msgid "Translators" msgstr "" -#: ../cache/locales.php:5 +#: [about]software msgid "Software" msgstr "" -#: ../cache/locales.php:6 +#: [about]resources msgid "Resources" msgstr "" -#: ../cache/locales.php:7 ../cache/locales.php:83 ../cache/locales.php:85 +#: [about]api [schema]api [api]title msgid "API" msgstr "" -#: ../cache/locales.php:8 -msgid "" -"Movim is an XMPP-based communication platform. All the project, except the " -"following software and resources, is under" +#: [about]info +msgid "Movim is an XMPP-based communication platform. All the project, except the following software and resources, is under" msgstr "" -#: ../cache/locales.php:9 +#: [account]title msgid "Account" msgstr "" -#: ../cache/locales.php:10 -msgid "The password has been updated" -msgstr "" +#: [account]password_change_title +#, fuzzy +msgid "Change my password" +msgstr "Buat vCard ku" -#: ../cache/locales.php:11 -msgid "Please provide a valid password (6 characters minimum)" -msgstr "" - -#: ../cache/locales.php:12 -msgid "The provided passwords are not the same" -msgstr "" - -#: ../cache/locales.php:13 -msgid "Delete my account" -msgstr "" - -#: ../cache/locales.php:14 -msgid "" -"You will delete your XMPP account and all the relative information linked to " -"it (profile, contacts and publications)." -msgstr "" - -#: ../cache/locales.php:15 -msgid "Are you sure that you want to delete it ?" -msgstr "" - -#: ../cache/locales.php:16 ../cache/locales.php:411 -msgid "Create a new account" -msgstr "" - -#: ../cache/locales.php:17 -msgid "No account creation form found on the server" -msgstr "" - -#: ../cache/locales.php:18 ../cache/locales.php:172 -msgid "on" -msgstr "pada" - -#: ../cache/locales.php:19 -msgid "Your acccount has been successfully registered" -msgstr "" - -#: ../cache/locales.php:20 -msgid "Loading" -msgstr "" - -#: ../cache/locales.php:21 -msgid "Not Acceptable" -msgstr "" - -#: ../cache/locales.php:22 -msgid "The registration system of this server is currently unavailable" -msgstr "" - -#: ../cache/locales.php:23 -msgid "" -"This server use an external system for the registration, please click on the " -"following URL." -msgstr "" - -#: ../cache/locales.php:24 -msgid "Actions" -msgstr "Tindakan" - -#: ../cache/locales.php:25 ../cache/locales.php:82 -msgid "Database" -msgstr "" - -#: ../cache/locales.php:26 -msgid "Modl wasn't able to connect to the database" -msgstr "" - -#: ../cache/locales.php:27 -msgid "Movim is connected to the database" -msgstr "" - -#: ../cache/locales.php:28 -msgid "The database need to be updated" -msgstr "" - -#: ../cache/locales.php:29 -msgid "Movim database is up to date" -msgstr "" - -#: ../cache/locales.php:30 -msgid "Database Type" -msgstr "" - -#: ../cache/locales.php:31 ../cache/locales.php:50 ../cache/locales.php:540 -msgid "Username" -msgstr "" - -#: ../cache/locales.php:32 ../cache/locales.php:51 ../cache/locales.php:282 -#: ../cache/locales.php:541 +#: [account]password [db]password [credentials]password [form]password +#: [input]password msgid "Password" msgstr "Kata sandi" -#: ../cache/locales.php:33 +#: [account]password_confirmation +msgid "Password confirmation" +msgstr "" + +#: [account]password_changed +msgid "The password has been updated" +msgstr "" + +#: [account]password_not_valid +msgid "Please provide a valid password (6 characters minimum)" +msgstr "" + +#: [account]password_not_same +msgid "The provided passwords are not the same" +msgstr "" + +#: [account]delete_title +msgid "Delete my account" +msgstr "" + +#: [account]delete +msgid "Delete your account" +msgstr "" + +#: [account]delete_text +msgid "You will delete your XMPP account and all the relative information linked to it (profile, contacts and publications)." +msgstr "" + +#: [account]delete_text_confirm +msgid "Are you sure that you want to delete it ?" +msgstr "" + +#: [account]gateway_title +msgid "Gateway" +msgstr "" + +#: [create]title [subscribe]title +msgid "Create a new account" +msgstr "" + +#: [create]notfound +msgid "No account creation form found on the server" +msgstr "" + +#: [create]server_on +msgid "on" +msgstr "pada" + +#: [create]successfull +msgid "Your acccount has been successfully registered" +msgstr "" + +#: [create]loading +msgid "Loading" +msgstr "" + +#: [error]not_acceptable +msgid "Not Acceptable" +msgstr "" + +#: [error]service_unavailable +msgid "The registration system of this server is currently unavailable" +msgstr "" + +#: [oob]about +msgid "This server use an external system for the registration, please click on the following URL." +msgstr "" + +#: [adhoc]title +msgid "Actions" +msgstr "Tindakan" + +#: [db]legend [schema]database +msgid "Database" +msgstr "" + +#: [db]connect_error +msgid "Modl wasn't able to connect to the database" +msgstr "" + +#: [db]connect_success +msgid "Movim is connected to the database" +msgstr "" + +#: [db]update +msgid "The database need to be updated" +msgstr "" + +#: [db]up_to_date +msgid "Movim database is up to date" +msgstr "" + +#: [db]type +msgid "Database Type" +msgstr "" + +#: [db]username [credentials]username [input]username +msgid "Username" +msgstr "" + +#: [db]host msgid "Host" msgstr "" -#: ../cache/locales.php:34 +#: [db]port msgid "Port" msgstr "" -#: ../cache/locales.php:35 -msgid "Database Name" +#: [db]name +msgid "Database sName" msgstr "" -#: ../cache/locales.php:36 +#: [admin]general msgid "General Settings" msgstr "" -#: ../cache/locales.php:37 +#: [general]theme msgid "Theme" msgstr "" -#: ../cache/locales.php:38 +#: [general]language msgid "Default language" msgstr "" -#: ../cache/locales.php:39 -msgid "Environment" -msgstr "" - -#: ../cache/locales.php:40 +#: [general]log_verbosity msgid "Log verbosity" msgstr "" -#: ../cache/locales.php:41 +#: [general]timezone msgid "Server Timezone" msgstr "" -#: ../cache/locales.php:42 +#: [general]limit msgid "User folder size limit (in bytes)" msgstr "" -#: ../cache/locales.php:43 +#: [websocket]title msgid "WebSocket Configuration" msgstr "" -#: ../cache/locales.php:44 +#: [websocket]info msgid "Enter here a valid WebSocket URI in the form" msgstr "" -#: ../cache/locales.php:45 +#: [websocket]label msgid "WebSocket URI" msgstr "" -#: ../cache/locales.php:46 -msgid "" -"If you change the URI, please restart the daemon to reload the configuration" +#: [websocket]save_info +msgid "If you change the URI, please restart the daemon to reload the configuration" msgstr "" -#: ../cache/locales.php:47 +#: [websocket]publics msgid "Public WebSockets" msgstr "" -#: ../cache/locales.php:48 +#: [credentials]title msgid "Administration Credential" msgstr "" -#: ../cache/locales.php:49 +#: [credentials]info msgid "Change the default credentials admin/password" msgstr "" -#: ../cache/locales.php:52 +#: [credentials]re_password msgid "Retype password" msgstr "" -#: ../cache/locales.php:53 +#: [whitelist]title msgid "Whitelist - XMPP Server" msgstr "" -#: ../cache/locales.php:54 -msgid "" -"If you want to specify a list of authorized XMPP servers on your Movim pod " -"and forbid the connection on all the others please put their domain name " -"here, with comma (ex: movim.eu,jabber.fr)" +#: [whitelist]info1 +msgid "If you want to specify a list of authorized XMPP servers on your Movim pod and forbid the connection on all the others please put their domain name here, with comma (ex: movim.eu,jabber.fr)" msgstr "" -#: ../cache/locales.php:55 -msgid "" -"Leave this field blank if you allow the access to all the XMPP accounts." +#: [whitelist]info2 +msgid "Leave this field blank if you allow the access to all the XMPP accounts." msgstr "" -#: ../cache/locales.php:56 +#: [whitelist]label msgid "List of whitelisted XMPP servers" msgstr "" -#: ../cache/locales.php:57 ../cache/locales.php:61 +#: [information]title +#, fuzzy +msgctxt "[information]title" msgid "Information Message" -msgstr "" +msgstr "Informasi Klien" -#: ../cache/locales.php:58 +#: [information]description msgid "Description" msgstr "" -#: ../cache/locales.php:59 +#: [information]info1 msgid "This message will be displayed on the login page" msgstr "" -#: ../cache/locales.php:60 -msgid "Leave this field blank if you don't want to show any message." +#: [information]info2 +msgid "Leave this field blank if you dont want to show any message." msgstr "" -#: ../cache/locales.php:62 +#: [information]label +#, fuzzy +msgctxt "[information]label" +msgid "Information Message" +msgstr "Informasi Klien" + +#: [log]empty msgid "Empty" msgstr "" -#: ../cache/locales.php:63 +#: [log]syslog msgid "Syslog" msgstr "" -#: ../cache/locales.php:64 +#: [log]syslog_files msgid "Syslog and files" msgstr "" -#: ../cache/locales.php:65 +#: [rewrite]title msgid "URL Rewriting" msgstr "" -#: ../cache/locales.php:66 +#: [rewrite]info msgid "The URL Rewriting can be enabled" msgstr "" -#: ../cache/locales.php:67 +#: [admin]compatibility msgid "General Overview" msgstr "" -#: ../cache/locales.php:68 -msgid "" -"Movim has found some issues or things that need to be fixed or improved" +#: [compatibility]info +msgid "Movim has found some issues or things that need to be fixed or improved" msgstr "" -#: ../cache/locales.php:69 -#, php-format +#: [compatibility]php1 msgid "Update your PHP-Version: %s" msgstr "" -#: ../cache/locales.php:70 +#: [compatibility]php2 msgid "Required: 5.3.0" msgstr "" -#: ../cache/locales.php:71 +#: [compatibility]curl msgid "Install the php5-curl library" msgstr "" -#: ../cache/locales.php:72 +#: [compatibility]imagick msgid "Install the php5-imagick library" msgstr "" -#: ../cache/locales.php:73 +#: [compatibility]gd msgid "Install the php5-gd library" msgstr "" -#: ../cache/locales.php:74 -msgid "Read and write rights for the webserver in Movim's root directory" +#: [compatibility]rights +msgid "Read and write rights for the webserver in Movims root directory" msgstr "" -#: ../cache/locales.php:75 +#: [compatibility]rewrite msgid "The URL Rewriting support is currently disabled" msgstr "" -#: ../cache/locales.php:76 +#: [compatibility]db msgid "The database need to be updated, go to the database panel to fix this" msgstr "" -#: ../cache/locales.php:77 -msgid "" -"WebSocket connection error, check if the Movim Daemon is running and is " -"reacheable" +#: [compatibility]websocket +msgid "WebSocket connection error, check if the Movim Daemon is running and is reachable" msgstr "" -#: ../cache/locales.php:78 -msgid "" -"XMPP Websocket connection error, please check the validity of the URL given " -"in the General Configuration" +#: [compatibility]xmpp_websocket +msgid "XMPP Websocket connection error, please check the validity of the URL given in the General Configuration" msgstr "" -#: ../cache/locales.php:79 +#: [schema]browser msgid "Browser" msgstr "" -#: ../cache/locales.php:80 +#: [schema]movim msgid "Movim Core" msgstr "" -#: ../cache/locales.php:81 +#: [schema]daemon msgid "Movim Daemon" msgstr "" -#: ../cache/locales.php:84 +#: [schema]xmpp msgid "XMPP" msgstr "" -#: ../cache/locales.php:86 -#, php-format -msgid "" -"Here you can register your pod on the official %sMovim API%s and be listed " -"on %sthe pods page%s." +#: [api]info +msgid "Here you can register your pod on the official %sMovim API%s and be listed on %sthe pods page%s." msgstr "" -#: ../cache/locales.php:87 +#: [api]register msgid "Your pod is not registered on the API" msgstr "" -#: ../cache/locales.php:88 +#: [api]registered msgid "Your pod is registered on the API" msgstr "" -#: ../cache/locales.php:89 +#: [api]wait msgid "Your pod is not yet validated" msgstr "" -#: ../cache/locales.php:90 +#: [api]validated msgid "Your pod is validated" msgstr "" -#: ../cache/locales.php:91 -msgid "" -"You asked to be removed from the API, this request will be processed in a " -"couple of hours" +#: [api]unregister +msgid "You asked to be removed from the API, this request will be processed in a couple of hours" msgstr "" -#: ../cache/locales.php:92 ../cache/locales.php:147 +#: [api]conf_updated [config]updated msgid "Configuration updated" msgstr "" -#: ../cache/locales.php:93 +#: [avatar]file msgid "File" msgstr "" -#: ../cache/locales.php:94 +#: [avatar]use_it msgid "Use it" msgstr "" -#: ../cache/locales.php:95 +#: [avatar]webcam msgid "Webcam" msgstr "Webcam" -#: ../cache/locales.php:96 +#: [avatar]cheese msgid "Cheese !" msgstr "Senyum !" -#: ../cache/locales.php:97 +#: [avatar]snapshot msgid "Take a webcam snapshot" msgstr "Ambil gambar dari webcam" -#: ../cache/locales.php:98 +#: [avatar]updated msgid "Avatar Updated" msgstr "" -#: ../cache/locales.php:99 +#: [avatar]not_updated msgid "Avatar Not Updated" msgstr "" -#: ../cache/locales.php:100 ../cache/locales.php:415 -#, php-format +#: [blog]title [feed]title msgid "%s's feed" msgstr "" -#: ../cache/locales.php:101 +#: [blog]empty msgid "This user has not posted anything right now" msgstr "" -#: ../cache/locales.php:102 +#: [title]conferences msgid "Conferences" msgstr "Konferensi" -#: ../cache/locales.php:103 ../cache/locales.php:193 ../cache/locales.php:217 -#: ../cache/locales.php:468 +#: [title]groups [group]empty_title [menu]groups [page]groups msgid "Groups" msgstr "Grup" -#: ../cache/locales.php:104 +#: [chatroom]add msgid "Add a new Chat Room" msgstr "" -#: ../cache/locales.php:105 ../cache/locales.php:368 +#: [chatroom]id [chatrooms]id msgid "Chat Room ID" msgstr "" -#: ../cache/locales.php:106 ../cache/locales.php:116 ../cache/locales.php:156 -#: ../cache/locales.php:361 ../cache/locales.php:369 ../cache/locales.php:424 +#: [chatroom]name +#, fuzzy +msgctxt "[chatroom]name" msgid "Name" msgstr "Nama" -#: ../cache/locales.php:107 ../cache/locales.php:157 ../cache/locales.php:371 -#: ../cache/locales.php:425 +#: [chatroom]nickname [general]nickname [chatrooms]nickname msgid "Nickname" msgstr "Panggilan" -#: ../cache/locales.php:108 +#: [chatroom]autojoin_label msgid "Do you want do join automaticaly this Chat Room ?" msgstr "" -#: ../cache/locales.php:109 ../cache/locales.php:372 +#: [chatroom]bad_id [chatrooms]bad_id msgid "Bad Chatroom ID" msgstr "ID Chatroom Salah" -#: ../cache/locales.php:110 ../cache/locales.php:373 +#: [chatroom]empty_name [chatrooms]empty_name msgid "Empty name" msgstr "Nama kosong" -#: ../cache/locales.php:111 ../cache/locales.php:380 +#: [bookmarks]updated msgid "Bookmarks updated" msgstr "Bookmark diperbarui" -#: ../cache/locales.php:112 -msgid "An error occured : " +#: [bookmarks]error +#, fuzzy +msgid "An error occured :" msgstr "Terjadi kesalahan : " -#: ../cache/locales.php:113 +#: [bookmarks]configure msgid "Configure" msgstr "" -#: ../cache/locales.php:114 +#: [url]add msgid "Add a new URL" msgstr "" -#: ../cache/locales.php:115 +#: [url]url msgid "URL" msgstr "" -#: ../cache/locales.php:117 +#: [url]name +#, fuzzy +msgctxt "[url]name" +msgid "Name" +msgstr "Nama" + +#: [message]published msgid "Message Published" msgstr "" -#: ../cache/locales.php:118 ../cache/locales.php:138 +#: [message]encrypted msgid "Encrypted message" msgstr "" -#: ../cache/locales.php:119 +#: [message]composing [chats]composing msgid "Composing..." msgstr "Menulis..." -#: ../cache/locales.php:120 +#: [message]paused [chats]paused msgid "Paused..." msgstr "" -#: ../cache/locales.php:121 +#: [message]gone msgid "Contact gone" msgstr "" -#: ../cache/locales.php:122 -#, php-format +#: [chat]attention msgid "%s needs your attention" msgstr "" -#: ../cache/locales.php:123 +#: [chat]placeholder msgid "Your message here..." msgstr "" -#: ../cache/locales.php:124 +#: [chat]smileys msgid "Smileys" msgstr "" -#: ../cache/locales.php:125 ../cache/locales.php:139 +#: [chat]empty_title [button]chat msgid "Chat" msgstr "Obrolan" -#: ../cache/locales.php:126 +#: [chat]empty_text msgid "Discuss with your contacts" msgstr "" -#: ../cache/locales.php:127 -msgid "Members" -msgstr "" - -#: ../cache/locales.php:128 ../cache/locales.php:376 -msgid "Connected to the chatroom" -msgstr "" - -#: ../cache/locales.php:129 ../cache/locales.php:377 -msgid "Disconnected from the chatroom" -msgstr "" - -#: ../cache/locales.php:130 ../cache/locales.php:200 ../cache/locales.php:469 -msgid "Configuration" -msgstr "Konfigurasi" - -#: ../cache/locales.php:131 -msgid "Configuration saved" -msgstr "" - -#: ../cache/locales.php:132 -msgid "Subject" -msgstr "" - -#: ../cache/locales.php:133 -msgid "Subject changed" -msgstr "" - -#: ../cache/locales.php:134 -msgid "Open a new conversation by clicking on the plus button bellow" -msgstr "" - -#: ../cache/locales.php:135 -msgid "Chat with a contact" -msgstr "" - -#: ../cache/locales.php:136 +#: [chat]frequent [chats]frequent msgid "Frequent contacts" msgstr "" -#: ../cache/locales.php:137 +#: [chatroom]members +msgid "Members" +msgstr "" + +#: [chatroom]connected [chatrooms]connected +msgid "Connected to the chatroom" +msgstr "" + +#: [chatroom]disconnected [chatrooms]disconnected +msgid "Disconnected from the chatroom" +msgstr "" + +#: [chatroom]config [group]configuration [page]configuration +msgid "Configuration" +msgstr "Konfigurasi" + +#: [chatroom]config_saved +msgid "Configuration saved" +msgstr "" + +#: [chatroom]subject +msgid "Subject" +msgstr "" + +#: [chatroom]subject_changed +msgid "Subject changed" +msgstr "" + +#: [chats]empty_title +msgid "No chats yet..." +msgstr "" + +#: [chats]empty +msgid "Open a new conversation by clicking on the plus button bellow or visit the Contacts page." +msgstr "" + +#: [chats]add +msgid "Chat with a contact" +msgstr "" + +#: [chats]more msgid "Load more contacts" msgstr "" -#: ../cache/locales.php:140 -msgid "General" -msgstr "" - -#: ../cache/locales.php:141 -msgid "Language" -msgstr "" - -#: ../cache/locales.php:142 -msgid "Roster display" -msgstr "" - -#: ../cache/locales.php:143 -msgid "Show the offline contacts" -msgstr "" - -#: ../cache/locales.php:144 -msgid "Hide the offline contacts" -msgstr "" - -#: ../cache/locales.php:145 -msgid "Appearence" -msgstr "" - -#: ../cache/locales.php:146 -msgid "This configuration is shared wherever you are connected !" -msgstr "" - -#: ../cache/locales.php:148 -msgid "Notify on incoming message" -msgstr "" - -#: ../cache/locales.php:149 -msgid "Use desktop notifications" -msgstr "" - -#: ../cache/locales.php:150 +#: [title]data msgid "Data" msgstr "" -#: ../cache/locales.php:151 +#: [title]cache msgid "Cache" msgstr "" -#: ../cache/locales.php:152 ../cache/locales.php:218 ../cache/locales.php:466 +#: [title]contacts [menu]contacts [page]contacts msgid "Contacts" msgstr "" -#: ../cache/locales.php:153 ../cache/locales.php:480 +#: [title]posts [page]posts msgid "Posts" msgstr "" -#: ../cache/locales.php:154 +#: [title]messages msgid "Messages" msgstr "" -#: ../cache/locales.php:155 ../cache/locales.php:423 +#: [config]general +msgid "General" +msgstr "" + +#: [config]language +msgid "Language" +msgstr "" + +#: [config]roster +msgid "Roster display" +msgstr "" + +#: [config]roster_show +msgid "Show the offline contacts" +msgstr "" + +#: [config]roster_hide +msgid "Hide the offline contacts" +msgstr "" + +#: [config]appearence +msgid "Appearence" +msgstr "" + +#: [config]info +msgid "This configuration is shared wherever you are connected" +msgstr "" + +#: [notifications]message +msgid "Notify on incoming message" +msgstr "" + +#: [notifications]desktop +msgid "Use desktop notifications" +msgstr "" + +#: [general]legend [general]general_title msgid "General Informations" msgstr "Informasi Umum" -#: ../cache/locales.php:158 ../cache/locales.php:427 +#: [general]name [public_groups]name [chatrooms]name +msgid "Name" +msgstr "Nama" + +#: [general]date_of_birth msgid "Date of Birth" msgstr "Tanggal Lahir" -#: ../cache/locales.php:159 ../cache/locales.php:428 +#: [general]gender msgid "Gender" msgstr "Jenis kelamin" -#: ../cache/locales.php:160 ../cache/locales.php:429 +#: [general]marital msgid "Marital Status" msgstr "Status Pernikahan" -#: ../cache/locales.php:161 ../cache/locales.php:426 +#: [general]email msgid "Email" msgstr "Email" -#: ../cache/locales.php:162 ../cache/locales.php:430 +#: [general]website msgid "Website" msgstr "Situs web" -#: ../cache/locales.php:163 ../cache/locales.php:431 +#: [general]about msgid "About Me" msgstr "Tentang Saya" -#: ../cache/locales.php:164 +#: [general]accounts msgid "Other Accounts" msgstr "" -#: ../cache/locales.php:165 +#: [general]tune msgid "Is Listening" msgstr "" -#: ../cache/locales.php:166 ../cache/locales.php:432 +#: [position]legend [position]position_title msgid "Geographic Position" msgstr "Posisi Geografis" -#: ../cache/locales.php:167 ../cache/locales.php:433 +#: [position]locality msgid "Locality" msgstr "Lokalitas" -#: ../cache/locales.php:168 ../cache/locales.php:434 +#: [position]country msgid "Country" msgstr "Negara" -#: ../cache/locales.php:169 +#: [mood]title msgid "Mood" msgstr "Mood" -#: ../cache/locales.php:170 +#: [mood]im msgid "I'm " msgstr "Aku " -#: ../cache/locales.php:171 +#: [listen]title msgid "Listening" msgstr "Mendengarkan" -#: ../cache/locales.php:173 +#: [last]title msgid "Last seen" msgstr "Terakhir terlihat" -#: ../cache/locales.php:174 +#: [client]title msgid "Client Informations" msgstr "Informasi Klien" -#: ../cache/locales.php:175 +#: [explore]last_registered msgid "Last registered" msgstr "Terdaftar terakhir" -#: ../cache/locales.php:176 +#: [explore]explore msgid "Find some new friends" msgstr "" -#: ../cache/locales.php:177 ../cache/locales.php:533 +#: [edit]title [button]edit msgid "Edit" msgstr "" -#: ../cache/locales.php:178 +#: [edit]alias msgid "Alias" msgstr "Alias" -#: ../cache/locales.php:179 +#: [edit]group msgid "Group" msgstr "Grup" -#: ../cache/locales.php:180 ../cache/locales.php:400 +#: [edit]updated [roster]updated msgid "Contact updated" msgstr "" -#: ../cache/locales.php:181 +#: [delete]title msgid "Are you sure?" msgstr "" -#: ../cache/locales.php:182 -msgid "" -"You are going to delete one of your contacts, please confirm your action" +#: [delete]text +msgid "You are going to delete one of your contacts, please confirm your action" msgstr "" -#: ../cache/locales.php:183 -#, php-format +#: [age]years msgid "%s years" msgstr "" -#: ../cache/locales.php:184 +#: [blog]last msgid "Last public post" msgstr "" -#: ../cache/locales.php:185 +#: [subscription]to +#, fuzzy +msgid "You can see this contact status" +msgstr "Hapus kontak ini" + +#: [subscription]to_button +msgid "Share my status" +msgstr "" + +#: [subscription]to_text +msgid "But this contact cannot see yours" +msgstr "" + +#: [subscription]from +msgid "You are not subscribed to this contact" +msgstr "" + +#: [subscription]from_button +msgid "Ask to subscribe" +msgstr "" + +#: [subscription]from_text +msgid "But this contact can still see if you are online" +msgstr "" + +#: [subscription]nil +#, fuzzy +msgid "No subscriptions" +msgstr "Dapatkan langganan" + +#: [subscription]nil_button +msgid "Invite" +msgstr "" + +#: [subscription]nil_text +msgid "This contact is in your contact list but there is no subscriptions between the two accounts" +msgstr "" + +#: [group]subscribe msgid "Subscribe" msgstr "" -#: ../cache/locales.php:186 +#: [group]subscribed msgid "Subscribed" msgstr "" -#: ../cache/locales.php:187 +#: [group]unsubscribe msgid "Unsubscribe" msgstr "" -#: ../cache/locales.php:188 +#: [group]unsubscribe_text msgid "You are going to unsubscribe from this Group" msgstr "" -#: ../cache/locales.php:189 +#: [group]unsubscribed msgid "Unsubscribed" msgstr "" -#: ../cache/locales.php:190 +#: [group]share_label msgid "Make your membership to this group public to your friends" msgstr "" -#: ../cache/locales.php:191 +#: [group]label_label msgid "Give a label for this group" msgstr "" -#: ../cache/locales.php:192 +#: [group]sure msgid "Are you sure ?" msgstr "" -#: ../cache/locales.php:194 +#: [group]empty_text msgid "Discover, follow and share" msgstr "" -#: ../cache/locales.php:195 +#: [group]empty msgid "Something bad happened to this group" msgstr "" -#: ../cache/locales.php:196 +#: [group]config_saved msgid "Group configuration saved" msgstr "Konfigurasi grup disimpan" -#: ../cache/locales.php:197 +#: [group]delete_title msgid "Delete the group" msgstr "" -#: ../cache/locales.php:198 -msgid "" -"You are going to delete the following group. Please confirm your action." +#: [group]delete_text +msgid "You are going to delete the following group. Please confirm your action." msgstr "" -#: ../cache/locales.php:199 -msgid "" -"It seems that this group doesn't exists anymore. Do you want to remove it " -"from your subscriptions?" +#: [group]delete_clean_text +msgid "It seems that this group doesn't exists anymore. Do you want to remove it from your subscriptions?" msgstr "" -#: ../cache/locales.php:201 ../cache/locales.php:408 +#: [group]counter +msgid "%s groups on this server" +msgstr "" + +#: [group]subscriptions [statistics]subscriptions msgid "Subscriptions" msgstr "" -#: ../cache/locales.php:202 ../cache/locales.php:290 +#: [group]servers +#, fuzzy +msgid "Groups servers" +msgstr "Grup" + +#: [group]search_server +msgid "Search for a new server" +msgstr "" + +#: [group]help_info1 +msgid "Groups are the perfect way to share posts about topics that you like with all the other Movim's users." +msgstr "" + +#: [group]help_info2 +msgid "Choose a server and a Group and subscribe to it using the %s button in the header. You can also create a new one using the %s button." +msgstr "" + +#: [group]help_info3 +msgid "Done? You can now publish a new post in the Group by using the %s button." +msgstr "" + +#: [group]help_info4 +msgid "You will find a list of all your subscribed Groups in My Subscriptions and receive instantly all the new incoming posts in the %sNews%s page." +msgstr "" + +#: [groups]empty_title msgid "Hello" msgstr "" -#: ../cache/locales.php:203 ../cache/locales.php:225 ../cache/locales.php:291 +#: [groups]contact_post [hello]contact_post [menu]contact_post msgid "Contact post" msgstr "" -#: ../cache/locales.php:204 -msgid "" -"You don't have any subscriptions yet, select a group server above to start " -"exploring." +#: [groups]empty_text1 +msgid "You don't have any subscriptions yet, select a group server above to start exploring." msgstr "" -#: ../cache/locales.php:205 +#: [groups]empty_text2 msgid "Subscribe to your favorite feeds by bookmarking them." msgstr "" -#: ../cache/locales.php:206 +#: [groups]subscriptions msgid "My Subscriptions" msgstr "" -#: ../cache/locales.php:207 +#: [groups]add msgid "Create a new Group" msgstr "" -#: ../cache/locales.php:208 +#: [groups]name msgid "Group name" msgstr "" -#: ../cache/locales.php:209 +#: [groups]name_example msgid "My Little Pony - Fan Club" msgstr "Pony Kecilku - Fan Klub" -#: ../cache/locales.php:210 +#: [groups]created msgid "Group created successfully" msgstr "" -#: ../cache/locales.php:211 +#: [groups]deleted msgid "Group deleted successfully" msgstr "" -#: ../cache/locales.php:212 +#: [groups]name_error msgid "Please provide a valid group name (4 characters minimum)" msgstr "" -#: ../cache/locales.php:213 +#: [groups]no_creation msgid "You cannot create a new Group on this server" msgstr "" -#: ../cache/locales.php:214 -#, php-format +#: [groups]sub msgid "%s subscribers" msgstr "" -#: ../cache/locales.php:215 -#, php-format +#: [groups]num msgid "%s posts" msgstr "" -#: ../cache/locales.php:216 +#: [groups]disco_error +msgid "This server doesn't exists" +msgstr "" + +#: [menu]all msgid "All" msgstr "" -#: ../cache/locales.php:219 +#: [menu]refresh msgid "Refresh all the streams" msgstr "" -#: ../cache/locales.php:220 ../cache/locales.php:402 -msgid "Search" -msgstr "Cari" +#: [roster]search +#, fuzzy +msgid "Search in your contacts" +msgstr "Dibagikan ke satu kontak" -#: ../cache/locales.php:221 +#: [hello]active_contacts +#, fuzzy +msgid "Active contacts" +msgstr "Tindakan" + +#: [hello]chat msgid "Go on the Chat page" msgstr "" -#: ../cache/locales.php:222 -msgid "Read all theses articles on the News page" -msgstr "" - -#: ../cache/locales.php:223 -msgid "Visit your public blog" -msgstr "" - -#: ../cache/locales.php:224 -msgid "See your public posts and share them with all your contacts" -msgstr "" - -#: ../cache/locales.php:226 -msgid "Universal share button" -msgstr "" - -#: ../cache/locales.php:227 -msgid "" -"Bookmark or drag and drop the following button in your toolbar and use it on " -"all the pages you want to share on Movim" -msgstr "" - -#: ../cache/locales.php:228 -msgid "Share on Movim" -msgstr "" - -#: ../cache/locales.php:229 -msgid "Frequently Asked Questions" -msgstr "" - -#: ../cache/locales.php:230 -msgid "What do the little banners refer to ?" -msgstr "Spanduk kecil tersebut mengacu kepada apa?" - -#: ../cache/locales.php:231 -msgid "" -"Thanks to these five little banners, you can quickly identitfy the level of " -"confdentiality applied to the information you provide." -msgstr "" - -#: ../cache/locales.php:232 -msgid "White, only you can see the information" -msgstr "" - -#: ../cache/locales.php:233 -msgid "Green, you have chosen some contacts who can see your information" -msgstr "" - -#: ../cache/locales.php:234 -msgid "Orange, all your contact list can see your information" -msgstr "" - -#: ../cache/locales.php:235 -msgid "Red, everybody in the XMPP network can see your information" -msgstr "" - -#: ../cache/locales.php:236 -msgid "Black, the whole Internet can see your information" -msgstr "" - -#: ../cache/locales.php:237 -msgid "Looking for some documentation ?" -msgstr "" - -#: ../cache/locales.php:238 -msgid "Read the Wiki" -msgstr "" - -#: ../cache/locales.php:239 -msgid "Talk with us by email ?" -msgstr "" - -#: ../cache/locales.php:240 -msgid "Join the Mailing List" -msgstr "" - -#: ../cache/locales.php:241 -msgid "Chat with the team ?" -msgstr "" - -#: ../cache/locales.php:242 -msgid "Join the Chatroom" -msgstr "" - -#: ../cache/locales.php:243 -msgid "Location node created" -msgstr "" - -#: ../cache/locales.php:244 -msgid "Bookmark node created" -msgstr "" - -#: ../cache/locales.php:245 -msgid "Profile node created" -msgstr "" - -#: ../cache/locales.php:246 -msgid "Avatar node created" -msgstr "" - -#: ../cache/locales.php:247 -msgid "Subscriptions node created" -msgstr "" - -#: ../cache/locales.php:248 -msgid "Microblog node created" -msgstr "" - -#: ../cache/locales.php:249 -msgid "Location" -msgstr "Lokasi" - -#: ../cache/locales.php:250 -msgid "Wrong position" -msgstr "" - -#: ../cache/locales.php:251 -msgid "Location updated" -msgstr "" - -#: ../cache/locales.php:252 -msgid "Update my position" -msgstr "" - -#: ../cache/locales.php:253 -msgid "Wrong username" -msgstr "" - -#: ../cache/locales.php:254 -msgid "Invalid JID" -msgstr "" - -#: ../cache/locales.php:255 -msgid "Empty Challenge from the server" -msgstr "" - -#: ../cache/locales.php:256 -msgid "XMPP Domain error, your account is not a correct Jabber ID" -msgstr "" - -#: ../cache/locales.php:257 -msgid "Some data are missing !" -msgstr "" - -#: ../cache/locales.php:258 -msgid "Wrong password" -msgstr "" - -#: ../cache/locales.php:259 -msgid "Internal server error" -msgstr "" - -#: ../cache/locales.php:260 -msgid "Session error" -msgstr "" - -#: ../cache/locales.php:261 -msgid "Account successfully created" -msgstr "" - -#: ../cache/locales.php:262 ../cache/locales.php:271 -msgid "Your XMPP server is unauthorized" -msgstr "" - -#: ../cache/locales.php:263 -msgid "The server takes too much time to respond" -msgstr "" - -#: ../cache/locales.php:264 -msgid "Your web browser is too old to use with Movim." -msgstr "Browser anda terlalu lawas untuk di gunakan dengan Movim." - -#: ../cache/locales.php:265 -msgid "" -"Movim cannot talk with the server, please try again later (Websocket " -"connection error)" -msgstr "" - -#: ../cache/locales.php:266 -msgid "Impossible login" -msgstr "" - -#: ../cache/locales.php:267 -msgid "Oops!" -msgstr "" - -#: ../cache/locales.php:268 ../cache/locales.php:449 ../cache/locales.php:455 -msgid "Unknown error" -msgstr "" - -#: ../cache/locales.php:269 -msgid "Invalid username format" -msgstr "" - -#: ../cache/locales.php:270 -msgid "Invalid password format" -msgstr "" - -#: ../cache/locales.php:272 -msgid "A Movim session is already open on an other device" -msgstr "" - -#: ../cache/locales.php:273 -msgid "Movim failed to authenticate. You entered wrong data" -msgstr "" - -#: ../cache/locales.php:274 -msgid "Authentication mechanism not supported by Movim" -msgstr "" - -#: ../cache/locales.php:275 -msgid "The XMPP authentification failed" -msgstr "" - -#: ../cache/locales.php:276 -#, php-format -msgid "" -"You can login with Facebook (chat only) using %syour.id@chat.facebook.com%s " -"and your password" -msgstr "" - -#: ../cache/locales.php:277 -#, php-format -msgid "%sGmail accounts are also compatible%s but are not fully supported" -msgstr "" - -#: ../cache/locales.php:278 -msgid "You can login using your favorite Jabber account" -msgstr "" - -#: ../cache/locales.php:279 -msgid "or with our demonstration account" -msgstr "" - -#: ../cache/locales.php:280 ../cache/locales.php:435 -msgid "Accounts" -msgstr "" - -#: ../cache/locales.php:281 -msgid "My address" -msgstr "Alamat saya" - -#: ../cache/locales.php:283 -msgid "Create one !" -msgstr "" - -#: ../cache/locales.php:284 -msgid "No account yet ?" -msgstr "" - -#: ../cache/locales.php:285 -msgid "Another account" -msgstr "" - -#: ../cache/locales.php:286 -msgid "You can login with accounts from theses servers" -msgstr "" - -#: ../cache/locales.php:287 -msgid "Connected" -msgstr "" - -#: ../cache/locales.php:288 -msgid "Population" -msgstr "" - -#: ../cache/locales.php:289 -msgid "Bad nickname (between 4 and 40 characters)" -msgstr "" - -#: ../cache/locales.php:292 -msgid "" -"Welcome on your news feed, here you will see all the posts published in the " -"groups you have subscribed." -msgstr "" - -#: ../cache/locales.php:293 -msgid "Refreshing all the streams" -msgstr "" - -#: ../cache/locales.php:294 -msgid "This post is public" -msgstr "" - -#: ../cache/locales.php:295 -msgid "Manage your members" -msgstr "" - -#: ../cache/locales.php:296 -msgid "Get the members" -msgstr "" - -#: ../cache/locales.php:297 -msgid "Affiliations saved" -msgstr "" - -#: ../cache/locales.php:298 -msgid "Manage your subscriptions" -msgstr "Atur langganan mu" - -#: ../cache/locales.php:299 -msgid "Manage the subscriptions" -msgstr "Atur langganan" - -#: ../cache/locales.php:300 -msgid "Get the subscriptions" -msgstr "Dapatkan langganan" - -#: ../cache/locales.php:301 -msgid "Subscriptions saved" -msgstr "" - -#: ../cache/locales.php:302 -msgid "Pending Invitations" -msgstr "" - -#: ../cache/locales.php:303 -#, php-format -msgid "%s wants to talk with you" -msgstr "" - -#: ../cache/locales.php:304 -msgid "Manage" -msgstr "Kelola" - -#: ../cache/locales.php:305 ../cache/locales.php:338 -msgid "News Feed" -msgstr "" - -#: ../cache/locales.php:306 ../cache/locales.php:339 -msgid "Discover and register to the groups you are interested in" -msgstr "" - -#: ../cache/locales.php:307 ../cache/locales.php:340 ../cache/locales.php:482 -msgid "Preview" -msgstr "" - -#: ../cache/locales.php:308 ../cache/locales.php:341 ../cache/locales.php:478 -msgid "Help" -msgstr "Bantuan" - -#: ../cache/locales.php:309 ../cache/locales.php:342 -msgid "More help" -msgstr "" - -#: ../cache/locales.php:310 ../cache/locales.php:343 -msgid "Markdown syntax manual" -msgstr "" - -#: ../cache/locales.php:311 ../cache/locales.php:344 ../cache/locales.php:681 -msgid "Title" -msgstr "" - -#: ../cache/locales.php:312 ../cache/locales.php:345 -msgid "Content" -msgstr "" - -#: ../cache/locales.php:313 ../cache/locales.php:346 -msgid "Link" -msgstr "Pranala" - -#: ../cache/locales.php:314 ../cache/locales.php:347 -msgid "Tags" -msgstr "" - -#: ../cache/locales.php:315 ../cache/locales.php:348 -msgid "Please enter a valid url" -msgstr "" - -#: ../cache/locales.php:316 ../cache/locales.php:349 -msgid "No content to preview" -msgstr "" - -#: ../cache/locales.php:317 ../cache/locales.php:350 ../cache/locales.php:687 -msgid "No content" -msgstr "" - -#: ../cache/locales.php:318 ../cache/locales.php:351 -msgid "Post published" -msgstr "" - -#: ../cache/locales.php:319 ../cache/locales.php:352 -msgid "Post deleted" -msgstr "" - -#: ../cache/locales.php:320 ../cache/locales.php:353 -msgid "This picture will be added to your gallery" -msgstr "" - -#: ../cache/locales.php:321 ../cache/locales.php:354 -msgid "What's Hot" -msgstr "" - -#: ../cache/locales.php:322 ../cache/locales.php:355 -msgid "New post" -msgstr "" - -#: ../cache/locales.php:323 ../cache/locales.php:357 -msgid "" -"You can also use services like Imgur or Flickr to host your picture and " -"paste the link here." -msgstr "" - -#: ../cache/locales.php:324 -#, php-format -msgid "This is a re-post from %s" -msgstr "" - -#: ../cache/locales.php:325 -#, php-format -msgid "See %s profile" -msgstr "" - -#: ../cache/locales.php:326 -msgid "Publish this post on your public feed?" -msgstr "" - -#: ../cache/locales.php:327 -msgid "Post published on your blog" -msgstr "" - -#: ../cache/locales.php:328 -msgid "Post removed from your blog" -msgstr "" - -#: ../cache/locales.php:329 ../cache/locales.php:701 -msgid "Delete this post" -msgstr "" - -#: ../cache/locales.php:330 -msgid "You are going to delete this post, please confirm your action" -msgstr "" - -#: ../cache/locales.php:331 -msgid "Comments disabled" -msgstr "" - -#: ../cache/locales.php:332 -msgid "Comment published" -msgstr "" - -#: ../cache/locales.php:333 -msgid "Disconnect" -msgstr "" - -#: ../cache/locales.php:334 -msgid "Your status here !" -msgstr "" - -#: ../cache/locales.php:335 -msgid "Status updated" -msgstr "" - -#: ../cache/locales.php:336 -msgid "Status" -msgstr "" - -#: ../cache/locales.php:337 -msgid "Presence" -msgstr "" - -#: ../cache/locales.php:356 -msgid "Publish" -msgstr "" - -#: ../cache/locales.php:358 -msgid "You cannot publish a post on this Group" -msgstr "" - -#: ../cache/locales.php:359 -msgid "" -"Some fields have been filled in. Do you still want to go back and loose " -"their content?" -msgstr "" - -#: ../cache/locales.php:360 -msgid "Shared" -msgstr "" - -#: ../cache/locales.php:362 -#, php-format -msgid "%s has been added to your public groups" -msgstr "" - -#: ../cache/locales.php:363 -#, php-format -msgid "%s has been removed from your public groups" -msgstr "" - -#: ../cache/locales.php:364 -msgid "Add a chatroom" -msgstr "" - -#: ../cache/locales.php:365 -msgid "You don't have any chatroom yet." -msgstr "" - -#: ../cache/locales.php:366 -msgid "Add one by clicking on the add button in the header." -msgstr "" - -#: ../cache/locales.php:367 -msgid "Chatrooms" -msgstr "" - -#: ../cache/locales.php:370 -msgid "My Favorite Room" -msgstr "" - -#: ../cache/locales.php:374 -msgid "Remove a chatroom" -msgstr "" - -#: ../cache/locales.php:375 -msgid "" -"You are going to remove the following chatroom. Please confirm your action." -msgstr "" - -#: ../cache/locales.php:378 -msgid "Users in the room" -msgstr "" - -#: ../cache/locales.php:379 -msgid "Please enter a correct nickname (6 to 40 characters)" -msgstr "" - -#: ../cache/locales.php:381 -msgid "Public chatroom" -msgstr "" - -#: ../cache/locales.php:382 -msgid "Please provide a room address" -msgstr "" - -#: ../cache/locales.php:383 -msgid "You are currently logued as an anonymous user." -msgstr "" - -#: ../cache/locales.php:384 -msgid "" -"You can join using your own account or create one on the login page by " -"loging out using the cross in the top-right corner." -msgstr "" - -#: ../cache/locales.php:385 -#, php-format -msgid "Login on %s" -msgstr "" - -#: ../cache/locales.php:386 -msgid "Your nickname" -msgstr "" - -#: ../cache/locales.php:387 -msgid "Ungrouped" -msgstr "" - -#: ../cache/locales.php:388 -msgid "Show disconnected contacts" -msgstr "" - -#: ../cache/locales.php:389 -msgid "Hide disconnected contacts" -msgstr "" - -#: ../cache/locales.php:390 -#, php-format -msgid "Show group %s" -msgstr "" - -#: ../cache/locales.php:391 -#, php-format -msgid "Hide group %s" -msgstr "" - -#: ../cache/locales.php:392 -msgid "Please enter a valid Jabber ID" -msgstr "" - -#: ../cache/locales.php:393 -msgid "" -"No contacts ? You can add one using the + button bellow or going to the " -"Explore page" -msgstr "" - -#: ../cache/locales.php:394 -msgid "Show/Hide" -msgstr "" - -#: ../cache/locales.php:395 -msgid "Enter the Jabber ID of your contact." -msgstr "" - -#: ../cache/locales.php:396 -msgid "Press enter to validate." -msgstr "" - -#: ../cache/locales.php:397 -msgid "JID" -msgstr "" - -#: ../cache/locales.php:398 -msgid "Results" -msgstr "" - -#: ../cache/locales.php:399 -msgid "Contact added" -msgstr "" - -#: ../cache/locales.php:401 -msgid "Contact deleted" -msgstr "" - -#: ../cache/locales.php:403 -msgid "This is not a valid url" -msgstr "" - -#: ../cache/locales.php:404 -msgid "Sharing the URL" -msgstr "" - -#: ../cache/locales.php:405 -msgid "Statistics" -msgstr "" - -#: ../cache/locales.php:406 -msgid "Since" -msgstr "" - -#: ../cache/locales.php:407 -msgid "Sessions" -msgstr "" - -#: ../cache/locales.php:409 -msgid "Monthly Subscriptions" -msgstr "" - -#: ../cache/locales.php:410 -msgid "Monthly Subscriptions Cumulated" -msgstr "" - -#: ../cache/locales.php:412 -msgid "" -"Movim is a decentralized social network, before creating a new account you " -"need to choose a server to register." -msgstr "" - -#: ../cache/locales.php:413 -msgid "Your server here ?" -msgstr "" - -#: ../cache/locales.php:414 -msgid "Contact us to add yours to the officially supported servers list" -msgstr "" - -#: ../cache/locales.php:416 -msgid "No public feed for this contact" -msgstr "" - -#: ../cache/locales.php:417 -msgid "No contact specified" -msgstr "" - -#: ../cache/locales.php:418 ../cache/locales.php:473 -msgid "Profile" -msgstr "Profil" - -#: ../cache/locales.php:419 -msgid "Profile Updated" -msgstr "Profil di Perbarui" - -#: ../cache/locales.php:420 -msgid "Profile Not Updated" -msgstr "" - -#: ../cache/locales.php:421 -msgid "Your profile is now public" -msgstr "" - -#: ../cache/locales.php:422 -msgid "Your profile is now restricted" -msgstr "" - -#: ../cache/locales.php:436 -msgid "Twitter" -msgstr "" - -#: ../cache/locales.php:437 -msgid "Skype" -msgstr "" - -#: ../cache/locales.php:438 -msgid "Yahoo" -msgstr "" - -#: ../cache/locales.php:439 -msgid "Privacy Level" -msgstr "Tingkat Privasi" - -#: ../cache/locales.php:440 -msgid "Is this profile public ?" -msgstr "Apakah ini profil publik ?" - -#: ../cache/locales.php:441 -msgid "" -"Please pay attention ! By making your profile public, all the information " -"listed above will be available for all the Movim users and on the whole " -"Internet." -msgstr "" -"Harap diperhatikan! Dengan membuat profil anda publik, semua informasi yang " -"tercantum di atas akan tersedia untuk semua pengguna Movim dan seluruh " -"Internet." - -#: ../cache/locales.php:442 -msgid "Call" -msgstr "" - -#: ../cache/locales.php:443 -msgid "Hang up" -msgstr "" - -#: ../cache/locales.php:444 -msgid "Connection" -msgstr "" - -#: ../cache/locales.php:445 ../cache/locales.php:451 -msgid "Hung up" -msgstr "" - -#: ../cache/locales.php:446 ../cache/locales.php:452 -msgid "Your contact is busy" -msgstr "" - -#: ../cache/locales.php:447 ../cache/locales.php:453 -msgid "Declined" -msgstr "" - -#: ../cache/locales.php:448 ../cache/locales.php:454 -msgid "Remote application incompatible" -msgstr "" - -#: ../cache/locales.php:450 ../cache/locales.php:456 -msgid "Is calling you" -msgstr "" - -#: ../cache/locales.php:457 -msgid "You don't have javascript enabled. Good luck with that." -msgstr "" - -#: ../cache/locales.php:458 -msgid "" -"Movim is a kickass distributed social networking platform that protect your " -"privacy an comes with a set of awesome features." -msgstr "" - -#: ../cache/locales.php:459 -msgid "Administration" -msgstr "Administrasi" - -#: ../cache/locales.php:460 -msgid "Home" -msgstr "" - -#: ../cache/locales.php:461 -msgid "Discover" -msgstr "" - -#: ../cache/locales.php:462 -msgid "Explore" -msgstr "Jelajahi" - -#: ../cache/locales.php:463 -msgid "Account Creation" -msgstr "" - -#: ../cache/locales.php:464 +#: [hello]news [page]news msgid "News" msgstr "Berita" -#: ../cache/locales.php:465 -msgid "Avatar" -msgstr "Avatar" - -#: ../cache/locales.php:467 -msgid "Chats" +#: [hello]news_page +msgid "Read all theses articles on the News page" msgstr "" -#: ../cache/locales.php:470 -msgid "Server" -msgstr "Server" - -#: ../cache/locales.php:471 -msgid "Public Groups" +#: [hello]blog_title +msgid "Visit your public blog" msgstr "" -#: ../cache/locales.php:472 -msgid "Viewer" -msgstr "Penilik" - -#: ../cache/locales.php:474 -msgid "Media" -msgstr "Media" - -#: ../cache/locales.php:475 -msgid "Blog" -msgstr "Blog" - -#: ../cache/locales.php:476 -msgid "About" +#: [hello]blog_text +msgid "See your public posts and share them with all your contacts" msgstr "" -#: ../cache/locales.php:477 -msgid "Login" +#: [hello]share_title +msgid "Universal share button" msgstr "" -#: ../cache/locales.php:479 -msgid "Feed" -msgstr "Tautan" - -#: ../cache/locales.php:481 -msgid "Gallery" +#: [hello]share_text +msgid "Bookmark or drag and drop the following button in your toolbar and use it on all the pages you want to share on Movim" msgstr "" -#: ../cache/locales.php:483 -msgid "Visio-conference" +#: [hello]share_button +msgid "Share on Movim" msgstr "" -#: ../cache/locales.php:484 -msgid "Pods" +#: [help]faq +msgid "Frequently Asked Questions" msgstr "" -#: ../cache/locales.php:485 -msgid "Share" +#: [banner]title +msgid "What do the little banners refer to ?" +msgstr "Spanduk kecil tersebut mengacu kepada apa?" + +#: [banner]info1 +msgid "Thanks to these five little banners, you can quickly identitfy the level of confdentiality applied to the information you provide." msgstr "" -#: ../cache/locales.php:486 -msgid "Room" +#: [banner]white +msgid "White, only you can see the information" msgstr "" -#: ../cache/locales.php:487 -#, php-format -msgid "Error: %s" -msgstr "Kesalahan: %s" - -#: ../cache/locales.php:488 -#, php-format -msgid "Cannot load file '%s'" -msgstr "Tidak dapat memuat berkas '%s'" - -#: ../cache/locales.php:489 -#, php-format -msgid "Route error, please set all the parameters for the page %s" -msgstr "Kesalahan rute, harap atur semua parameter untuk halaman %s" - -#: ../cache/locales.php:490 -#, php-format -msgid "Requested widget '%s' doesn't exist." +#: [banner]green +msgid "Green, you have chosen some contacts who can see your information" msgstr "" -#: ../cache/locales.php:491 -#, php-format -msgid "Requested event '%s' not registered." +#: [banner]orange +msgid "Orange, all your contact list can see your information" msgstr "" -#: ../cache/locales.php:492 -msgid "Whoops!" +#: [banner]red +msgid "Red, everybody in the XMPP network can see your information" msgstr "" -#: ../cache/locales.php:493 -msgid "It seem that you don't have any pictures here?" +#: [banner]black +msgid "Black, the whole Internet can see your information" msgstr "" -#: ../cache/locales.php:494 -msgid "You can try to upload a couple by going to the Media page" +#: [wiki]question +msgid "Looking for some documentation ?" msgstr "" -#: ../cache/locales.php:495 -#, php-format -msgid "%s - About" +#: [wiki]button +msgid "Read the Wiki" msgstr "" -#: ../cache/locales.php:496 -#, php-format -msgid "%s - Account" +#: [ml]question +msgid "Talk with us by email ?" msgstr "" -#: ../cache/locales.php:497 -#, php-format -msgid "%s - Administration Panel" +#: [ml]button +msgid "Join the Mailing List" msgstr "" -#: ../cache/locales.php:498 -#, php-format -msgid "%s - Blog" +#: [chatroom]question +msgid "Chat with the team ?" msgstr "" -#: ../cache/locales.php:499 -#, php-format -msgid "%s - Configuration" +#: [chatroom]button +msgid "Join the Chatroom" msgstr "" -#: ../cache/locales.php:500 -#, php-format -msgid "%s - Discover" +#: [init]location +msgid "Location node created" msgstr "" -#: ../cache/locales.php:501 -#, php-format -msgid "%s - Explore" +#: [init]bookmark +msgid "Bookmark node created" msgstr "" -#: ../cache/locales.php:502 -#, php-format -msgid "%s - Help Page" +#: [init]vcard4 +msgid "Profile node created" msgstr "" -#: ../cache/locales.php:503 -#, php-format -msgid "%s - Login to Movim" +#: [init]avatar +msgid "Avatar node created" msgstr "" -#: ../cache/locales.php:504 -#, php-format -msgid "%s - Welcome to Movim" +#: [init]subscriptions +msgid "Subscriptions node created" msgstr "" -#: ../cache/locales.php:505 -#, php-format -msgid "%s - Media" +#: [init]microblog +msgid "Microblog node created" msgstr "" -#: ../cache/locales.php:506 -#, php-format -msgid "%s - News" +#: [location]title +msgid "Location" +msgstr "Lokasi" + +#: [location]wrong_postition +msgid "Wrong position" msgstr "" -#: ../cache/locales.php:507 -#, php-format -msgid "%s - Group Configuration" +#: [location]updated +msgid "Location updated" msgstr "" -#: ../cache/locales.php:508 -#, php-format -msgid "%s - Group" +#: [location]update +msgid "Update my position" msgstr "" -#: ../cache/locales.php:509 -#, php-format -msgid "%s - 404" +#: [login_anonymous]bad_username +msgid "Bad nickname (between 4 and 40 characters)" msgstr "" -#: ../cache/locales.php:510 -#, php-format -msgid "%s - Profile" +#: [error]username +msgid "Wrong username" msgstr "" -#: ../cache/locales.php:511 -#, php-format -msgid "%s - Server" +#: [error]jid +msgid "Invalid JID" msgstr "" -#: ../cache/locales.php:512 -msgid "Validate" -msgstr "Validasi" - -#: ../cache/locales.php:513 -msgid "Refresh" -msgstr "Perbarui" - -#: ../cache/locales.php:514 -msgid "Add" -msgstr "Tambah" - -#: ../cache/locales.php:515 -msgid "Delete" +#: [error]empty_challenge +msgid "Empty Challenge from the server" msgstr "" -#: ../cache/locales.php:516 -msgid "Remove" +#: [error]dns +msgid "XMPP Domain error, your account is not a correct Jabber ID" msgstr "" -#: ../cache/locales.php:517 -msgid "Cancel" +#: [error]data_missings +msgid "Some data are missing !" msgstr "" -#: ../cache/locales.php:518 -msgid "Close" -msgstr "Tutup" - -#: ../cache/locales.php:519 -msgid "Update" +#: [error]wrong_password +msgid "Wrong password" msgstr "" -#: ../cache/locales.php:520 -msgid "Updating" +#: [error]internal +msgid "Internal server error" msgstr "" -#: ../cache/locales.php:521 +#: [error]session +msgid "Session error" +msgstr "" + +#: [error]account_created +msgid "Account successfully created" +msgstr "" + +#: [error]xmpp_unauthorized +msgctxt "[error]xmpp_unauthorized" +msgid "Your XMPP server is unauthorized" +msgstr "" + +#: [error]mec_error +msgid "The server takes too much time to respond" +msgstr "" + +#: [error]too_old +msgid "Your web browser is too old to use with Movim." +msgstr "Browser anda terlalu lawas untuk di gunakan dengan Movim." + +#: [error]websocket +msgid "Movim cannot talk with the server, please try again later (Websocket connection error)" +msgstr "" + +#: [error]impossible +msgid "Impossible login" +msgstr "" + +#: [error]title +msgid "Oops!" +msgstr "" + +#: [error]default [visio]unknown_error +msgid "Unknown error" +msgstr "" + +#: [error]login_format +msgid "Invalid username format" +msgstr "" + +#: [error]password_format +msgid "Invalid password format" +msgstr "" + +#: [error]unauthorized +msgctxt "[error]unauthorized" +msgid "Your XMPP server is unauthorized" +msgstr "" + +#: [error]conflict +msgid "A Movim session is already open on an other device" +msgstr "" + +#: [error]wrong_account +msgid "Movim failed to authenticate. You entered wrong data" +msgstr "" + +#: [error]mechanism +msgid "Authentication mechanism not supported by Movim" +msgstr "" + +#: [error]fail_auth +msgid "The XMPP authentification failed" +msgstr "" + +#: [account]title [accounts]accounts_title +msgid "Accounts" +msgstr "" + +#: [form]username +msgid "My address" +msgstr "Alamat saya" + +#: [form]create_one +msgid "Create one !" +msgstr "" + +#: [form]another_account +msgid "Another account" +msgstr "" + +#: [form]no_account +msgid "No account yet ?" +msgstr "" + +#: [form]whitelist.info +msgid "You can login with accounts from theses servers" +msgstr "" + +#: [form]connected +msgid "Connected" +msgstr "" + +#: [form]population +msgid "Population" +msgstr "" + +#: [menu]empty_title +msgid "No news yet..." +msgstr "" + +#: [menu]empty +msgid "Welcome on your news feed, here you will see all the posts published by your contacts and in the groups you have subscribed." +msgstr "" + +#: [menu]refresh +msgid "Refreshing all the streams" +msgstr "" + +#: [menu]public +msgid "This post is public" +msgstr "" + +#: [affiliations]title +msgid "Manage your members" +msgstr "" + +#: [affiliations]get +msgid "Get the members" +msgstr "" + +#: [affiliations]saved +msgid "Affiliations saved" +msgstr "" + +#: [subscriptions]title +msgid "Manage your subscriptions" +msgstr "Atur langganan mu" + +#: [subscriptions]info +msgid "Manage the subscriptions" +msgstr "Atur langganan" + +#: [subscriptions]get +msgid "Get the subscriptions" +msgstr "Dapatkan langganan" + +#: [subscriptions]saved +msgid "Subscriptions saved" +msgstr "" + +#: [notifs]title +msgid "Pending Invitations" +msgstr "" + +#: [notifs]wants_to_talk +msgid "%s wants to talk with you" +msgstr "" + +#: [notifs]manage +msgid "Manage" +msgstr "Kelola" + +#: [post]news_feed +msgid "News Feed" +msgstr "" + +#: [post]placeholder +msgid "Discover and register to the groups you are interested in" +msgstr "" + +#: [post]preview [page]preview +msgid "Preview" +msgstr "" + +#: [post]help [page]help +msgid "Help" +msgstr "Bantuan" + +#: [post]help_more +msgid "More help" +msgstr "" + +#: [post]help_manual +msgid "Markdown syntax manual" +msgstr "" + +#: [post]title +msgid "Title" +msgstr "" + +#: [post]content +msgid "Content" +msgstr "" + +#: [post]link +msgid "Link" +msgstr "Pranala" + +#: [post]tags +msgid "Tags" +msgstr "" + +#: [post]valid_url [publish]valid_url +msgid "Please enter a valid url" +msgstr "" + +#: [post]no_content_preview [publish]no_content_preview +msgid "No content to preview" +msgstr "" + +#: [post]no_content [publish]no_content [post]empty +msgid "No content" +msgstr "" + +#: [post]published +msgid "Post published" +msgstr "" + +#: [post]deleted +msgid "Post deleted" +msgstr "" + +#: [post]gallery +msgid "This picture will be added to your gallery" +msgstr "" + +#: [post]hot +msgid "What's Hot" +msgstr "" + +#: [post]hot_text +msgid "Posts recently published in Groups that you are not subscribed (yet)" +msgstr "" + +#: [post]new [publish]new +msgid "New post" +msgstr "" + +#: [post]embed_tip +msgid "You can also use services like Imgur or Flickr to host your picture and paste the link here." +msgstr "" + +#: [post]repost +msgid "This is a re-post from %s" +msgstr "" + +#: [post]repost_profile +msgid "See %s profile" +msgstr "" + +#: [post]public +#, fuzzy +msgid "Publish this post publicly?" +msgstr "Apakah ini profil publik ?" + +#: [post]blog_add +msgid "Post published on your blog" +msgstr "" + +#: [post]blog_remove +msgid "Post removed from your blog" +msgstr "" + +#: [post]delete_title [post]delete +msgid "Delete this post" +msgstr "" + +#: [post]delete_text +msgid "You are going to delete this post, please confirm your action" +msgstr "" + +#: [post]comments_disabled +msgid "Comments disabled" +msgstr "" + +#: [post]comment_published +msgid "Comment published" +msgstr "" + +#: [status]disconnect +msgid "Disconnect" +msgstr "" + +#: [status]here +msgid "Your status here !" +msgstr "" + +#: [status]updated +msgid "Status updated" +msgstr "" + +#: [status]status +msgid "Status" +msgstr "" + +#: [status]presence +msgid "Presence" +msgstr "" + +#: [status]online +msgid "Online with Movim" +msgstr "" + +#: [publish]title +msgid "Publish" +msgstr "" + +#: [publish]attach +msgid "Add a file or a picture to your post" +msgstr "" + +#: [publish]no_publication +msgid "You cannot publish a post on this Group" +msgstr "" + +#: [publish]form_filled +msgid "Some fields have been filled in. Do you still want to go back and loose their content?" +msgstr "" + +#: [public_groups]shared +msgid "Shared" +msgstr "" + +#: [public_groups]added +msgid "%s has been added to your public groups" +msgstr "" + +#: [rooms]add +msgid "Add a chatroom" +msgstr "" + +#: [rooms]empty_text1 +msgid "You don't have any chatroom yet." +msgstr "" + +#: [rooms]empty_text2 +msgid "Add one by clicking on the add button in the header." +msgstr "" + +#: [chatrooms]title +msgid "Chatrooms" +msgstr "" + +#: [chatrooms]name_placeholder +msgid "My Favorite Room" +msgstr "" + +#: [chatrooms]users +msgid "Users in the room" +msgstr "" + +#: [chatrooms]bad_nickname +msgid "Please enter a correct nickname (2 to 40 characters)" +msgstr "" + +#: [room]anonymous_title +msgid "Public chatroom" +msgstr "" + +#: [room]no_room +msgid "Please provide a room address" +msgstr "" + +#: [room]anonymous_text1 +msgid "You are currently logued as an anonymous user." +msgstr "" + +#: [room]anonymous_text2 +msgid "You can join using your own account or create one on the login page by loging out using the cross in the top-right corner." +msgstr "" + +#: [room]anonymous_login +msgid "Login on %s" +msgstr "" + +#: [room]nick +msgid "Your nickname" +msgstr "" + +#: [roster]ungrouped +msgid "Ungrouped" +msgstr "" + +#: [roster]show_disconnected +msgid "Show disconnected contacts" +msgstr "" + +#: [roster]hide_disconnected +msgid "Hide disconnected contacts" +msgstr "" + +#: [roster]show_group +msgid "Show group %s" +msgstr "" + +#: [roster]hide_group +msgid "Hide group %s" +msgstr "" + +#: [roster]jid_error +msgid "Please enter a valid Jabber ID" +msgstr "" + +#: [roster]no_contacts_title +msgid "No contacts ?" +msgstr "" + +#: [roster]no_contacts_text +msgid "You can add one using the + button bellow" +msgstr "" + +#: [roster]show_hide +msgid "Show/Hide" +msgstr "" + +#: [roster]add_contact_info1 +msgid "Enter the Jabber ID of your contact." +msgstr "" + +#: [roster]add_contact_info2 +msgid "Press enter to validate." +msgstr "" + +#: [roster]jid +msgid "JID" +msgstr "" + +#: [roster]results +msgid "Results" +msgstr "" + +#: [roster]added +msgid "Contact added" +msgstr "" + +#: [roster]deleted +msgid "Contact deleted" +msgstr "" + +#: [roster]search +msgid "Search" +msgstr "Cari" + +#: [share]error +msgid "This is not a valid url" +msgstr "" + +#: [share]success +msgid "Sharing the URL" +msgstr "" + +#: [statistics]title +msgid "Statistics" +msgstr "" + +#: [statistics]since +msgid "Since" +msgstr "" + +#: [statistics]sessions +msgid "Sessions" +msgstr "" + +#: [statistics]monthly_sub +msgid "Monthly Subscriptions" +msgstr "" + +#: [statistics]monthly_sub_cum +msgid "Monthly Subscriptions Cumulated" +msgstr "" + +#: [subscribe]info +msgid "Movim is a decentralized social network, before creating a new account you need to choose a server to register." +msgstr "" + +#: [subscribe]server_question +msgid "Your server here ?" +msgstr "" + +#: [subscribe]server_contact +msgid "Contact us to add yours to the officially supported servers list" +msgstr "" + +#: [feed]nope +msgid "No public feed for this contact" +msgstr "" + +#: [feed]nope_contact +msgid "No contact specified" +msgstr "" + +#: [upload]title +#, fuzzy +msgid "Upload a file" +msgstr "Unggah" + +#: [upload]choose +msgid "Choose a file to upload" +msgstr "" + +#: [vcard]title [page]profile +msgid "Profile" +msgstr "Profil" + +#: [vcard]updated +msgid "Profile Updated" +msgstr "Profil di Perbarui" + +#: [vcard]not_updated +msgid "Profile Not Updated" +msgstr "" + +#: [vcard]public +msgid "Your profile is now public" +msgstr "" + +#: [vcard]restricted +msgid "Your profile is now restricted" +msgstr "" + +#: [general]nickname +#, fuzzy +msgctxt "[general]nickname" +msgid "Nickname" +msgstr "Panggilan" + +#: [accounts]twitter +msgid "Twitter" +msgstr "" + +#: [accounts]skype +msgid "Skype" +msgstr "" + +#: [accounts]yahoo +msgid "Yahoo" +msgstr "" + +#: [accounts]accounts_nickname +#, fuzzy +msgctxt "[accounts]accounts_nickname" +msgid "Nickname" +msgstr "Panggilan" + +#: [accounts]accounts_yahoo +msgid "Yahoo Account" +msgstr "" + +#: [privacy]privacy_title +msgid "Privacy Level" +msgstr "Tingkat Privasi" + +#: [privacy]privacy_question +msgid "Is this profile public ?" +msgstr "Apakah ini profil publik ?" + +#: [privacy]privacy_info +msgid "Please pay attention ! By making your profile public, all the information listed above will be available for all the Movim users and on the whole Internet." +msgstr "Harap diperhatikan! Dengan membuat profil anda publik, semua informasi yang tercantum di atas akan tersedia untuk semua pengguna Movim dan seluruh Internet." + +#: [save]submit [button]submit msgid "Submit" msgstr "Kirim" -#: ../cache/locales.php:522 -msgid "Submitting" -msgstr "Mengirimkan" - -#: ../cache/locales.php:523 +#: [save]reset [button]reset msgid "Reset" msgstr "Atur ulang" -#: ../cache/locales.php:524 +#: [visio]hung_up +msgid "Hung up" +msgstr "" + +#: [visio]busy +msgid "Your contact is busy" +msgstr "" + +#: [visio]declined +msgid "Declined" +msgstr "" + +#: [visio]calling +msgid "Is calling you" +msgstr "" + +#: [visio]call +msgid "Call" +msgstr "" + +#: [visio]hang_up +msgid "Hang up" +msgstr "" + +#: [visio]connection +msgid "Connection" +msgstr "" + +#: [global]no_js +msgid "You don't have javascript enabled. Good luck with that." +msgstr "" + +#: [global]description +msgid "Movim is a kickass distributed social networking platform that protect your privacy an comes with a set of awesome features." +msgstr "" + +#: [page]administration +msgid "Administration" +msgstr "Administrasi" + +#: [page]home +msgid "Home" +msgstr "" + +#: [page]discover +msgid "Discover" +msgstr "" + +#: [page]explore +msgid "Explore" +msgstr "Jelajahi" + +#: [page]account_creation +msgid "Account Creation" +msgstr "" + +#: [page]avatar +msgid "Avatar" +msgstr "Avatar" + +#: [page]chats +msgid "Chats" +msgstr "" + +#: [page]server +msgid "Server" +msgstr "Server" + +#: [page]public_groups +msgid "Public Groups" +msgstr "" + +#: [page]viewer +msgid "Viewer" +msgstr "Penilik" + +#: [page]media +msgid "Media" +msgstr "Media" + +#: [page]blog +msgid "Blog" +msgstr "Blog" + +#: [page]about +msgid "About" +msgstr "" + +#: [page]login +msgid "Login" +msgstr "" + +#: [page]feed +msgid "Feed" +msgstr "Tautan" + +#: [page]gallery +msgid "Gallery" +msgstr "" + +#: [page]visio +msgid "Visio-conference" +msgstr "" + +#: [page]pods +msgid "Pods" +msgstr "" + +#: [page]share +msgid "Share" +msgstr "" + +#: [page]room +msgid "Room" +msgstr "" + +#: [error]error +msgid "Error: %s" +msgstr "Kesalahan: %s" + +#: [error]cannot_load_file +msgid "Cannot load file '%s'" +msgstr "Tidak dapat memuat berkas '%s'" + +#: [error]route +msgid "Route error, please set all the parameters for the page %s" +msgstr "Kesalahan rute, harap atur semua parameter untuk halaman %s" + +#: [error]widget_load_error +msgid "Requested widget '%s' doesn't exist." +msgstr "" + +#: [error]widget_call_error +msgid "Requested event '%s' not registered." +msgstr "" + +#: [error]whoops +msgid "Whoops!" +msgstr "" + +#: [error]media_not_found +msgid "It seem that you don't have any pictures here?" +msgstr "" + +#: [error]media_ask_upload +msgid "You can try to upload a couple by going to the Media page" +msgstr "" + +#: [title]about +msgid "%s - About" +msgstr "" + +#: [title]account +msgid "%s - Account" +msgstr "" + +#: [title]administration +msgid "%s - Administration Panel" +msgstr "" + +#: [title]blog +msgid "%s - Blog" +msgstr "" + +#: [title]configuration +msgid "%s - Configuration" +msgstr "" + +#: [title]discover +msgid "%s - Discover" +msgstr "" + +#: [title]explore +msgid "%s - Explore" +msgstr "" + +#: [title]help +msgid "%s - Help Page" +msgstr "" + +#: [title]login +msgid "%s - Login to Movim" +msgstr "" + +#: [title]main +msgid "%s - Welcome to Movim" +msgstr "" + +#: [title]media +msgid "%s - Media" +msgstr "" + +#: [title]news +msgid "%s - News" +msgstr "" + +#: [title]node_configuration +msgid "%s - Group Configuration" +msgstr "" + +#: [title]node +msgid "%s - Group" +msgstr "" + +#: [title]not_found +msgid "%s - 404" +msgstr "" + +#: [title]profile +msgid "%s - Profile" +msgstr "" + +#: [title]server +msgid "%s - Server" +msgstr "" + +#: [button]validate +msgid "Validate" +msgstr "Validasi" + +#: [button]refresh +msgid "Refresh" +msgstr "Perbarui" + +#: [button]add +msgid "Add" +msgstr "Tambah" + +#: [button]delete +msgid "Delete" +msgstr "" + +#: [button]cancel +msgid "Cancel" +msgstr "" + +#: [button]close +msgid "Close" +msgstr "Tutup" + +#: [button]update +msgid "Update" +msgstr "" + +#: [button]updating +msgid "Updating" +msgstr "" + +#: [button]submitting +msgid "Submitting" +msgstr "Mengirimkan" + +#: [button]register msgid "Register" msgstr "" -#: ../cache/locales.php:525 +#: [button]unregister msgid "Unregister" msgstr "" -#: ../cache/locales.php:526 +#: [button]save msgid "Save" msgstr "Simpan" -#: ../cache/locales.php:527 +#: [button]clear msgid "Clear" msgstr "" -#: ../cache/locales.php:528 +#: [button]upload msgid "Upload" msgstr "Unggah" -#: ../cache/locales.php:529 +#: [button]come_in msgid "Come in!" msgstr "Ayo masuk!" -#: ../cache/locales.php:530 +#: [button]connecting msgid "Connecting" msgstr "" -#: ../cache/locales.php:531 +#: [button]bool_yes msgid "Yes" msgstr "Ya" -#: ../cache/locales.php:532 +#: [button]bool_no msgid "No" msgstr "Tidak" -#: ../cache/locales.php:534 +#: [button]return msgid "Return" msgstr "" -#: ../cache/locales.php:535 +#: [button]accept msgid "Accept" msgstr "" -#: ../cache/locales.php:536 +#: [button]refuse msgid "Refuse" msgstr "" -#: ../cache/locales.php:537 +#: [button]next msgid "Next" msgstr "" -#: ../cache/locales.php:538 +#: [button]previous msgid "Previous" msgstr "" -#: ../cache/locales.php:539 -#, php-format +#: [step]step msgid "Step %s" msgstr "" -#: ../cache/locales.php:542 +#: [day]title msgid "Day" msgstr "Hari" -#: ../cache/locales.php:543 +#: [day]monday msgid "Monday" msgstr "Senin" -#: ../cache/locales.php:544 +#: [day]tuesday msgid "Tuesday" msgstr "Selasa" -#: ../cache/locales.php:545 +#: [day]wednesday msgid "Wednesday" msgstr "Rabu" -#: ../cache/locales.php:546 +#: [day]thursday msgid "Thursday" msgstr "Kamis" -#: ../cache/locales.php:547 +#: [day]friday msgid "Friday" msgstr "Jumat" -#: ../cache/locales.php:548 +#: [day]saturday msgid "Saturday" msgstr "Sabtu" -#: ../cache/locales.php:549 +#: [day]sunday msgid "Sunday" msgstr "" -#: ../cache/locales.php:550 ../cache/locales.php:559 +#: [gender]nil +#, fuzzy +msgctxt "[gender]nil" msgid "None" msgstr "Nihil" -#: ../cache/locales.php:551 +#: [gender]male msgid "Male" msgstr "Pria" -#: ../cache/locales.php:552 +#: [gender]female msgid "Female" msgstr "Wanita" -#: ../cache/locales.php:553 +#: [gender]other msgid "Other" msgstr "Lainnya" -#: ../cache/locales.php:554 +#: [client]bot msgid "Bot" msgstr "Bot" -#: ../cache/locales.php:555 +#: [client]desktop msgid "Desktop" msgstr "Desktop" -#: ../cache/locales.php:556 +#: [client]phone msgid "Phone" msgstr "Telepon" -#: ../cache/locales.php:557 +#: [client]web msgid "Web" msgstr "Web" -#: ../cache/locales.php:558 +#: [client]registered msgid "Registered" msgstr "Terdaftar" -#: ../cache/locales.php:560 +#: [marital]nil +#, fuzzy +msgctxt "[marital]nil" +msgid "None" +msgstr "Nihil" + +#: [marital]single msgid "Single" msgstr "Lajang" -#: ../cache/locales.php:561 +#: [marital]relationship msgid "In a relationship" msgstr "Sedang berhubungan" -#: ../cache/locales.php:562 +#: [marital]married msgid "Married" msgstr "Menikah" -#: ../cache/locales.php:563 +#: [marital]divorced msgid "Divorced" msgstr "Bercerai" -#: ../cache/locales.php:564 +#: [marital]widowed msgid "Widowed" msgstr "Janda" -#: ../cache/locales.php:565 +#: [marital]cohabiting msgid "Cohabiting" msgstr "Tinggal bersama" -#: ../cache/locales.php:566 +#: [marital]union msgid "Civil Union" msgstr "Hubungan sejenis" -#: ../cache/locales.php:567 +#: [flag]white msgid "Not shared" msgstr "Tidak dibagikan" -#: ../cache/locales.php:568 +#: [flag]green msgid "Shared with one contact" msgstr "Dibagikan ke satu kontak" -#: ../cache/locales.php:569 +#: [flag]orange msgid "Shared with all contacts" msgstr "Dibagikan ke seluruh kontak" -#: ../cache/locales.php:570 +#: [flag]red msgid "Shared with the XMPP network" msgstr "Dibagikan ke jaringan XMPP" -#: ../cache/locales.php:571 +#: [flag]black msgid "Shared with the whole Internet" msgstr "Dibagikan ke seluruh Internet" -#: ../cache/locales.php:572 +#: [presence]online msgid "Online" msgstr "Tersedia" -#: ../cache/locales.php:573 +#: [presence]away msgid "Away" msgstr "Jauh" -#: ../cache/locales.php:574 +#: [presence]dnd msgid "Do Not Disturb" msgstr "Jangan Diganggu" -#: ../cache/locales.php:575 +#: [presence]xa msgid "Extended Away" msgstr "Menjauh Lama" -#: ../cache/locales.php:576 +#: [presence]offline msgid "Offline" msgstr "" -#: ../cache/locales.php:577 +#: [presence]error msgid "Error" msgstr "Kesalahan" -#: ../cache/locales.php:578 +#: [mood]afraid msgid "afraid" msgstr "takut" -#: ../cache/locales.php:579 +#: [mood]amazed msgid "amazed" msgstr "kagum" -#: ../cache/locales.php:580 +#: [mood]amorous msgid "amorous" msgstr "mudah jatuh cinta" -#: ../cache/locales.php:581 +#: [mood]angry msgid "angry" msgstr "marah" -#: ../cache/locales.php:582 +#: [mood]annoyed msgid "annoyed" msgstr "kesal" -#: ../cache/locales.php:583 +#: [mood]anxious msgid "anxious" msgstr "risau" -#: ../cache/locales.php:584 +#: [mood]aroused msgid "aroused" msgstr "terangsang" -#: ../cache/locales.php:585 +#: [mood]ashamed msgid "ashamed" msgstr "malu" -#: ../cache/locales.php:586 +#: [mood]bored msgid "bored" msgstr "bosan" -#: ../cache/locales.php:587 +#: [mood]brave msgid "brave" msgstr "berani" -#: ../cache/locales.php:588 +#: [mood]calm msgid "calm" msgstr "tenang" -#: ../cache/locales.php:589 +#: [mood]cautious msgid "cautious" msgstr "hati-hati" -#: ../cache/locales.php:590 +#: [mood]cold msgid "cold" msgstr "dingin" -#: ../cache/locales.php:591 +#: [mood]confident msgid "confident" msgstr "yakin" -#: ../cache/locales.php:592 +#: [mood]confused msgid "confused" msgstr "bingung" -#: ../cache/locales.php:593 +#: [mood]contemplative msgid "contemplative" msgstr "merenung" -#: ../cache/locales.php:594 +#: [mood]contented msgid "contented" msgstr "puas" -#: ../cache/locales.php:595 +#: [mood]cranky msgid "cranky" msgstr "jengkel" -#: ../cache/locales.php:596 +#: [mood]crazy msgid "crazy" msgstr "gila" -#: ../cache/locales.php:597 +#: [mood]creative msgid "creative" msgstr "kreatif" -#: ../cache/locales.php:598 +#: [mood]curious msgid "curious" msgstr "penasaran" -#: ../cache/locales.php:599 +#: [mood]dejected msgid "dejected" msgstr "gundah" -#: ../cache/locales.php:600 +#: [mood]depressed msgid "depressed" msgstr "murung" -#: ../cache/locales.php:601 +#: [mood]disappointed msgid "disappointed" msgstr "kecewa" -#: ../cache/locales.php:602 +#: [mood]disgusted msgid "disgusted" msgstr "jijik" -#: ../cache/locales.php:603 +#: [mood]dismayed msgid "dismayed" msgstr "cemas" -#: ../cache/locales.php:604 +#: [mood]distracted msgid "distracted" msgstr "bingung" -#: ../cache/locales.php:605 +#: [mood]embarrassed msgid "embarrassed" msgstr "tersipu" -#: ../cache/locales.php:606 +#: [mood]envious msgid "envious" msgstr "iri" -#: ../cache/locales.php:607 +#: [mood]excited msgid "excited" msgstr "gembira" -#: ../cache/locales.php:608 +#: [mood]flirtatious msgid "flirtatious" msgstr "genit" -#: ../cache/locales.php:609 +#: [mood]frustated msgid "frustated" msgstr "" -#: ../cache/locales.php:610 +#: [mood]grateful msgid "grateful" msgstr "bersyukur" -#: ../cache/locales.php:611 +#: [mood]grieving msgid "grieving" msgstr "kecil hati" -#: ../cache/locales.php:612 +#: [mood]grumpy msgid "grumpy" msgstr "galak" -#: ../cache/locales.php:613 +#: [mood]guilty msgid "guilty" msgstr "bersalah" -#: ../cache/locales.php:614 +#: [mood]happy msgid "happy" msgstr "bahagia" -#: ../cache/locales.php:615 +#: [mood]hopeful msgid "hopeful" msgstr "penuh harapan" -#: ../cache/locales.php:616 +#: [mood]hot msgid "hot" msgstr "panas" -#: ../cache/locales.php:617 +#: [mood]humbled msgid "humbled" msgstr "merendahkan" -#: ../cache/locales.php:618 +#: [mood]humiliated msgid "humiliated" msgstr "terhina" -#: ../cache/locales.php:619 +#: [mood]hungry msgid "hungry" msgstr "lapar" -#: ../cache/locales.php:620 +#: [mood]hurt msgid "hurt" msgstr "tersakiti" -#: ../cache/locales.php:621 +#: [mood]impressed msgid "impressed" msgstr "terkesan" -#: ../cache/locales.php:622 +#: [mood]in_awe msgid "in awe" msgstr "kagum" -#: ../cache/locales.php:623 +#: [mood]in_love msgid "in love" msgstr "jatuh cinta" -#: ../cache/locales.php:624 +#: [mood]indignant msgid "indignant" msgstr "" -#: ../cache/locales.php:625 +#: [mood]interested msgid "interested" msgstr "tertarik" -#: ../cache/locales.php:626 +#: [mood]intoxicated msgid "intoxicated" msgstr "mabuk" -#: ../cache/locales.php:627 +#: [mood]invincible msgid "invincible" msgstr "tak terkalahkan" -#: ../cache/locales.php:628 +#: [mood]jealous msgid "jealous" msgstr "cemburu" -#: ../cache/locales.php:629 +#: [mood]lonely msgid "lonely" msgstr "kesepian" -#: ../cache/locales.php:630 +#: [mood]lost msgid "lost" msgstr "tersesat" -#: ../cache/locales.php:631 +#: [mood]lucky msgid "lucky" msgstr "beruntung" -#: ../cache/locales.php:632 +#: [mood]mean msgid "mean" msgstr "jahat" -#: ../cache/locales.php:633 +#: [mood]moody msgid "moody" msgstr "murung" -#: ../cache/locales.php:634 +#: [mood]nervous msgid "nervous" msgstr "gugup" -#: ../cache/locales.php:635 +#: [mood]neutral msgid "neutral" msgstr "netral" -#: ../cache/locales.php:636 +#: [mood]offended msgid "offended" msgstr "tersinggung" -#: ../cache/locales.php:637 +#: [mood]outraged msgid "outraged" msgstr "marah" -#: ../cache/locales.php:638 +#: [mood]playful msgid "playful" msgstr "humoris" -#: ../cache/locales.php:639 +#: [mood]proud msgid "proud" msgstr "bangga" -#: ../cache/locales.php:640 +#: [mood]relaxed msgid "relaxed" msgstr "santai" -#: ../cache/locales.php:641 +#: [mood]relieved msgid "relieved" msgstr "lega" -#: ../cache/locales.php:642 -msgid "remorseful" -msgstr "menyesal" - -#: ../cache/locales.php:643 +#: [mood]restless msgid "restless" msgstr "gelisah" -#: ../cache/locales.php:644 +#: [mood]sad msgid "sad" msgstr "sedih" -#: ../cache/locales.php:645 +#: [mood]sarcastic msgid "sarcastic" msgstr "sarkastik" -#: ../cache/locales.php:646 +#: [mood]satisfied msgid "satisfied" msgstr "puas" -#: ../cache/locales.php:647 +#: [mood]serious msgid "serious" msgstr "serius" -#: ../cache/locales.php:648 +#: [mood]shocked msgid "shocked" msgstr "kaget" -#: ../cache/locales.php:649 +#: [mood]shy msgid "shy" msgstr "malu" -#: ../cache/locales.php:650 +#: [mood]sick msgid "sick" msgstr "sakit" -#: ../cache/locales.php:651 +#: [mood]sleepy msgid "sleepy" msgstr "mengantuk" -#: ../cache/locales.php:652 +#: [mood]spontaneous msgid "spontaneous" msgstr "spontan" -#: ../cache/locales.php:653 +#: [mood]stressed msgid "stressed" msgstr "stress" -#: ../cache/locales.php:654 +#: [mood]strong msgid "strong" msgstr "kuat" -#: ../cache/locales.php:655 +#: [mood]surprised msgid "surprised" msgstr "tercengang" -#: ../cache/locales.php:656 +#: [mood]thankful msgid "thankful" msgstr "berterima kasih" -#: ../cache/locales.php:657 +#: [mood]thirsty msgid "thirsty" msgstr "haus" -#: ../cache/locales.php:658 +#: [mood]tired msgid "tired" msgstr "lelah" -#: ../cache/locales.php:659 +#: [mood]undefined msgid "undefined" msgstr "tak terdefinisi" -#: ../cache/locales.php:660 +#: [mood]weak msgid "weak" msgstr "lemah" -#: ../cache/locales.php:661 +#: [mood]worried msgid "worried" msgstr "khawatir" -#: ../cache/locales.php:662 +#: [month]title msgid "Month" msgstr "Bulan" -#: ../cache/locales.php:663 +#: [month]january msgid "January" msgstr "Januari" -#: ../cache/locales.php:664 +#: [month]february msgid "February" msgstr "Februari" -#: ../cache/locales.php:665 +#: [month]march msgid "March" msgstr "Maret" -#: ../cache/locales.php:666 +#: [month]april msgid "April" msgstr "April" -#: ../cache/locales.php:667 +#: [month]may msgid "May" msgstr "Mei" -#: ../cache/locales.php:668 +#: [month]june msgid "June" msgstr "Juni" -#: ../cache/locales.php:669 +#: [month]july msgid "July" msgstr "Juli" -#: ../cache/locales.php:670 +#: [month]august msgid "August" msgstr "Agustus" -#: ../cache/locales.php:671 +#: [month]september msgid "September" msgstr "September" -#: ../cache/locales.php:672 +#: [month]october msgid "October" msgstr "Oktober" -#: ../cache/locales.php:673 +#: [month]november msgid "November" msgstr "November" -#: ../cache/locales.php:674 +#: [month]december msgid "December" msgstr "Desember" -#: ../cache/locales.php:675 +#: [year]title msgid "Year" msgstr "Tahun" -#: ../cache/locales.php:676 +#: [date]today msgid "Today" msgstr "Hari Ini" -#: ../cache/locales.php:677 +#: [date]tomorrow msgid "Tomorrow" msgstr "Besok" -#: ../cache/locales.php:678 +#: [date]yesterday msgid "Yesterday" msgstr "Kemarin" -#: ../cache/locales.php:679 -#, php-format -msgid " %d days ago" +#: [date]ago +#, fuzzy +msgid "%d days ago" msgstr " %d hari lalu" -#: ../cache/locales.php:680 +#: [date]day msgid "day" msgstr "hari" -#: ../cache/locales.php:682 +#: [post]whats_new msgid "What's new ?" msgstr "" -#: ../cache/locales.php:683 +#: [post]place msgid "Place" msgstr "" -#: ../cache/locales.php:684 +#: [post]by msgid "by" msgstr "" -#: ../cache/locales.php:685 +#: [post]geolocalisation msgid "Geolocalisation" msgstr "" -#: ../cache/locales.php:686 +#: [post]email msgid "email" msgstr "" -#: ../cache/locales.php:688 +#: [post]no_comments msgid "No comments yet" msgstr "" -#: ../cache/locales.php:689 +#: [post]no_comments_stream msgid "No comments stream" msgstr "" -#: ../cache/locales.php:690 +#: [post]no_load msgid "Your feed cannot be loaded." msgstr "Feed mu tidak dapat dimuat." -#: ../cache/locales.php:691 +#: [post]older msgid "Get older posts" msgstr "Tampilkan posting lawas" -#: ../cache/locales.php:692 -#, php-format +#: [post]new_items msgid "%s new items" msgstr "" -#: ../cache/locales.php:693 +#: [post]comment_error msgid "Comment publication error" msgstr "Kesalahan publikasikan komentar" -#: ../cache/locales.php:694 +#: [post]comments_older msgid "Show the older comments" msgstr "" -#: ../cache/locales.php:695 -msgid "Loading comments ..." +#: [post]comments_loading +msgid "Loading comments..." msgstr "" -#: ../cache/locales.php:696 +#: [post]comments_get msgid "Get the comments" msgstr "" -#: ../cache/locales.php:697 +#: [post]comment_add msgid "Add a comment" msgstr "" -#: ../cache/locales.php:698 +#: [post]share msgid "Share with" msgstr "" -#: ../cache/locales.php:699 +#: [post]share_everyone msgid "Everyone" msgstr "" -#: ../cache/locales.php:700 +#: [post]share_your_contacts msgid "Your contacts" msgstr "" -#: ../cache/locales.php:702 +#: [post]updated msgid "Updated" msgstr "" -#: ../cache/locales.php:703 +#: [post]content_not_found msgid "Content not found" msgstr "" -#: ../cache/locales.php:704 +#: [post]default_title msgid "Contact publication" msgstr "" -#: ../cache/locales.php:705 +#: [post]comments msgid "Comments" msgstr "" -#: ../cache/locales.php:706 +#: [api]error msgid "The API is not reachable, try again later" msgstr "" -#: ../cache/locales.php:707 +#: [field]type_here msgid "Type here" msgstr "" +#~ msgid "remorseful" +#~ msgstr "menyesal" + #~ msgid "Logout" #~ msgstr "Keluar" -#~ msgid "Create my vCard" -#~ msgstr "Buat vCard ku" - #~ msgid "My Posts" #~ msgstr "Posting saya" #~ msgid "Edit my Profile" #~ msgstr "Edit Profil ku" -#~ msgid "" -#~ "Your server doesn't support post publication, you can only read contact's " -#~ "feeds" -#~ msgstr "" -#~ "Server anda tidak mendukung pasca publikasi, kamu hanya dapat membaca feed " -#~ "kontak" +#~ msgid "Your server doesn't support post publication, you can only read contact's feeds" +#~ msgstr "Server anda tidak mendukung pasca publikasi, kamu hanya dapat membaca feed kontak" #~ msgid "Invite this user" #~ msgstr "Undang user ini" -#~ msgid "Remove this contact" -#~ msgstr "Hapus kontak ini" - #~ msgid "What is Movim?" #~ msgstr "Apa itu Movim?" -#, php-format -#~ msgid "" -#~ "Visit the page %s What is Movim ? %s to know more about the project, its " -#~ "aims and understand how it works." -#~ msgstr "" -#~ "Kunjungi halaman %s Apa itu Movim ? %s untuk mengetahui lebih lanjut tentang " -#~ "proyek, tujuan dan pahami cara kerjanya." +#~ msgid "Visit the page %s What is Movim ? %s to know more about the project, its aims and understand how it works." +#~ msgstr "Kunjungi halaman %s Apa itu Movim ? %s untuk mengetahui lebih lanjut tentang proyek, tujuan dan pahami cara kerjanya." diff --git a/sources/locales/io.po b/sources/locales/io.po index f07c69b..b2974fd 100644 --- a/sources/locales/io.po +++ b/sources/locales/io.po @@ -3,2583 +3,2699 @@ # This file is distributed under the same license as the movim package. # FIRST AUTHOR , 2013. # +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/About/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Account/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AccountNext/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AdHoc/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AdminDB/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AdminMain/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AdminTest/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Api/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Avatar/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Blog/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Bookmark/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Chat/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Chats/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/ConfigData/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Config/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Contact/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Group/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Groups/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Header/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Hello/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Help/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Init/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Location/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/LoginAnonymous/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Login/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Menu/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/NodeAffiliations/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/NodeSubscriptions/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Notifs/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Post/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Presence/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Publish/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/PubsubSubscriptionConfig/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Rooms/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Roster/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Share/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Statistics/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Subscribe/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Syndication/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Upload/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Vcard4/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/VisioExt/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Visio/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../locales/locales.ini msgid "" msgstr "" "Project-Id-Version: movim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-06-08 22:06+0200\n" +"POT-Creation-Date: 2015-08-20 15:17+0200\n" "PO-Revision-Date: 2014-06-01 23:07+0000\n" "Last-Translator: edhelas \n" "Language-Team: Ido \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2015-06-18 21:08+0000\n" "X-Generator: Launchpad (build 17570)\n" -"Language: \n" -#: ../cache/locales.php:2 +#: [about]thanks msgid "Thanks" msgstr "" -#: ../cache/locales.php:3 +#: [about]developers msgid "Developers" msgstr "" -#: ../cache/locales.php:4 +#: [about]translators msgid "Translators" msgstr "" -#: ../cache/locales.php:5 +#: [about]software msgid "Software" msgstr "" -#: ../cache/locales.php:6 +#: [about]resources msgid "Resources" msgstr "" -#: ../cache/locales.php:7 ../cache/locales.php:83 ../cache/locales.php:85 +#: [about]api [schema]api [api]title msgid "API" msgstr "" -#: ../cache/locales.php:8 -msgid "" -"Movim is an XMPP-based communication platform. All the project, except the " -"following software and resources, is under" +#: [about]info +msgid "Movim is an XMPP-based communication platform. All the project, except the following software and resources, is under" msgstr "" -#: ../cache/locales.php:9 +#: [account]title msgid "Account" msgstr "" -#: ../cache/locales.php:10 -msgid "The password has been updated" +#: [account]password_change_title +msgid "Change my password" msgstr "" -#: ../cache/locales.php:11 -msgid "Please provide a valid password (6 characters minimum)" -msgstr "" - -#: ../cache/locales.php:12 -msgid "The provided passwords are not the same" -msgstr "" - -#: ../cache/locales.php:13 -msgid "Delete my account" -msgstr "" - -#: ../cache/locales.php:14 -msgid "" -"You will delete your XMPP account and all the relative information linked to " -"it (profile, contacts and publications)." -msgstr "" - -#: ../cache/locales.php:15 -msgid "Are you sure that you want to delete it ?" -msgstr "" - -#: ../cache/locales.php:16 ../cache/locales.php:411 -msgid "Create a new account" -msgstr "" - -#: ../cache/locales.php:17 -msgid "No account creation form found on the server" -msgstr "" - -#: ../cache/locales.php:18 ../cache/locales.php:172 -msgid "on" -msgstr "" - -#: ../cache/locales.php:19 -msgid "Your acccount has been successfully registered" -msgstr "" - -#: ../cache/locales.php:20 -msgid "Loading" -msgstr "" - -#: ../cache/locales.php:21 -msgid "Not Acceptable" -msgstr "" - -#: ../cache/locales.php:22 -msgid "The registration system of this server is currently unavailable" -msgstr "" - -#: ../cache/locales.php:23 -msgid "" -"This server use an external system for the registration, please click on the " -"following URL." -msgstr "" - -#: ../cache/locales.php:24 -msgid "Actions" -msgstr "" - -#: ../cache/locales.php:25 ../cache/locales.php:82 -msgid "Database" -msgstr "" - -#: ../cache/locales.php:26 -msgid "Modl wasn't able to connect to the database" -msgstr "" - -#: ../cache/locales.php:27 -msgid "Movim is connected to the database" -msgstr "" - -#: ../cache/locales.php:28 -msgid "The database need to be updated" -msgstr "" - -#: ../cache/locales.php:29 -msgid "Movim database is up to date" -msgstr "" - -#: ../cache/locales.php:30 -msgid "Database Type" -msgstr "" - -#: ../cache/locales.php:31 ../cache/locales.php:50 ../cache/locales.php:540 -msgid "Username" -msgstr "" - -#: ../cache/locales.php:32 ../cache/locales.php:51 ../cache/locales.php:282 -#: ../cache/locales.php:541 +#: [account]password [db]password [credentials]password [form]password +#: [input]password msgid "Password" msgstr "" -#: ../cache/locales.php:33 +#: [account]password_confirmation +msgid "Password confirmation" +msgstr "" + +#: [account]password_changed +msgid "The password has been updated" +msgstr "" + +#: [account]password_not_valid +msgid "Please provide a valid password (6 characters minimum)" +msgstr "" + +#: [account]password_not_same +msgid "The provided passwords are not the same" +msgstr "" + +#: [account]delete_title +msgid "Delete my account" +msgstr "" + +#: [account]delete +msgid "Delete your account" +msgstr "" + +#: [account]delete_text +msgid "You will delete your XMPP account and all the relative information linked to it (profile, contacts and publications)." +msgstr "" + +#: [account]delete_text_confirm +msgid "Are you sure that you want to delete it ?" +msgstr "" + +#: [account]gateway_title +msgid "Gateway" +msgstr "" + +#: [create]title [subscribe]title +msgid "Create a new account" +msgstr "" + +#: [create]notfound +msgid "No account creation form found on the server" +msgstr "" + +#: [create]server_on +msgid "on" +msgstr "" + +#: [create]successfull +msgid "Your acccount has been successfully registered" +msgstr "" + +#: [create]loading +msgid "Loading" +msgstr "" + +#: [error]not_acceptable +msgid "Not Acceptable" +msgstr "" + +#: [error]service_unavailable +msgid "The registration system of this server is currently unavailable" +msgstr "" + +#: [oob]about +msgid "This server use an external system for the registration, please click on the following URL." +msgstr "" + +#: [adhoc]title +msgid "Actions" +msgstr "" + +#: [db]legend [schema]database +msgid "Database" +msgstr "" + +#: [db]connect_error +msgid "Modl wasn't able to connect to the database" +msgstr "" + +#: [db]connect_success +msgid "Movim is connected to the database" +msgstr "" + +#: [db]update +msgid "The database need to be updated" +msgstr "" + +#: [db]up_to_date +msgid "Movim database is up to date" +msgstr "" + +#: [db]type +msgid "Database Type" +msgstr "" + +#: [db]username [credentials]username [input]username +msgid "Username" +msgstr "" + +#: [db]host msgid "Host" msgstr "" -#: ../cache/locales.php:34 +#: [db]port msgid "Port" msgstr "" -#: ../cache/locales.php:35 -msgid "Database Name" +#: [db]name +msgid "Database sName" msgstr "" -#: ../cache/locales.php:36 +#: [admin]general msgid "General Settings" msgstr "" -#: ../cache/locales.php:37 +#: [general]theme msgid "Theme" msgstr "" -#: ../cache/locales.php:38 +#: [general]language msgid "Default language" msgstr "" -#: ../cache/locales.php:39 -msgid "Environment" -msgstr "" - -#: ../cache/locales.php:40 +#: [general]log_verbosity msgid "Log verbosity" msgstr "" -#: ../cache/locales.php:41 +#: [general]timezone msgid "Server Timezone" msgstr "" -#: ../cache/locales.php:42 +#: [general]limit msgid "User folder size limit (in bytes)" msgstr "" -#: ../cache/locales.php:43 +#: [websocket]title msgid "WebSocket Configuration" msgstr "" -#: ../cache/locales.php:44 +#: [websocket]info msgid "Enter here a valid WebSocket URI in the form" msgstr "" -#: ../cache/locales.php:45 +#: [websocket]label msgid "WebSocket URI" msgstr "" -#: ../cache/locales.php:46 -msgid "" -"If you change the URI, please restart the daemon to reload the configuration" +#: [websocket]save_info +msgid "If you change the URI, please restart the daemon to reload the configuration" msgstr "" -#: ../cache/locales.php:47 +#: [websocket]publics msgid "Public WebSockets" msgstr "" -#: ../cache/locales.php:48 +#: [credentials]title msgid "Administration Credential" msgstr "" -#: ../cache/locales.php:49 +#: [credentials]info msgid "Change the default credentials admin/password" msgstr "" -#: ../cache/locales.php:52 +#: [credentials]re_password msgid "Retype password" msgstr "" -#: ../cache/locales.php:53 +#: [whitelist]title msgid "Whitelist - XMPP Server" msgstr "" -#: ../cache/locales.php:54 -msgid "" -"If you want to specify a list of authorized XMPP servers on your Movim pod " -"and forbid the connection on all the others please put their domain name " -"here, with comma (ex: movim.eu,jabber.fr)" +#: [whitelist]info1 +msgid "If you want to specify a list of authorized XMPP servers on your Movim pod and forbid the connection on all the others please put their domain name here, with comma (ex: movim.eu,jabber.fr)" msgstr "" -#: ../cache/locales.php:55 -msgid "" -"Leave this field blank if you allow the access to all the XMPP accounts." +#: [whitelist]info2 +msgid "Leave this field blank if you allow the access to all the XMPP accounts." msgstr "" -#: ../cache/locales.php:56 +#: [whitelist]label msgid "List of whitelisted XMPP servers" msgstr "" -#: ../cache/locales.php:57 ../cache/locales.php:61 +#: [information]title +msgctxt "[information]title" msgid "Information Message" msgstr "" -#: ../cache/locales.php:58 +#: [information]description msgid "Description" msgstr "" -#: ../cache/locales.php:59 +#: [information]info1 msgid "This message will be displayed on the login page" msgstr "" -#: ../cache/locales.php:60 -msgid "Leave this field blank if you don't want to show any message." +#: [information]info2 +msgid "Leave this field blank if you dont want to show any message." msgstr "" -#: ../cache/locales.php:62 +#: [information]label +msgctxt "[information]label" +msgid "Information Message" +msgstr "" + +#: [log]empty msgid "Empty" msgstr "" -#: ../cache/locales.php:63 +#: [log]syslog msgid "Syslog" msgstr "" -#: ../cache/locales.php:64 +#: [log]syslog_files msgid "Syslog and files" msgstr "" -#: ../cache/locales.php:65 +#: [rewrite]title msgid "URL Rewriting" msgstr "" -#: ../cache/locales.php:66 +#: [rewrite]info msgid "The URL Rewriting can be enabled" msgstr "" -#: ../cache/locales.php:67 +#: [admin]compatibility msgid "General Overview" msgstr "" -#: ../cache/locales.php:68 -msgid "" -"Movim has found some issues or things that need to be fixed or improved" +#: [compatibility]info +msgid "Movim has found some issues or things that need to be fixed or improved" msgstr "" -#: ../cache/locales.php:69 -#, php-format +#: [compatibility]php1 msgid "Update your PHP-Version: %s" msgstr "" -#: ../cache/locales.php:70 +#: [compatibility]php2 msgid "Required: 5.3.0" msgstr "" -#: ../cache/locales.php:71 +#: [compatibility]curl msgid "Install the php5-curl library" msgstr "" -#: ../cache/locales.php:72 +#: [compatibility]imagick msgid "Install the php5-imagick library" msgstr "" -#: ../cache/locales.php:73 +#: [compatibility]gd msgid "Install the php5-gd library" msgstr "" -#: ../cache/locales.php:74 -msgid "Read and write rights for the webserver in Movim's root directory" +#: [compatibility]rights +msgid "Read and write rights for the webserver in Movims root directory" msgstr "" -#: ../cache/locales.php:75 +#: [compatibility]rewrite msgid "The URL Rewriting support is currently disabled" msgstr "" -#: ../cache/locales.php:76 +#: [compatibility]db msgid "The database need to be updated, go to the database panel to fix this" msgstr "" -#: ../cache/locales.php:77 -msgid "" -"WebSocket connection error, check if the Movim Daemon is running and is " -"reacheable" +#: [compatibility]websocket +msgid "WebSocket connection error, check if the Movim Daemon is running and is reachable" msgstr "" -#: ../cache/locales.php:78 -msgid "" -"XMPP Websocket connection error, please check the validity of the URL given " -"in the General Configuration" +#: [compatibility]xmpp_websocket +msgid "XMPP Websocket connection error, please check the validity of the URL given in the General Configuration" msgstr "" -#: ../cache/locales.php:79 +#: [schema]browser msgid "Browser" msgstr "" -#: ../cache/locales.php:80 +#: [schema]movim msgid "Movim Core" msgstr "" -#: ../cache/locales.php:81 +#: [schema]daemon msgid "Movim Daemon" msgstr "" -#: ../cache/locales.php:84 +#: [schema]xmpp msgid "XMPP" msgstr "" -#: ../cache/locales.php:86 -#, php-format -msgid "" -"Here you can register your pod on the official %sMovim API%s and be listed " -"on %sthe pods page%s." +#: [api]info +msgid "Here you can register your pod on the official %sMovim API%s and be listed on %sthe pods page%s." msgstr "" -#: ../cache/locales.php:87 +#: [api]register msgid "Your pod is not registered on the API" msgstr "" -#: ../cache/locales.php:88 +#: [api]registered msgid "Your pod is registered on the API" msgstr "" -#: ../cache/locales.php:89 +#: [api]wait msgid "Your pod is not yet validated" msgstr "" -#: ../cache/locales.php:90 +#: [api]validated msgid "Your pod is validated" msgstr "" -#: ../cache/locales.php:91 -msgid "" -"You asked to be removed from the API, this request will be processed in a " -"couple of hours" +#: [api]unregister +msgid "You asked to be removed from the API, this request will be processed in a couple of hours" msgstr "" -#: ../cache/locales.php:92 ../cache/locales.php:147 +#: [api]conf_updated [config]updated msgid "Configuration updated" msgstr "" -#: ../cache/locales.php:93 +#: [avatar]file msgid "File" msgstr "" -#: ../cache/locales.php:94 +#: [avatar]use_it msgid "Use it" msgstr "" -#: ../cache/locales.php:95 +#: [avatar]webcam msgid "Webcam" msgstr "" -#: ../cache/locales.php:96 +#: [avatar]cheese msgid "Cheese !" msgstr "" -#: ../cache/locales.php:97 +#: [avatar]snapshot msgid "Take a webcam snapshot" msgstr "" -#: ../cache/locales.php:98 +#: [avatar]updated msgid "Avatar Updated" msgstr "" -#: ../cache/locales.php:99 +#: [avatar]not_updated msgid "Avatar Not Updated" msgstr "" -#: ../cache/locales.php:100 ../cache/locales.php:415 -#, php-format +#: [blog]title [feed]title msgid "%s's feed" msgstr "" -#: ../cache/locales.php:101 +#: [blog]empty msgid "This user has not posted anything right now" msgstr "" -#: ../cache/locales.php:102 +#: [title]conferences msgid "Conferences" msgstr "" -#: ../cache/locales.php:103 ../cache/locales.php:193 ../cache/locales.php:217 -#: ../cache/locales.php:468 +#: [title]groups [group]empty_title [menu]groups [page]groups msgid "Groups" msgstr "" -#: ../cache/locales.php:104 +#: [chatroom]add msgid "Add a new Chat Room" msgstr "" -#: ../cache/locales.php:105 ../cache/locales.php:368 +#: [chatroom]id [chatrooms]id msgid "Chat Room ID" msgstr "" -#: ../cache/locales.php:106 ../cache/locales.php:116 ../cache/locales.php:156 -#: ../cache/locales.php:361 ../cache/locales.php:369 ../cache/locales.php:424 +#: [chatroom]name +msgctxt "[chatroom]name" msgid "Name" msgstr "" -#: ../cache/locales.php:107 ../cache/locales.php:157 ../cache/locales.php:371 -#: ../cache/locales.php:425 +#: [chatroom]nickname [general]nickname [chatrooms]nickname msgid "Nickname" msgstr "" -#: ../cache/locales.php:108 +#: [chatroom]autojoin_label msgid "Do you want do join automaticaly this Chat Room ?" msgstr "" -#: ../cache/locales.php:109 ../cache/locales.php:372 +#: [chatroom]bad_id [chatrooms]bad_id msgid "Bad Chatroom ID" msgstr "" -#: ../cache/locales.php:110 ../cache/locales.php:373 +#: [chatroom]empty_name [chatrooms]empty_name msgid "Empty name" msgstr "" -#: ../cache/locales.php:111 ../cache/locales.php:380 +#: [bookmarks]updated msgid "Bookmarks updated" msgstr "" -#: ../cache/locales.php:112 -msgid "An error occured : " +#: [bookmarks]error +msgid "An error occured :" msgstr "" -#: ../cache/locales.php:113 +#: [bookmarks]configure msgid "Configure" msgstr "" -#: ../cache/locales.php:114 +#: [url]add msgid "Add a new URL" msgstr "" -#: ../cache/locales.php:115 +#: [url]url msgid "URL" msgstr "" -#: ../cache/locales.php:117 +#: [url]name +msgctxt "[url]name" +msgid "Name" +msgstr "" + +#: [message]published msgid "Message Published" msgstr "" -#: ../cache/locales.php:118 ../cache/locales.php:138 +#: [message]encrypted msgid "Encrypted message" msgstr "" -#: ../cache/locales.php:119 +#: [message]composing [chats]composing msgid "Composing..." msgstr "" -#: ../cache/locales.php:120 +#: [message]paused [chats]paused msgid "Paused..." msgstr "" -#: ../cache/locales.php:121 +#: [message]gone msgid "Contact gone" msgstr "" -#: ../cache/locales.php:122 -#, php-format +#: [chat]attention msgid "%s needs your attention" msgstr "" -#: ../cache/locales.php:123 +#: [chat]placeholder msgid "Your message here..." msgstr "" -#: ../cache/locales.php:124 +#: [chat]smileys msgid "Smileys" msgstr "" -#: ../cache/locales.php:125 ../cache/locales.php:139 +#: [chat]empty_title [button]chat msgid "Chat" msgstr "" -#: ../cache/locales.php:126 +#: [chat]empty_text msgid "Discuss with your contacts" msgstr "" -#: ../cache/locales.php:127 -msgid "Members" -msgstr "" - -#: ../cache/locales.php:128 ../cache/locales.php:376 -msgid "Connected to the chatroom" -msgstr "" - -#: ../cache/locales.php:129 ../cache/locales.php:377 -msgid "Disconnected from the chatroom" -msgstr "" - -#: ../cache/locales.php:130 ../cache/locales.php:200 ../cache/locales.php:469 -msgid "Configuration" -msgstr "" - -#: ../cache/locales.php:131 -msgid "Configuration saved" -msgstr "" - -#: ../cache/locales.php:132 -msgid "Subject" -msgstr "" - -#: ../cache/locales.php:133 -msgid "Subject changed" -msgstr "" - -#: ../cache/locales.php:134 -msgid "Open a new conversation by clicking on the plus button bellow" -msgstr "" - -#: ../cache/locales.php:135 -msgid "Chat with a contact" -msgstr "" - -#: ../cache/locales.php:136 +#: [chat]frequent [chats]frequent msgid "Frequent contacts" msgstr "" -#: ../cache/locales.php:137 +#: [chatroom]members +msgid "Members" +msgstr "" + +#: [chatroom]connected [chatrooms]connected +msgid "Connected to the chatroom" +msgstr "" + +#: [chatroom]disconnected [chatrooms]disconnected +msgid "Disconnected from the chatroom" +msgstr "" + +#: [chatroom]config [group]configuration [page]configuration +msgid "Configuration" +msgstr "" + +#: [chatroom]config_saved +msgid "Configuration saved" +msgstr "" + +#: [chatroom]subject +msgid "Subject" +msgstr "" + +#: [chatroom]subject_changed +msgid "Subject changed" +msgstr "" + +#: [chats]empty_title +msgid "No chats yet..." +msgstr "" + +#: [chats]empty +msgid "Open a new conversation by clicking on the plus button bellow or visit the Contacts page." +msgstr "" + +#: [chats]add +msgid "Chat with a contact" +msgstr "" + +#: [chats]more msgid "Load more contacts" msgstr "" -#: ../cache/locales.php:140 -msgid "General" -msgstr "" - -#: ../cache/locales.php:141 -msgid "Language" -msgstr "" - -#: ../cache/locales.php:142 -msgid "Roster display" -msgstr "" - -#: ../cache/locales.php:143 -msgid "Show the offline contacts" -msgstr "" - -#: ../cache/locales.php:144 -msgid "Hide the offline contacts" -msgstr "" - -#: ../cache/locales.php:145 -msgid "Appearence" -msgstr "" - -#: ../cache/locales.php:146 -msgid "This configuration is shared wherever you are connected !" -msgstr "" - -#: ../cache/locales.php:148 -msgid "Notify on incoming message" -msgstr "" - -#: ../cache/locales.php:149 -msgid "Use desktop notifications" -msgstr "" - -#: ../cache/locales.php:150 +#: [title]data msgid "Data" msgstr "" -#: ../cache/locales.php:151 +#: [title]cache msgid "Cache" msgstr "" -#: ../cache/locales.php:152 ../cache/locales.php:218 ../cache/locales.php:466 +#: [title]contacts [menu]contacts [page]contacts msgid "Contacts" msgstr "" -#: ../cache/locales.php:153 ../cache/locales.php:480 +#: [title]posts [page]posts msgid "Posts" msgstr "" -#: ../cache/locales.php:154 +#: [title]messages msgid "Messages" msgstr "" -#: ../cache/locales.php:155 ../cache/locales.php:423 +#: [config]general +msgid "General" +msgstr "" + +#: [config]language +msgid "Language" +msgstr "" + +#: [config]roster +msgid "Roster display" +msgstr "" + +#: [config]roster_show +msgid "Show the offline contacts" +msgstr "" + +#: [config]roster_hide +msgid "Hide the offline contacts" +msgstr "" + +#: [config]appearence +msgid "Appearence" +msgstr "" + +#: [config]info +msgid "This configuration is shared wherever you are connected" +msgstr "" + +#: [notifications]message +msgid "Notify on incoming message" +msgstr "" + +#: [notifications]desktop +msgid "Use desktop notifications" +msgstr "" + +#: [general]legend [general]general_title msgid "General Informations" msgstr "" -#: ../cache/locales.php:158 ../cache/locales.php:427 +#: [general]name [public_groups]name [chatrooms]name +msgid "Name" +msgstr "" + +#: [general]date_of_birth msgid "Date of Birth" msgstr "" -#: ../cache/locales.php:159 ../cache/locales.php:428 +#: [general]gender msgid "Gender" msgstr "" -#: ../cache/locales.php:160 ../cache/locales.php:429 +#: [general]marital msgid "Marital Status" msgstr "" -#: ../cache/locales.php:161 ../cache/locales.php:426 +#: [general]email msgid "Email" msgstr "" -#: ../cache/locales.php:162 ../cache/locales.php:430 +#: [general]website msgid "Website" msgstr "" -#: ../cache/locales.php:163 ../cache/locales.php:431 +#: [general]about msgid "About Me" msgstr "" -#: ../cache/locales.php:164 +#: [general]accounts msgid "Other Accounts" msgstr "" -#: ../cache/locales.php:165 +#: [general]tune msgid "Is Listening" msgstr "" -#: ../cache/locales.php:166 ../cache/locales.php:432 +#: [position]legend [position]position_title msgid "Geographic Position" msgstr "" -#: ../cache/locales.php:167 ../cache/locales.php:433 +#: [position]locality msgid "Locality" msgstr "" -#: ../cache/locales.php:168 ../cache/locales.php:434 +#: [position]country msgid "Country" msgstr "" -#: ../cache/locales.php:169 +#: [mood]title msgid "Mood" msgstr "" -#: ../cache/locales.php:170 +#: [mood]im msgid "I'm " msgstr "" -#: ../cache/locales.php:171 +#: [listen]title msgid "Listening" msgstr "" -#: ../cache/locales.php:173 +#: [last]title msgid "Last seen" msgstr "" -#: ../cache/locales.php:174 +#: [client]title msgid "Client Informations" msgstr "" -#: ../cache/locales.php:175 +#: [explore]last_registered msgid "Last registered" msgstr "" -#: ../cache/locales.php:176 +#: [explore]explore msgid "Find some new friends" msgstr "" -#: ../cache/locales.php:177 ../cache/locales.php:533 +#: [edit]title [button]edit msgid "Edit" msgstr "" -#: ../cache/locales.php:178 +#: [edit]alias msgid "Alias" msgstr "" -#: ../cache/locales.php:179 +#: [edit]group msgid "Group" msgstr "" -#: ../cache/locales.php:180 ../cache/locales.php:400 +#: [edit]updated [roster]updated msgid "Contact updated" msgstr "" -#: ../cache/locales.php:181 +#: [delete]title msgid "Are you sure?" msgstr "" -#: ../cache/locales.php:182 -msgid "" -"You are going to delete one of your contacts, please confirm your action" +#: [delete]text +msgid "You are going to delete one of your contacts, please confirm your action" msgstr "" -#: ../cache/locales.php:183 -#, php-format +#: [age]years msgid "%s years" msgstr "" -#: ../cache/locales.php:184 +#: [blog]last msgid "Last public post" msgstr "" -#: ../cache/locales.php:185 +#: [subscription]to +msgid "You can see this contact status" +msgstr "" + +#: [subscription]to_button +msgid "Share my status" +msgstr "" + +#: [subscription]to_text +msgid "But this contact cannot see yours" +msgstr "" + +#: [subscription]from +msgid "You are not subscribed to this contact" +msgstr "" + +#: [subscription]from_button +msgid "Ask to subscribe" +msgstr "" + +#: [subscription]from_text +msgid "But this contact can still see if you are online" +msgstr "" + +#: [subscription]nil +msgid "No subscriptions" +msgstr "" + +#: [subscription]nil_button +msgid "Invite" +msgstr "" + +#: [subscription]nil_text +msgid "This contact is in your contact list but there is no subscriptions between the two accounts" +msgstr "" + +#: [group]subscribe msgid "Subscribe" msgstr "" -#: ../cache/locales.php:186 +#: [group]subscribed msgid "Subscribed" msgstr "" -#: ../cache/locales.php:187 +#: [group]unsubscribe msgid "Unsubscribe" msgstr "" -#: ../cache/locales.php:188 +#: [group]unsubscribe_text msgid "You are going to unsubscribe from this Group" msgstr "" -#: ../cache/locales.php:189 +#: [group]unsubscribed msgid "Unsubscribed" msgstr "" -#: ../cache/locales.php:190 +#: [group]share_label msgid "Make your membership to this group public to your friends" msgstr "" -#: ../cache/locales.php:191 +#: [group]label_label msgid "Give a label for this group" msgstr "" -#: ../cache/locales.php:192 +#: [group]sure msgid "Are you sure ?" msgstr "" -#: ../cache/locales.php:194 +#: [group]empty_text msgid "Discover, follow and share" msgstr "" -#: ../cache/locales.php:195 +#: [group]empty msgid "Something bad happened to this group" msgstr "" -#: ../cache/locales.php:196 +#: [group]config_saved msgid "Group configuration saved" msgstr "" -#: ../cache/locales.php:197 +#: [group]delete_title msgid "Delete the group" msgstr "" -#: ../cache/locales.php:198 -msgid "" -"You are going to delete the following group. Please confirm your action." +#: [group]delete_text +msgid "You are going to delete the following group. Please confirm your action." msgstr "" -#: ../cache/locales.php:199 -msgid "" -"It seems that this group doesn't exists anymore. Do you want to remove it " -"from your subscriptions?" +#: [group]delete_clean_text +msgid "It seems that this group doesn't exists anymore. Do you want to remove it from your subscriptions?" msgstr "" -#: ../cache/locales.php:201 ../cache/locales.php:408 +#: [group]counter +msgid "%s groups on this server" +msgstr "" + +#: [group]subscriptions [statistics]subscriptions msgid "Subscriptions" msgstr "" -#: ../cache/locales.php:202 ../cache/locales.php:290 +#: [group]servers +msgid "Groups servers" +msgstr "" + +#: [group]search_server +msgid "Search for a new server" +msgstr "" + +#: [group]help_info1 +msgid "Groups are the perfect way to share posts about topics that you like with all the other Movim's users." +msgstr "" + +#: [group]help_info2 +msgid "Choose a server and a Group and subscribe to it using the %s button in the header. You can also create a new one using the %s button." +msgstr "" + +#: [group]help_info3 +msgid "Done? You can now publish a new post in the Group by using the %s button." +msgstr "" + +#: [group]help_info4 +msgid "You will find a list of all your subscribed Groups in My Subscriptions and receive instantly all the new incoming posts in the %sNews%s page." +msgstr "" + +#: [groups]empty_title msgid "Hello" msgstr "" -#: ../cache/locales.php:203 ../cache/locales.php:225 ../cache/locales.php:291 +#: [groups]contact_post [hello]contact_post [menu]contact_post msgid "Contact post" msgstr "" -#: ../cache/locales.php:204 -msgid "" -"You don't have any subscriptions yet, select a group server above to start " -"exploring." +#: [groups]empty_text1 +msgid "You don't have any subscriptions yet, select a group server above to start exploring." msgstr "" -#: ../cache/locales.php:205 +#: [groups]empty_text2 msgid "Subscribe to your favorite feeds by bookmarking them." msgstr "" -#: ../cache/locales.php:206 +#: [groups]subscriptions msgid "My Subscriptions" msgstr "" -#: ../cache/locales.php:207 +#: [groups]add msgid "Create a new Group" msgstr "" -#: ../cache/locales.php:208 +#: [groups]name msgid "Group name" msgstr "" -#: ../cache/locales.php:209 +#: [groups]name_example msgid "My Little Pony - Fan Club" msgstr "" -#: ../cache/locales.php:210 +#: [groups]created msgid "Group created successfully" msgstr "" -#: ../cache/locales.php:211 +#: [groups]deleted msgid "Group deleted successfully" msgstr "" -#: ../cache/locales.php:212 +#: [groups]name_error msgid "Please provide a valid group name (4 characters minimum)" msgstr "" -#: ../cache/locales.php:213 +#: [groups]no_creation msgid "You cannot create a new Group on this server" msgstr "" -#: ../cache/locales.php:214 -#, php-format +#: [groups]sub msgid "%s subscribers" msgstr "" -#: ../cache/locales.php:215 -#, php-format +#: [groups]num msgid "%s posts" msgstr "" -#: ../cache/locales.php:216 +#: [groups]disco_error +msgid "This server doesn't exists" +msgstr "" + +#: [menu]all msgid "All" msgstr "" -#: ../cache/locales.php:219 +#: [menu]refresh msgid "Refresh all the streams" msgstr "" -#: ../cache/locales.php:220 ../cache/locales.php:402 -msgid "Search" +#: [roster]search +msgid "Search in your contacts" msgstr "" -#: ../cache/locales.php:221 +#: [hello]active_contacts +msgid "Active contacts" +msgstr "" + +#: [hello]chat msgid "Go on the Chat page" msgstr "" -#: ../cache/locales.php:222 -msgid "Read all theses articles on the News page" -msgstr "" - -#: ../cache/locales.php:223 -msgid "Visit your public blog" -msgstr "" - -#: ../cache/locales.php:224 -msgid "See your public posts and share them with all your contacts" -msgstr "" - -#: ../cache/locales.php:226 -msgid "Universal share button" -msgstr "" - -#: ../cache/locales.php:227 -msgid "" -"Bookmark or drag and drop the following button in your toolbar and use it on " -"all the pages you want to share on Movim" -msgstr "" - -#: ../cache/locales.php:228 -msgid "Share on Movim" -msgstr "" - -#: ../cache/locales.php:229 -msgid "Frequently Asked Questions" -msgstr "" - -#: ../cache/locales.php:230 -msgid "What do the little banners refer to ?" -msgstr "" - -#: ../cache/locales.php:231 -msgid "" -"Thanks to these five little banners, you can quickly identitfy the level of " -"confdentiality applied to the information you provide." -msgstr "" - -#: ../cache/locales.php:232 -msgid "White, only you can see the information" -msgstr "" - -#: ../cache/locales.php:233 -msgid "Green, you have chosen some contacts who can see your information" -msgstr "" - -#: ../cache/locales.php:234 -msgid "Orange, all your contact list can see your information" -msgstr "" - -#: ../cache/locales.php:235 -msgid "Red, everybody in the XMPP network can see your information" -msgstr "" - -#: ../cache/locales.php:236 -msgid "Black, the whole Internet can see your information" -msgstr "" - -#: ../cache/locales.php:237 -msgid "Looking for some documentation ?" -msgstr "" - -#: ../cache/locales.php:238 -msgid "Read the Wiki" -msgstr "" - -#: ../cache/locales.php:239 -msgid "Talk with us by email ?" -msgstr "" - -#: ../cache/locales.php:240 -msgid "Join the Mailing List" -msgstr "" - -#: ../cache/locales.php:241 -msgid "Chat with the team ?" -msgstr "" - -#: ../cache/locales.php:242 -msgid "Join the Chatroom" -msgstr "" - -#: ../cache/locales.php:243 -msgid "Location node created" -msgstr "" - -#: ../cache/locales.php:244 -msgid "Bookmark node created" -msgstr "" - -#: ../cache/locales.php:245 -msgid "Profile node created" -msgstr "" - -#: ../cache/locales.php:246 -msgid "Avatar node created" -msgstr "" - -#: ../cache/locales.php:247 -msgid "Subscriptions node created" -msgstr "" - -#: ../cache/locales.php:248 -msgid "Microblog node created" -msgstr "" - -#: ../cache/locales.php:249 -msgid "Location" -msgstr "" - -#: ../cache/locales.php:250 -msgid "Wrong position" -msgstr "" - -#: ../cache/locales.php:251 -msgid "Location updated" -msgstr "" - -#: ../cache/locales.php:252 -msgid "Update my position" -msgstr "" - -#: ../cache/locales.php:253 -msgid "Wrong username" -msgstr "" - -#: ../cache/locales.php:254 -msgid "Invalid JID" -msgstr "" - -#: ../cache/locales.php:255 -msgid "Empty Challenge from the server" -msgstr "" - -#: ../cache/locales.php:256 -msgid "XMPP Domain error, your account is not a correct Jabber ID" -msgstr "" - -#: ../cache/locales.php:257 -msgid "Some data are missing !" -msgstr "" - -#: ../cache/locales.php:258 -msgid "Wrong password" -msgstr "" - -#: ../cache/locales.php:259 -msgid "Internal server error" -msgstr "" - -#: ../cache/locales.php:260 -msgid "Session error" -msgstr "" - -#: ../cache/locales.php:261 -msgid "Account successfully created" -msgstr "" - -#: ../cache/locales.php:262 ../cache/locales.php:271 -msgid "Your XMPP server is unauthorized" -msgstr "" - -#: ../cache/locales.php:263 -msgid "The server takes too much time to respond" -msgstr "" - -#: ../cache/locales.php:264 -msgid "Your web browser is too old to use with Movim." -msgstr "" - -#: ../cache/locales.php:265 -msgid "" -"Movim cannot talk with the server, please try again later (Websocket " -"connection error)" -msgstr "" - -#: ../cache/locales.php:266 -msgid "Impossible login" -msgstr "" - -#: ../cache/locales.php:267 -msgid "Oops!" -msgstr "" - -#: ../cache/locales.php:268 ../cache/locales.php:449 ../cache/locales.php:455 -msgid "Unknown error" -msgstr "" - -#: ../cache/locales.php:269 -msgid "Invalid username format" -msgstr "" - -#: ../cache/locales.php:270 -msgid "Invalid password format" -msgstr "" - -#: ../cache/locales.php:272 -msgid "A Movim session is already open on an other device" -msgstr "" - -#: ../cache/locales.php:273 -msgid "Movim failed to authenticate. You entered wrong data" -msgstr "" - -#: ../cache/locales.php:274 -msgid "Authentication mechanism not supported by Movim" -msgstr "" - -#: ../cache/locales.php:275 -msgid "The XMPP authentification failed" -msgstr "" - -#: ../cache/locales.php:276 -#, php-format -msgid "" -"You can login with Facebook (chat only) using %syour.id@chat.facebook.com%s " -"and your password" -msgstr "" - -#: ../cache/locales.php:277 -#, php-format -msgid "%sGmail accounts are also compatible%s but are not fully supported" -msgstr "" - -#: ../cache/locales.php:278 -msgid "You can login using your favorite Jabber account" -msgstr "" - -#: ../cache/locales.php:279 -msgid "or with our demonstration account" -msgstr "" - -#: ../cache/locales.php:280 ../cache/locales.php:435 -msgid "Accounts" -msgstr "" - -#: ../cache/locales.php:281 -msgid "My address" -msgstr "" - -#: ../cache/locales.php:283 -msgid "Create one !" -msgstr "" - -#: ../cache/locales.php:284 -msgid "No account yet ?" -msgstr "" - -#: ../cache/locales.php:285 -msgid "Another account" -msgstr "" - -#: ../cache/locales.php:286 -msgid "You can login with accounts from theses servers" -msgstr "" - -#: ../cache/locales.php:287 -msgid "Connected" -msgstr "" - -#: ../cache/locales.php:288 -msgid "Population" -msgstr "" - -#: ../cache/locales.php:289 -msgid "Bad nickname (between 4 and 40 characters)" -msgstr "" - -#: ../cache/locales.php:292 -msgid "" -"Welcome on your news feed, here you will see all the posts published in the " -"groups you have subscribed." -msgstr "" - -#: ../cache/locales.php:293 -msgid "Refreshing all the streams" -msgstr "" - -#: ../cache/locales.php:294 -msgid "This post is public" -msgstr "" - -#: ../cache/locales.php:295 -msgid "Manage your members" -msgstr "" - -#: ../cache/locales.php:296 -msgid "Get the members" -msgstr "" - -#: ../cache/locales.php:297 -msgid "Affiliations saved" -msgstr "" - -#: ../cache/locales.php:298 -msgid "Manage your subscriptions" -msgstr "" - -#: ../cache/locales.php:299 -msgid "Manage the subscriptions" -msgstr "" - -#: ../cache/locales.php:300 -msgid "Get the subscriptions" -msgstr "" - -#: ../cache/locales.php:301 -msgid "Subscriptions saved" -msgstr "" - -#: ../cache/locales.php:302 -msgid "Pending Invitations" -msgstr "" - -#: ../cache/locales.php:303 -#, php-format -msgid "%s wants to talk with you" -msgstr "" - -#: ../cache/locales.php:304 -msgid "Manage" -msgstr "" - -#: ../cache/locales.php:305 ../cache/locales.php:338 -msgid "News Feed" -msgstr "" - -#: ../cache/locales.php:306 ../cache/locales.php:339 -msgid "Discover and register to the groups you are interested in" -msgstr "" - -#: ../cache/locales.php:307 ../cache/locales.php:340 ../cache/locales.php:482 -msgid "Preview" -msgstr "" - -#: ../cache/locales.php:308 ../cache/locales.php:341 ../cache/locales.php:478 -msgid "Help" -msgstr "" - -#: ../cache/locales.php:309 ../cache/locales.php:342 -msgid "More help" -msgstr "" - -#: ../cache/locales.php:310 ../cache/locales.php:343 -msgid "Markdown syntax manual" -msgstr "" - -#: ../cache/locales.php:311 ../cache/locales.php:344 ../cache/locales.php:681 -msgid "Title" -msgstr "" - -#: ../cache/locales.php:312 ../cache/locales.php:345 -msgid "Content" -msgstr "" - -#: ../cache/locales.php:313 ../cache/locales.php:346 -msgid "Link" -msgstr "" - -#: ../cache/locales.php:314 ../cache/locales.php:347 -msgid "Tags" -msgstr "" - -#: ../cache/locales.php:315 ../cache/locales.php:348 -msgid "Please enter a valid url" -msgstr "" - -#: ../cache/locales.php:316 ../cache/locales.php:349 -msgid "No content to preview" -msgstr "" - -#: ../cache/locales.php:317 ../cache/locales.php:350 ../cache/locales.php:687 -msgid "No content" -msgstr "" - -#: ../cache/locales.php:318 ../cache/locales.php:351 -msgid "Post published" -msgstr "" - -#: ../cache/locales.php:319 ../cache/locales.php:352 -msgid "Post deleted" -msgstr "" - -#: ../cache/locales.php:320 ../cache/locales.php:353 -msgid "This picture will be added to your gallery" -msgstr "" - -#: ../cache/locales.php:321 ../cache/locales.php:354 -msgid "What's Hot" -msgstr "" - -#: ../cache/locales.php:322 ../cache/locales.php:355 -msgid "New post" -msgstr "" - -#: ../cache/locales.php:323 ../cache/locales.php:357 -msgid "" -"You can also use services like Imgur or Flickr to host your picture and " -"paste the link here." -msgstr "" - -#: ../cache/locales.php:324 -#, php-format -msgid "This is a re-post from %s" -msgstr "" - -#: ../cache/locales.php:325 -#, php-format -msgid "See %s profile" -msgstr "" - -#: ../cache/locales.php:326 -msgid "Publish this post on your public feed?" -msgstr "" - -#: ../cache/locales.php:327 -msgid "Post published on your blog" -msgstr "" - -#: ../cache/locales.php:328 -msgid "Post removed from your blog" -msgstr "" - -#: ../cache/locales.php:329 ../cache/locales.php:701 -msgid "Delete this post" -msgstr "" - -#: ../cache/locales.php:330 -msgid "You are going to delete this post, please confirm your action" -msgstr "" - -#: ../cache/locales.php:331 -msgid "Comments disabled" -msgstr "" - -#: ../cache/locales.php:332 -msgid "Comment published" -msgstr "" - -#: ../cache/locales.php:333 -msgid "Disconnect" -msgstr "" - -#: ../cache/locales.php:334 -msgid "Your status here !" -msgstr "" - -#: ../cache/locales.php:335 -msgid "Status updated" -msgstr "" - -#: ../cache/locales.php:336 -msgid "Status" -msgstr "" - -#: ../cache/locales.php:337 -msgid "Presence" -msgstr "" - -#: ../cache/locales.php:356 -msgid "Publish" -msgstr "" - -#: ../cache/locales.php:358 -msgid "You cannot publish a post on this Group" -msgstr "" - -#: ../cache/locales.php:359 -msgid "" -"Some fields have been filled in. Do you still want to go back and loose " -"their content?" -msgstr "" - -#: ../cache/locales.php:360 -msgid "Shared" -msgstr "" - -#: ../cache/locales.php:362 -#, php-format -msgid "%s has been added to your public groups" -msgstr "" - -#: ../cache/locales.php:363 -#, php-format -msgid "%s has been removed from your public groups" -msgstr "" - -#: ../cache/locales.php:364 -msgid "Add a chatroom" -msgstr "" - -#: ../cache/locales.php:365 -msgid "You don't have any chatroom yet." -msgstr "" - -#: ../cache/locales.php:366 -msgid "Add one by clicking on the add button in the header." -msgstr "" - -#: ../cache/locales.php:367 -msgid "Chatrooms" -msgstr "" - -#: ../cache/locales.php:370 -msgid "My Favorite Room" -msgstr "" - -#: ../cache/locales.php:374 -msgid "Remove a chatroom" -msgstr "" - -#: ../cache/locales.php:375 -msgid "" -"You are going to remove the following chatroom. Please confirm your action." -msgstr "" - -#: ../cache/locales.php:378 -msgid "Users in the room" -msgstr "" - -#: ../cache/locales.php:379 -msgid "Please enter a correct nickname (6 to 40 characters)" -msgstr "" - -#: ../cache/locales.php:381 -msgid "Public chatroom" -msgstr "" - -#: ../cache/locales.php:382 -msgid "Please provide a room address" -msgstr "" - -#: ../cache/locales.php:383 -msgid "You are currently logued as an anonymous user." -msgstr "" - -#: ../cache/locales.php:384 -msgid "" -"You can join using your own account or create one on the login page by " -"loging out using the cross in the top-right corner." -msgstr "" - -#: ../cache/locales.php:385 -#, php-format -msgid "Login on %s" -msgstr "" - -#: ../cache/locales.php:386 -msgid "Your nickname" -msgstr "" - -#: ../cache/locales.php:387 -msgid "Ungrouped" -msgstr "" - -#: ../cache/locales.php:388 -msgid "Show disconnected contacts" -msgstr "" - -#: ../cache/locales.php:389 -msgid "Hide disconnected contacts" -msgstr "" - -#: ../cache/locales.php:390 -#, php-format -msgid "Show group %s" -msgstr "" - -#: ../cache/locales.php:391 -#, php-format -msgid "Hide group %s" -msgstr "" - -#: ../cache/locales.php:392 -msgid "Please enter a valid Jabber ID" -msgstr "" - -#: ../cache/locales.php:393 -msgid "" -"No contacts ? You can add one using the + button bellow or going to the " -"Explore page" -msgstr "" - -#: ../cache/locales.php:394 -msgid "Show/Hide" -msgstr "" - -#: ../cache/locales.php:395 -msgid "Enter the Jabber ID of your contact." -msgstr "" - -#: ../cache/locales.php:396 -msgid "Press enter to validate." -msgstr "" - -#: ../cache/locales.php:397 -msgid "JID" -msgstr "" - -#: ../cache/locales.php:398 -msgid "Results" -msgstr "" - -#: ../cache/locales.php:399 -msgid "Contact added" -msgstr "" - -#: ../cache/locales.php:401 -msgid "Contact deleted" -msgstr "" - -#: ../cache/locales.php:403 -msgid "This is not a valid url" -msgstr "" - -#: ../cache/locales.php:404 -msgid "Sharing the URL" -msgstr "" - -#: ../cache/locales.php:405 -msgid "Statistics" -msgstr "" - -#: ../cache/locales.php:406 -msgid "Since" -msgstr "" - -#: ../cache/locales.php:407 -msgid "Sessions" -msgstr "" - -#: ../cache/locales.php:409 -msgid "Monthly Subscriptions" -msgstr "" - -#: ../cache/locales.php:410 -msgid "Monthly Subscriptions Cumulated" -msgstr "" - -#: ../cache/locales.php:412 -msgid "" -"Movim is a decentralized social network, before creating a new account you " -"need to choose a server to register." -msgstr "" - -#: ../cache/locales.php:413 -msgid "Your server here ?" -msgstr "" - -#: ../cache/locales.php:414 -msgid "Contact us to add yours to the officially supported servers list" -msgstr "" - -#: ../cache/locales.php:416 -msgid "No public feed for this contact" -msgstr "" - -#: ../cache/locales.php:417 -msgid "No contact specified" -msgstr "" - -#: ../cache/locales.php:418 ../cache/locales.php:473 -msgid "Profile" -msgstr "" - -#: ../cache/locales.php:419 -msgid "Profile Updated" -msgstr "" - -#: ../cache/locales.php:420 -msgid "Profile Not Updated" -msgstr "" - -#: ../cache/locales.php:421 -msgid "Your profile is now public" -msgstr "" - -#: ../cache/locales.php:422 -msgid "Your profile is now restricted" -msgstr "" - -#: ../cache/locales.php:436 -msgid "Twitter" -msgstr "" - -#: ../cache/locales.php:437 -msgid "Skype" -msgstr "" - -#: ../cache/locales.php:438 -msgid "Yahoo" -msgstr "" - -#: ../cache/locales.php:439 -msgid "Privacy Level" -msgstr "" - -#: ../cache/locales.php:440 -msgid "Is this profile public ?" -msgstr "" - -#: ../cache/locales.php:441 -msgid "" -"Please pay attention ! By making your profile public, all the information " -"listed above will be available for all the Movim users and on the whole " -"Internet." -msgstr "" - -#: ../cache/locales.php:442 -msgid "Call" -msgstr "" - -#: ../cache/locales.php:443 -msgid "Hang up" -msgstr "" - -#: ../cache/locales.php:444 -msgid "Connection" -msgstr "" - -#: ../cache/locales.php:445 ../cache/locales.php:451 -msgid "Hung up" -msgstr "" - -#: ../cache/locales.php:446 ../cache/locales.php:452 -msgid "Your contact is busy" -msgstr "" - -#: ../cache/locales.php:447 ../cache/locales.php:453 -msgid "Declined" -msgstr "" - -#: ../cache/locales.php:448 ../cache/locales.php:454 -msgid "Remote application incompatible" -msgstr "" - -#: ../cache/locales.php:450 ../cache/locales.php:456 -msgid "Is calling you" -msgstr "" - -#: ../cache/locales.php:457 -msgid "You don't have javascript enabled. Good luck with that." -msgstr "" - -#: ../cache/locales.php:458 -msgid "" -"Movim is a kickass distributed social networking platform that protect your " -"privacy an comes with a set of awesome features." -msgstr "" - -#: ../cache/locales.php:459 -msgid "Administration" -msgstr "" - -#: ../cache/locales.php:460 -msgid "Home" -msgstr "" - -#: ../cache/locales.php:461 -msgid "Discover" -msgstr "" - -#: ../cache/locales.php:462 -msgid "Explore" -msgstr "" - -#: ../cache/locales.php:463 -msgid "Account Creation" -msgstr "" - -#: ../cache/locales.php:464 +#: [hello]news [page]news msgid "News" msgstr "" -#: ../cache/locales.php:465 -msgid "Avatar" +#: [hello]news_page +msgid "Read all theses articles on the News page" msgstr "" -#: ../cache/locales.php:467 -msgid "Chats" +#: [hello]blog_title +msgid "Visit your public blog" msgstr "" -#: ../cache/locales.php:470 -msgid "Server" +#: [hello]blog_text +msgid "See your public posts and share them with all your contacts" msgstr "" -#: ../cache/locales.php:471 -msgid "Public Groups" +#: [hello]share_title +msgid "Universal share button" msgstr "" -#: ../cache/locales.php:472 -msgid "Viewer" +#: [hello]share_text +msgid "Bookmark or drag and drop the following button in your toolbar and use it on all the pages you want to share on Movim" msgstr "" -#: ../cache/locales.php:474 -msgid "Media" +#: [hello]share_button +msgid "Share on Movim" msgstr "" -#: ../cache/locales.php:475 -msgid "Blog" +#: [help]faq +msgid "Frequently Asked Questions" msgstr "" -#: ../cache/locales.php:476 -msgid "About" +#: [banner]title +msgid "What do the little banners refer to ?" msgstr "" -#: ../cache/locales.php:477 -msgid "Login" +#: [banner]info1 +msgid "Thanks to these five little banners, you can quickly identitfy the level of confdentiality applied to the information you provide." msgstr "" -#: ../cache/locales.php:479 -msgid "Feed" +#: [banner]white +msgid "White, only you can see the information" msgstr "" -#: ../cache/locales.php:481 -msgid "Gallery" +#: [banner]green +msgid "Green, you have chosen some contacts who can see your information" msgstr "" -#: ../cache/locales.php:483 -msgid "Visio-conference" +#: [banner]orange +msgid "Orange, all your contact list can see your information" msgstr "" -#: ../cache/locales.php:484 -msgid "Pods" +#: [banner]red +msgid "Red, everybody in the XMPP network can see your information" msgstr "" -#: ../cache/locales.php:485 -msgid "Share" +#: [banner]black +msgid "Black, the whole Internet can see your information" msgstr "" -#: ../cache/locales.php:486 -msgid "Room" +#: [wiki]question +msgid "Looking for some documentation ?" msgstr "" -#: ../cache/locales.php:487 -#, php-format -msgid "Error: %s" +#: [wiki]button +msgid "Read the Wiki" msgstr "" -#: ../cache/locales.php:488 -#, php-format -msgid "Cannot load file '%s'" +#: [ml]question +msgid "Talk with us by email ?" msgstr "" -#: ../cache/locales.php:489 -#, php-format -msgid "Route error, please set all the parameters for the page %s" +#: [ml]button +msgid "Join the Mailing List" msgstr "" -#: ../cache/locales.php:490 -#, php-format -msgid "Requested widget '%s' doesn't exist." +#: [chatroom]question +msgid "Chat with the team ?" msgstr "" -#: ../cache/locales.php:491 -#, php-format -msgid "Requested event '%s' not registered." +#: [chatroom]button +msgid "Join the Chatroom" msgstr "" -#: ../cache/locales.php:492 -msgid "Whoops!" +#: [init]location +msgid "Location node created" msgstr "" -#: ../cache/locales.php:493 -msgid "It seem that you don't have any pictures here?" +#: [init]bookmark +msgid "Bookmark node created" msgstr "" -#: ../cache/locales.php:494 -msgid "You can try to upload a couple by going to the Media page" +#: [init]vcard4 +msgid "Profile node created" msgstr "" -#: ../cache/locales.php:495 -#, php-format -msgid "%s - About" +#: [init]avatar +msgid "Avatar node created" msgstr "" -#: ../cache/locales.php:496 -#, php-format -msgid "%s - Account" +#: [init]subscriptions +msgid "Subscriptions node created" msgstr "" -#: ../cache/locales.php:497 -#, php-format -msgid "%s - Administration Panel" +#: [init]microblog +msgid "Microblog node created" msgstr "" -#: ../cache/locales.php:498 -#, php-format -msgid "%s - Blog" +#: [location]title +msgid "Location" msgstr "" -#: ../cache/locales.php:499 -#, php-format -msgid "%s - Configuration" +#: [location]wrong_postition +msgid "Wrong position" msgstr "" -#: ../cache/locales.php:500 -#, php-format -msgid "%s - Discover" +#: [location]updated +msgid "Location updated" msgstr "" -#: ../cache/locales.php:501 -#, php-format -msgid "%s - Explore" +#: [location]update +msgid "Update my position" msgstr "" -#: ../cache/locales.php:502 -#, php-format -msgid "%s - Help Page" +#: [login_anonymous]bad_username +msgid "Bad nickname (between 4 and 40 characters)" msgstr "" -#: ../cache/locales.php:503 -#, php-format -msgid "%s - Login to Movim" +#: [error]username +msgid "Wrong username" msgstr "" -#: ../cache/locales.php:504 -#, php-format -msgid "%s - Welcome to Movim" +#: [error]jid +msgid "Invalid JID" msgstr "" -#: ../cache/locales.php:505 -#, php-format -msgid "%s - Media" +#: [error]empty_challenge +msgid "Empty Challenge from the server" msgstr "" -#: ../cache/locales.php:506 -#, php-format -msgid "%s - News" +#: [error]dns +msgid "XMPP Domain error, your account is not a correct Jabber ID" msgstr "" -#: ../cache/locales.php:507 -#, php-format -msgid "%s - Group Configuration" +#: [error]data_missings +msgid "Some data are missing !" msgstr "" -#: ../cache/locales.php:508 -#, php-format -msgid "%s - Group" +#: [error]wrong_password +msgid "Wrong password" msgstr "" -#: ../cache/locales.php:509 -#, php-format -msgid "%s - 404" +#: [error]internal +msgid "Internal server error" msgstr "" -#: ../cache/locales.php:510 -#, php-format -msgid "%s - Profile" +#: [error]session +msgid "Session error" msgstr "" -#: ../cache/locales.php:511 -#, php-format -msgid "%s - Server" +#: [error]account_created +msgid "Account successfully created" msgstr "" -#: ../cache/locales.php:512 -msgid "Validate" +#: [error]xmpp_unauthorized +msgctxt "[error]xmpp_unauthorized" +msgid "Your XMPP server is unauthorized" msgstr "" -#: ../cache/locales.php:513 -msgid "Refresh" +#: [error]mec_error +msgid "The server takes too much time to respond" msgstr "" -#: ../cache/locales.php:514 -msgid "Add" +#: [error]too_old +msgid "Your web browser is too old to use with Movim." msgstr "" -#: ../cache/locales.php:515 -msgid "Delete" +#: [error]websocket +msgid "Movim cannot talk with the server, please try again later (Websocket connection error)" msgstr "" -#: ../cache/locales.php:516 -msgid "Remove" +#: [error]impossible +msgid "Impossible login" msgstr "" -#: ../cache/locales.php:517 -msgid "Cancel" +#: [error]title +msgid "Oops!" msgstr "" -#: ../cache/locales.php:518 -msgid "Close" +#: [error]default [visio]unknown_error +msgid "Unknown error" msgstr "" -#: ../cache/locales.php:519 -msgid "Update" +#: [error]login_format +msgid "Invalid username format" msgstr "" -#: ../cache/locales.php:520 -msgid "Updating" +#: [error]password_format +msgid "Invalid password format" msgstr "" -#: ../cache/locales.php:521 +#: [error]unauthorized +msgctxt "[error]unauthorized" +msgid "Your XMPP server is unauthorized" +msgstr "" + +#: [error]conflict +msgid "A Movim session is already open on an other device" +msgstr "" + +#: [error]wrong_account +msgid "Movim failed to authenticate. You entered wrong data" +msgstr "" + +#: [error]mechanism +msgid "Authentication mechanism not supported by Movim" +msgstr "" + +#: [error]fail_auth +msgid "The XMPP authentification failed" +msgstr "" + +#: [account]title [accounts]accounts_title +msgid "Accounts" +msgstr "" + +#: [form]username +msgid "My address" +msgstr "" + +#: [form]create_one +msgid "Create one !" +msgstr "" + +#: [form]another_account +msgid "Another account" +msgstr "" + +#: [form]no_account +msgid "No account yet ?" +msgstr "" + +#: [form]whitelist.info +msgid "You can login with accounts from theses servers" +msgstr "" + +#: [form]connected +msgid "Connected" +msgstr "" + +#: [form]population +msgid "Population" +msgstr "" + +#: [menu]empty_title +msgid "No news yet..." +msgstr "" + +#: [menu]empty +msgid "Welcome on your news feed, here you will see all the posts published by your contacts and in the groups you have subscribed." +msgstr "" + +#: [menu]refresh +msgid "Refreshing all the streams" +msgstr "" + +#: [menu]public +msgid "This post is public" +msgstr "" + +#: [affiliations]title +msgid "Manage your members" +msgstr "" + +#: [affiliations]get +msgid "Get the members" +msgstr "" + +#: [affiliations]saved +msgid "Affiliations saved" +msgstr "" + +#: [subscriptions]title +msgid "Manage your subscriptions" +msgstr "" + +#: [subscriptions]info +msgid "Manage the subscriptions" +msgstr "" + +#: [subscriptions]get +msgid "Get the subscriptions" +msgstr "" + +#: [subscriptions]saved +msgid "Subscriptions saved" +msgstr "" + +#: [notifs]title +msgid "Pending Invitations" +msgstr "" + +#: [notifs]wants_to_talk +msgid "%s wants to talk with you" +msgstr "" + +#: [notifs]manage +msgid "Manage" +msgstr "" + +#: [post]news_feed +msgid "News Feed" +msgstr "" + +#: [post]placeholder +msgid "Discover and register to the groups you are interested in" +msgstr "" + +#: [post]preview [page]preview +msgid "Preview" +msgstr "" + +#: [post]help [page]help +msgid "Help" +msgstr "" + +#: [post]help_more +msgid "More help" +msgstr "" + +#: [post]help_manual +msgid "Markdown syntax manual" +msgstr "" + +#: [post]title +msgid "Title" +msgstr "" + +#: [post]content +msgid "Content" +msgstr "" + +#: [post]link +msgid "Link" +msgstr "" + +#: [post]tags +msgid "Tags" +msgstr "" + +#: [post]valid_url [publish]valid_url +msgid "Please enter a valid url" +msgstr "" + +#: [post]no_content_preview [publish]no_content_preview +msgid "No content to preview" +msgstr "" + +#: [post]no_content [publish]no_content [post]empty +msgid "No content" +msgstr "" + +#: [post]published +msgid "Post published" +msgstr "" + +#: [post]deleted +msgid "Post deleted" +msgstr "" + +#: [post]gallery +msgid "This picture will be added to your gallery" +msgstr "" + +#: [post]hot +msgid "What's Hot" +msgstr "" + +#: [post]hot_text +msgid "Posts recently published in Groups that you are not subscribed (yet)" +msgstr "" + +#: [post]new [publish]new +msgid "New post" +msgstr "" + +#: [post]embed_tip +msgid "You can also use services like Imgur or Flickr to host your picture and paste the link here." +msgstr "" + +#: [post]repost +msgid "This is a re-post from %s" +msgstr "" + +#: [post]repost_profile +msgid "See %s profile" +msgstr "" + +#: [post]public +msgid "Publish this post publicly?" +msgstr "" + +#: [post]blog_add +msgid "Post published on your blog" +msgstr "" + +#: [post]blog_remove +msgid "Post removed from your blog" +msgstr "" + +#: [post]delete_title [post]delete +msgid "Delete this post" +msgstr "" + +#: [post]delete_text +msgid "You are going to delete this post, please confirm your action" +msgstr "" + +#: [post]comments_disabled +msgid "Comments disabled" +msgstr "" + +#: [post]comment_published +msgid "Comment published" +msgstr "" + +#: [status]disconnect +msgid "Disconnect" +msgstr "" + +#: [status]here +msgid "Your status here !" +msgstr "" + +#: [status]updated +msgid "Status updated" +msgstr "" + +#: [status]status +msgid "Status" +msgstr "" + +#: [status]presence +msgid "Presence" +msgstr "" + +#: [status]online +msgid "Online with Movim" +msgstr "" + +#: [publish]title +msgid "Publish" +msgstr "" + +#: [publish]attach +msgid "Add a file or a picture to your post" +msgstr "" + +#: [publish]no_publication +msgid "You cannot publish a post on this Group" +msgstr "" + +#: [publish]form_filled +msgid "Some fields have been filled in. Do you still want to go back and loose their content?" +msgstr "" + +#: [public_groups]shared +msgid "Shared" +msgstr "" + +#: [public_groups]added +msgid "%s has been added to your public groups" +msgstr "" + +#: [rooms]add +msgid "Add a chatroom" +msgstr "" + +#: [rooms]empty_text1 +msgid "You don't have any chatroom yet." +msgstr "" + +#: [rooms]empty_text2 +msgid "Add one by clicking on the add button in the header." +msgstr "" + +#: [chatrooms]title +msgid "Chatrooms" +msgstr "" + +#: [chatrooms]name_placeholder +msgid "My Favorite Room" +msgstr "" + +#: [chatrooms]users +msgid "Users in the room" +msgstr "" + +#: [chatrooms]bad_nickname +msgid "Please enter a correct nickname (2 to 40 characters)" +msgstr "" + +#: [room]anonymous_title +msgid "Public chatroom" +msgstr "" + +#: [room]no_room +msgid "Please provide a room address" +msgstr "" + +#: [room]anonymous_text1 +msgid "You are currently logued as an anonymous user." +msgstr "" + +#: [room]anonymous_text2 +msgid "You can join using your own account or create one on the login page by loging out using the cross in the top-right corner." +msgstr "" + +#: [room]anonymous_login +msgid "Login on %s" +msgstr "" + +#: [room]nick +msgid "Your nickname" +msgstr "" + +#: [roster]ungrouped +msgid "Ungrouped" +msgstr "" + +#: [roster]show_disconnected +msgid "Show disconnected contacts" +msgstr "" + +#: [roster]hide_disconnected +msgid "Hide disconnected contacts" +msgstr "" + +#: [roster]show_group +msgid "Show group %s" +msgstr "" + +#: [roster]hide_group +msgid "Hide group %s" +msgstr "" + +#: [roster]jid_error +msgid "Please enter a valid Jabber ID" +msgstr "" + +#: [roster]no_contacts_title +msgid "No contacts ?" +msgstr "" + +#: [roster]no_contacts_text +msgid "You can add one using the + button bellow" +msgstr "" + +#: [roster]show_hide +msgid "Show/Hide" +msgstr "" + +#: [roster]add_contact_info1 +msgid "Enter the Jabber ID of your contact." +msgstr "" + +#: [roster]add_contact_info2 +msgid "Press enter to validate." +msgstr "" + +#: [roster]jid +msgid "JID" +msgstr "" + +#: [roster]results +msgid "Results" +msgstr "" + +#: [roster]added +msgid "Contact added" +msgstr "" + +#: [roster]deleted +msgid "Contact deleted" +msgstr "" + +#: [roster]search +msgid "Search" +msgstr "" + +#: [share]error +msgid "This is not a valid url" +msgstr "" + +#: [share]success +msgid "Sharing the URL" +msgstr "" + +#: [statistics]title +msgid "Statistics" +msgstr "" + +#: [statistics]since +msgid "Since" +msgstr "" + +#: [statistics]sessions +msgid "Sessions" +msgstr "" + +#: [statistics]monthly_sub +msgid "Monthly Subscriptions" +msgstr "" + +#: [statistics]monthly_sub_cum +msgid "Monthly Subscriptions Cumulated" +msgstr "" + +#: [subscribe]info +msgid "Movim is a decentralized social network, before creating a new account you need to choose a server to register." +msgstr "" + +#: [subscribe]server_question +msgid "Your server here ?" +msgstr "" + +#: [subscribe]server_contact +msgid "Contact us to add yours to the officially supported servers list" +msgstr "" + +#: [feed]nope +msgid "No public feed for this contact" +msgstr "" + +#: [feed]nope_contact +msgid "No contact specified" +msgstr "" + +#: [upload]title +msgid "Upload a file" +msgstr "" + +#: [upload]choose +msgid "Choose a file to upload" +msgstr "" + +#: [vcard]title [page]profile +msgid "Profile" +msgstr "" + +#: [vcard]updated +msgid "Profile Updated" +msgstr "" + +#: [vcard]not_updated +msgid "Profile Not Updated" +msgstr "" + +#: [vcard]public +msgid "Your profile is now public" +msgstr "" + +#: [vcard]restricted +msgid "Your profile is now restricted" +msgstr "" + +#: [general]nickname +msgctxt "[general]nickname" +msgid "Nickname" +msgstr "" + +#: [accounts]twitter +msgid "Twitter" +msgstr "" + +#: [accounts]skype +msgid "Skype" +msgstr "" + +#: [accounts]yahoo +msgid "Yahoo" +msgstr "" + +#: [accounts]accounts_nickname +msgctxt "[accounts]accounts_nickname" +msgid "Nickname" +msgstr "" + +#: [accounts]accounts_yahoo +msgid "Yahoo Account" +msgstr "" + +#: [privacy]privacy_title +msgid "Privacy Level" +msgstr "" + +#: [privacy]privacy_question +msgid "Is this profile public ?" +msgstr "" + +#: [privacy]privacy_info +msgid "Please pay attention ! By making your profile public, all the information listed above will be available for all the Movim users and on the whole Internet." +msgstr "" + +#: [save]submit [button]submit msgid "Submit" msgstr "" -#: ../cache/locales.php:522 -msgid "Submitting" -msgstr "" - -#: ../cache/locales.php:523 +#: [save]reset [button]reset msgid "Reset" msgstr "" -#: ../cache/locales.php:524 +#: [visio]hung_up +msgid "Hung up" +msgstr "" + +#: [visio]busy +msgid "Your contact is busy" +msgstr "" + +#: [visio]declined +msgid "Declined" +msgstr "" + +#: [visio]calling +msgid "Is calling you" +msgstr "" + +#: [visio]call +msgid "Call" +msgstr "" + +#: [visio]hang_up +msgid "Hang up" +msgstr "" + +#: [visio]connection +msgid "Connection" +msgstr "" + +#: [global]no_js +msgid "You don't have javascript enabled. Good luck with that." +msgstr "" + +#: [global]description +msgid "Movim is a kickass distributed social networking platform that protect your privacy an comes with a set of awesome features." +msgstr "" + +#: [page]administration +msgid "Administration" +msgstr "" + +#: [page]home +msgid "Home" +msgstr "" + +#: [page]discover +msgid "Discover" +msgstr "" + +#: [page]explore +msgid "Explore" +msgstr "" + +#: [page]account_creation +msgid "Account Creation" +msgstr "" + +#: [page]avatar +msgid "Avatar" +msgstr "" + +#: [page]chats +msgid "Chats" +msgstr "" + +#: [page]server +msgid "Server" +msgstr "" + +#: [page]public_groups +msgid "Public Groups" +msgstr "" + +#: [page]viewer +msgid "Viewer" +msgstr "" + +#: [page]media +msgid "Media" +msgstr "" + +#: [page]blog +msgid "Blog" +msgstr "" + +#: [page]about +msgid "About" +msgstr "" + +#: [page]login +msgid "Login" +msgstr "" + +#: [page]feed +msgid "Feed" +msgstr "" + +#: [page]gallery +msgid "Gallery" +msgstr "" + +#: [page]visio +msgid "Visio-conference" +msgstr "" + +#: [page]pods +msgid "Pods" +msgstr "" + +#: [page]share +msgid "Share" +msgstr "" + +#: [page]room +msgid "Room" +msgstr "" + +#: [error]error +msgid "Error: %s" +msgstr "" + +#: [error]cannot_load_file +msgid "Cannot load file '%s'" +msgstr "" + +#: [error]route +msgid "Route error, please set all the parameters for the page %s" +msgstr "" + +#: [error]widget_load_error +msgid "Requested widget '%s' doesn't exist." +msgstr "" + +#: [error]widget_call_error +msgid "Requested event '%s' not registered." +msgstr "" + +#: [error]whoops +msgid "Whoops!" +msgstr "" + +#: [error]media_not_found +msgid "It seem that you don't have any pictures here?" +msgstr "" + +#: [error]media_ask_upload +msgid "You can try to upload a couple by going to the Media page" +msgstr "" + +#: [title]about +msgid "%s - About" +msgstr "" + +#: [title]account +msgid "%s - Account" +msgstr "" + +#: [title]administration +msgid "%s - Administration Panel" +msgstr "" + +#: [title]blog +msgid "%s - Blog" +msgstr "" + +#: [title]configuration +msgid "%s - Configuration" +msgstr "" + +#: [title]discover +msgid "%s - Discover" +msgstr "" + +#: [title]explore +msgid "%s - Explore" +msgstr "" + +#: [title]help +msgid "%s - Help Page" +msgstr "" + +#: [title]login +msgid "%s - Login to Movim" +msgstr "" + +#: [title]main +msgid "%s - Welcome to Movim" +msgstr "" + +#: [title]media +msgid "%s - Media" +msgstr "" + +#: [title]news +msgid "%s - News" +msgstr "" + +#: [title]node_configuration +msgid "%s - Group Configuration" +msgstr "" + +#: [title]node +msgid "%s - Group" +msgstr "" + +#: [title]not_found +msgid "%s - 404" +msgstr "" + +#: [title]profile +msgid "%s - Profile" +msgstr "" + +#: [title]server +msgid "%s - Server" +msgstr "" + +#: [button]validate +msgid "Validate" +msgstr "" + +#: [button]refresh +msgid "Refresh" +msgstr "" + +#: [button]add +msgid "Add" +msgstr "" + +#: [button]delete +msgid "Delete" +msgstr "" + +#: [button]cancel +msgid "Cancel" +msgstr "" + +#: [button]close +msgid "Close" +msgstr "" + +#: [button]update +msgid "Update" +msgstr "" + +#: [button]updating +msgid "Updating" +msgstr "" + +#: [button]submitting +msgid "Submitting" +msgstr "" + +#: [button]register msgid "Register" msgstr "" -#: ../cache/locales.php:525 +#: [button]unregister msgid "Unregister" msgstr "" -#: ../cache/locales.php:526 +#: [button]save msgid "Save" msgstr "" -#: ../cache/locales.php:527 +#: [button]clear msgid "Clear" msgstr "" -#: ../cache/locales.php:528 +#: [button]upload msgid "Upload" msgstr "" -#: ../cache/locales.php:529 +#: [button]come_in msgid "Come in!" msgstr "" -#: ../cache/locales.php:530 +#: [button]connecting msgid "Connecting" msgstr "" -#: ../cache/locales.php:531 +#: [button]bool_yes msgid "Yes" msgstr "" -#: ../cache/locales.php:532 +#: [button]bool_no msgid "No" msgstr "" -#: ../cache/locales.php:534 +#: [button]return msgid "Return" msgstr "" -#: ../cache/locales.php:535 +#: [button]accept msgid "Accept" msgstr "" -#: ../cache/locales.php:536 +#: [button]refuse msgid "Refuse" msgstr "" -#: ../cache/locales.php:537 +#: [button]next msgid "Next" msgstr "" -#: ../cache/locales.php:538 +#: [button]previous msgid "Previous" msgstr "" -#: ../cache/locales.php:539 -#, php-format +#: [step]step msgid "Step %s" msgstr "" -#: ../cache/locales.php:542 +#: [day]title msgid "Day" msgstr "" -#: ../cache/locales.php:543 +#: [day]monday msgid "Monday" msgstr "Lundio" -#: ../cache/locales.php:544 +#: [day]tuesday msgid "Tuesday" msgstr "Mardio" -#: ../cache/locales.php:545 +#: [day]wednesday msgid "Wednesday" msgstr "Merkurdio" -#: ../cache/locales.php:546 +#: [day]thursday msgid "Thursday" msgstr "Jovdio" -#: ../cache/locales.php:547 +#: [day]friday msgid "Friday" msgstr "Venerdio" -#: ../cache/locales.php:548 +#: [day]saturday msgid "Saturday" msgstr "Saturdio" -#: ../cache/locales.php:549 +#: [day]sunday msgid "Sunday" msgstr "" -#: ../cache/locales.php:550 ../cache/locales.php:559 +#: [gender]nil +#, fuzzy +msgctxt "[gender]nil" msgid "None" msgstr "Nula" -#: ../cache/locales.php:551 +#: [gender]male msgid "Male" msgstr "Viro" -#: ../cache/locales.php:552 +#: [gender]female msgid "Female" msgstr "Muliero" -#: ../cache/locales.php:553 +#: [gender]other msgid "Other" msgstr "Altra" -#: ../cache/locales.php:554 +#: [client]bot msgid "Bot" msgstr "" -#: ../cache/locales.php:555 +#: [client]desktop msgid "Desktop" msgstr "" -#: ../cache/locales.php:556 +#: [client]phone msgid "Phone" msgstr "" -#: ../cache/locales.php:557 +#: [client]web msgid "Web" msgstr "" -#: ../cache/locales.php:558 +#: [client]registered msgid "Registered" msgstr "" -#: ../cache/locales.php:560 +#: [marital]nil +#, fuzzy +msgctxt "[marital]nil" +msgid "None" +msgstr "Nula" + +#: [marital]single msgid "Single" msgstr "Singla" -#: ../cache/locales.php:561 +#: [marital]relationship msgid "In a relationship" msgstr "" -#: ../cache/locales.php:562 +#: [marital]married msgid "Married" msgstr "Mariajinta" -#: ../cache/locales.php:563 +#: [marital]divorced msgid "Divorced" msgstr "Divorcinta" -#: ../cache/locales.php:564 +#: [marital]widowed msgid "Widowed" msgstr "" -#: ../cache/locales.php:565 +#: [marital]cohabiting msgid "Cohabiting" msgstr "" -#: ../cache/locales.php:566 +#: [marital]union msgid "Civil Union" msgstr "Civila mariajo" -#: ../cache/locales.php:567 +#: [flag]white msgid "Not shared" msgstr "" -#: ../cache/locales.php:568 +#: [flag]green msgid "Shared with one contact" msgstr "" -#: ../cache/locales.php:569 +#: [flag]orange msgid "Shared with all contacts" msgstr "" -#: ../cache/locales.php:570 +#: [flag]red msgid "Shared with the XMPP network" msgstr "" -#: ../cache/locales.php:571 +#: [flag]black msgid "Shared with the whole Internet" msgstr "" -#: ../cache/locales.php:572 +#: [presence]online msgid "Online" msgstr "Konektita" -#: ../cache/locales.php:573 +#: [presence]away msgid "Away" msgstr "" -#: ../cache/locales.php:574 +#: [presence]dnd msgid "Do Not Disturb" msgstr "" -#: ../cache/locales.php:575 +#: [presence]xa msgid "Extended Away" msgstr "" -#: ../cache/locales.php:576 +#: [presence]offline msgid "Offline" msgstr "" -#: ../cache/locales.php:577 +#: [presence]error msgid "Error" msgstr "" -#: ../cache/locales.php:578 +#: [mood]afraid msgid "afraid" msgstr "" -#: ../cache/locales.php:579 +#: [mood]amazed msgid "amazed" msgstr "" -#: ../cache/locales.php:580 +#: [mood]amorous msgid "amorous" msgstr "amoranta" -#: ../cache/locales.php:581 +#: [mood]angry msgid "angry" msgstr "iracanta" -#: ../cache/locales.php:582 +#: [mood]annoyed msgid "annoyed" msgstr "" -#: ../cache/locales.php:583 +#: [mood]anxious msgid "anxious" msgstr "anxioza" -#: ../cache/locales.php:584 +#: [mood]aroused msgid "aroused" msgstr "" -#: ../cache/locales.php:585 +#: [mood]ashamed msgid "ashamed" msgstr "" -#: ../cache/locales.php:586 +#: [mood]bored msgid "bored" msgstr "" -#: ../cache/locales.php:587 +#: [mood]brave msgid "brave" msgstr "" -#: ../cache/locales.php:588 +#: [mood]calm msgid "calm" msgstr "" -#: ../cache/locales.php:589 +#: [mood]cautious msgid "cautious" msgstr "" -#: ../cache/locales.php:590 +#: [mood]cold msgid "cold" msgstr "" -#: ../cache/locales.php:591 +#: [mood]confident msgid "confident" msgstr "" -#: ../cache/locales.php:592 +#: [mood]confused msgid "confused" msgstr "" -#: ../cache/locales.php:593 +#: [mood]contemplative msgid "contemplative" msgstr "" -#: ../cache/locales.php:594 +#: [mood]contented msgid "contented" msgstr "" -#: ../cache/locales.php:595 +#: [mood]cranky msgid "cranky" msgstr "" -#: ../cache/locales.php:596 +#: [mood]crazy msgid "crazy" msgstr "" -#: ../cache/locales.php:597 +#: [mood]creative msgid "creative" msgstr "" -#: ../cache/locales.php:598 +#: [mood]curious msgid "curious" msgstr "" -#: ../cache/locales.php:599 +#: [mood]dejected msgid "dejected" msgstr "" -#: ../cache/locales.php:600 +#: [mood]depressed msgid "depressed" msgstr "" -#: ../cache/locales.php:601 +#: [mood]disappointed msgid "disappointed" msgstr "" -#: ../cache/locales.php:602 +#: [mood]disgusted msgid "disgusted" msgstr "" -#: ../cache/locales.php:603 +#: [mood]dismayed msgid "dismayed" msgstr "" -#: ../cache/locales.php:604 +#: [mood]distracted msgid "distracted" msgstr "" -#: ../cache/locales.php:605 +#: [mood]embarrassed msgid "embarrassed" msgstr "" -#: ../cache/locales.php:606 +#: [mood]envious msgid "envious" msgstr "" -#: ../cache/locales.php:607 +#: [mood]excited msgid "excited" msgstr "" -#: ../cache/locales.php:608 +#: [mood]flirtatious msgid "flirtatious" msgstr "" -#: ../cache/locales.php:609 +#: [mood]frustated msgid "frustated" msgstr "" -#: ../cache/locales.php:610 +#: [mood]grateful msgid "grateful" msgstr "" -#: ../cache/locales.php:611 +#: [mood]grieving msgid "grieving" msgstr "" -#: ../cache/locales.php:612 +#: [mood]grumpy msgid "grumpy" msgstr "" -#: ../cache/locales.php:613 +#: [mood]guilty msgid "guilty" msgstr "" -#: ../cache/locales.php:614 +#: [mood]happy msgid "happy" msgstr "" -#: ../cache/locales.php:615 +#: [mood]hopeful msgid "hopeful" msgstr "" -#: ../cache/locales.php:616 +#: [mood]hot msgid "hot" msgstr "" -#: ../cache/locales.php:617 +#: [mood]humbled msgid "humbled" msgstr "" -#: ../cache/locales.php:618 +#: [mood]humiliated msgid "humiliated" msgstr "" -#: ../cache/locales.php:619 +#: [mood]hungry msgid "hungry" msgstr "" -#: ../cache/locales.php:620 +#: [mood]hurt msgid "hurt" msgstr "" -#: ../cache/locales.php:621 +#: [mood]impressed msgid "impressed" msgstr "" -#: ../cache/locales.php:622 +#: [mood]in_awe msgid "in awe" msgstr "" -#: ../cache/locales.php:623 +#: [mood]in_love msgid "in love" msgstr "" -#: ../cache/locales.php:624 +#: [mood]indignant msgid "indignant" msgstr "" -#: ../cache/locales.php:625 +#: [mood]interested msgid "interested" msgstr "" -#: ../cache/locales.php:626 +#: [mood]intoxicated msgid "intoxicated" msgstr "" -#: ../cache/locales.php:627 +#: [mood]invincible msgid "invincible" msgstr "" -#: ../cache/locales.php:628 +#: [mood]jealous msgid "jealous" msgstr "" -#: ../cache/locales.php:629 +#: [mood]lonely msgid "lonely" msgstr "" -#: ../cache/locales.php:630 +#: [mood]lost msgid "lost" msgstr "" -#: ../cache/locales.php:631 +#: [mood]lucky msgid "lucky" msgstr "" -#: ../cache/locales.php:632 +#: [mood]mean msgid "mean" msgstr "" -#: ../cache/locales.php:633 +#: [mood]moody msgid "moody" msgstr "" -#: ../cache/locales.php:634 +#: [mood]nervous msgid "nervous" msgstr "" -#: ../cache/locales.php:635 +#: [mood]neutral msgid "neutral" msgstr "" -#: ../cache/locales.php:636 +#: [mood]offended msgid "offended" msgstr "" -#: ../cache/locales.php:637 +#: [mood]outraged msgid "outraged" msgstr "" -#: ../cache/locales.php:638 +#: [mood]playful msgid "playful" msgstr "" -#: ../cache/locales.php:639 +#: [mood]proud msgid "proud" msgstr "" -#: ../cache/locales.php:640 +#: [mood]relaxed msgid "relaxed" msgstr "" -#: ../cache/locales.php:641 +#: [mood]relieved msgid "relieved" msgstr "" -#: ../cache/locales.php:642 -msgid "remorseful" -msgstr "" - -#: ../cache/locales.php:643 +#: [mood]restless msgid "restless" msgstr "" -#: ../cache/locales.php:644 +#: [mood]sad msgid "sad" msgstr "" -#: ../cache/locales.php:645 +#: [mood]sarcastic msgid "sarcastic" msgstr "" -#: ../cache/locales.php:646 +#: [mood]satisfied msgid "satisfied" msgstr "" -#: ../cache/locales.php:647 +#: [mood]serious msgid "serious" msgstr "" -#: ../cache/locales.php:648 +#: [mood]shocked msgid "shocked" msgstr "" -#: ../cache/locales.php:649 +#: [mood]shy msgid "shy" msgstr "" -#: ../cache/locales.php:650 +#: [mood]sick msgid "sick" msgstr "" -#: ../cache/locales.php:651 +#: [mood]sleepy msgid "sleepy" msgstr "" -#: ../cache/locales.php:652 +#: [mood]spontaneous msgid "spontaneous" msgstr "" -#: ../cache/locales.php:653 +#: [mood]stressed msgid "stressed" msgstr "" -#: ../cache/locales.php:654 +#: [mood]strong msgid "strong" msgstr "" -#: ../cache/locales.php:655 +#: [mood]surprised msgid "surprised" msgstr "" -#: ../cache/locales.php:656 +#: [mood]thankful msgid "thankful" msgstr "" -#: ../cache/locales.php:657 +#: [mood]thirsty msgid "thirsty" msgstr "" -#: ../cache/locales.php:658 +#: [mood]tired msgid "tired" msgstr "" -#: ../cache/locales.php:659 +#: [mood]undefined msgid "undefined" msgstr "" -#: ../cache/locales.php:660 +#: [mood]weak msgid "weak" msgstr "" -#: ../cache/locales.php:661 +#: [mood]worried msgid "worried" msgstr "" -#: ../cache/locales.php:662 +#: [month]title msgid "Month" msgstr "" -#: ../cache/locales.php:663 +#: [month]january msgid "January" msgstr "Januaro" -#: ../cache/locales.php:664 +#: [month]february msgid "February" msgstr "Februaro" -#: ../cache/locales.php:665 +#: [month]march msgid "March" msgstr "Marto" -#: ../cache/locales.php:666 +#: [month]april msgid "April" msgstr "Aprilo" -#: ../cache/locales.php:667 +#: [month]may msgid "May" msgstr "Mayo" -#: ../cache/locales.php:668 +#: [month]june msgid "June" msgstr "Junio" -#: ../cache/locales.php:669 +#: [month]july msgid "July" msgstr "Julio" -#: ../cache/locales.php:670 +#: [month]august msgid "August" msgstr "Agosto" -#: ../cache/locales.php:671 +#: [month]september msgid "September" msgstr "Septembro" -#: ../cache/locales.php:672 +#: [month]october msgid "October" msgstr "Oktobro" -#: ../cache/locales.php:673 +#: [month]november msgid "November" msgstr "Novembro" -#: ../cache/locales.php:674 +#: [month]december msgid "December" msgstr "Decembro" -#: ../cache/locales.php:675 +#: [year]title msgid "Year" msgstr "" -#: ../cache/locales.php:676 +#: [date]today msgid "Today" msgstr "Hodie" -#: ../cache/locales.php:677 +#: [date]tomorrow msgid "Tomorrow" msgstr "Morge" -#: ../cache/locales.php:678 +#: [date]yesterday msgid "Yesterday" msgstr "Hiere" -#: ../cache/locales.php:679 -#, php-format -msgid " %d days ago" +#: [date]ago +#, fuzzy +msgid "%d days ago" msgstr " %d dii ante" -#: ../cache/locales.php:680 +#: [date]day msgid "day" msgstr "dio" -#: ../cache/locales.php:682 +#: [post]whats_new msgid "What's new ?" msgstr "" -#: ../cache/locales.php:683 +#: [post]place msgid "Place" msgstr "" -#: ../cache/locales.php:684 +#: [post]by msgid "by" msgstr "" -#: ../cache/locales.php:685 +#: [post]geolocalisation msgid "Geolocalisation" msgstr "" -#: ../cache/locales.php:686 +#: [post]email msgid "email" msgstr "" -#: ../cache/locales.php:688 +#: [post]no_comments msgid "No comments yet" msgstr "" -#: ../cache/locales.php:689 +#: [post]no_comments_stream msgid "No comments stream" msgstr "" -#: ../cache/locales.php:690 +#: [post]no_load msgid "Your feed cannot be loaded." msgstr "" -#: ../cache/locales.php:691 +#: [post]older msgid "Get older posts" msgstr "" -#: ../cache/locales.php:692 -#, php-format +#: [post]new_items msgid "%s new items" msgstr "" -#: ../cache/locales.php:693 +#: [post]comment_error msgid "Comment publication error" msgstr "" -#: ../cache/locales.php:694 +#: [post]comments_older msgid "Show the older comments" msgstr "" -#: ../cache/locales.php:695 -msgid "Loading comments ..." +#: [post]comments_loading +msgid "Loading comments..." msgstr "" -#: ../cache/locales.php:696 +#: [post]comments_get msgid "Get the comments" msgstr "" -#: ../cache/locales.php:697 +#: [post]comment_add msgid "Add a comment" msgstr "" -#: ../cache/locales.php:698 +#: [post]share msgid "Share with" msgstr "" -#: ../cache/locales.php:699 +#: [post]share_everyone msgid "Everyone" msgstr "" -#: ../cache/locales.php:700 +#: [post]share_your_contacts msgid "Your contacts" msgstr "" -#: ../cache/locales.php:702 +#: [post]updated msgid "Updated" msgstr "" -#: ../cache/locales.php:703 +#: [post]content_not_found msgid "Content not found" msgstr "" -#: ../cache/locales.php:704 +#: [post]default_title msgid "Contact publication" msgstr "" -#: ../cache/locales.php:705 +#: [post]comments msgid "Comments" msgstr "" -#: ../cache/locales.php:706 +#: [api]error msgid "The API is not reachable, try again later" msgstr "" -#: ../cache/locales.php:707 +#: [field]type_here msgid "Type here" msgstr "" diff --git a/sources/locales/it.po b/sources/locales/it.po index 3157057..82dbfa6 100644 --- a/sources/locales/it.po +++ b/sources/locales/it.po @@ -1,2607 +1,2737 @@ # Italian translations for Movim package. # This file is distributed under the same license as the Movim package. # This file was translated from CodingTeam at . +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/About/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Account/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AccountNext/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AdHoc/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AdminDB/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AdminMain/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AdminTest/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Api/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Avatar/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Blog/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Bookmark/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Chat/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Chats/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/ConfigData/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Config/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Contact/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Group/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Groups/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Header/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Hello/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Help/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Init/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Location/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/LoginAnonymous/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Login/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Menu/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/NodeAffiliations/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/NodeSubscriptions/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Notifs/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Post/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Presence/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Publish/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/PubsubSubscriptionConfig/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Rooms/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Roster/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Share/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Statistics/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Subscribe/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Syndication/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Upload/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Vcard4/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/VisioExt/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Visio/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../locales/locales.ini msgid "" msgstr "" "Project-Id-Version: Movim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-06-08 22:06+0200\n" +"POT-Creation-Date: 2015-08-20 15:17+0200\n" "PO-Revision-Date: 2015-06-09 12:19+0000\n" "Last-Translator: nav4Christ \n" "Language-Team: LANGUAGE \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2015-06-18 21:08+0000\n" "X-Generator: Launchpad (build 17570)\n" -"Language: \n" -#: ../cache/locales.php:2 +#: [about]thanks msgid "Thanks" msgstr "Grazie" -#: ../cache/locales.php:3 +#: [about]developers msgid "Developers" msgstr "Sviluppatori" -#: ../cache/locales.php:4 +#: [about]translators msgid "Translators" msgstr "Traduttori" -#: ../cache/locales.php:5 +#: [about]software msgid "Software" msgstr "" -#: ../cache/locales.php:6 +#: [about]resources msgid "Resources" msgstr "" -#: ../cache/locales.php:7 ../cache/locales.php:83 ../cache/locales.php:85 +#: [about]api [schema]api [api]title msgid "API" msgstr "" -#: ../cache/locales.php:8 -msgid "" -"Movim is an XMPP-based communication platform. All the project, except the " -"following software and resources, is under" +#: [about]info +msgid "Movim is an XMPP-based communication platform. All the project, except the following software and resources, is under" msgstr "" -#: ../cache/locales.php:9 +#: [account]title msgid "Account" msgstr "" -#: ../cache/locales.php:10 -msgid "The password has been updated" -msgstr "" +#: [account]password_change_title +#, fuzzy +msgid "Change my password" +msgstr "Password sbagliata" -#: ../cache/locales.php:11 -msgid "Please provide a valid password (6 characters minimum)" -msgstr "" - -#: ../cache/locales.php:12 -msgid "The provided passwords are not the same" -msgstr "" - -#: ../cache/locales.php:13 -msgid "Delete my account" -msgstr "Elimina il mio account" - -#: ../cache/locales.php:14 -msgid "" -"You will delete your XMPP account and all the relative information linked to " -"it (profile, contacts and publications)." -msgstr "" - -#: ../cache/locales.php:15 -msgid "Are you sure that you want to delete it ?" -msgstr "" - -#: ../cache/locales.php:16 ../cache/locales.php:411 -msgid "Create a new account" -msgstr "Crea un nuovo account" - -#: ../cache/locales.php:17 -msgid "No account creation form found on the server" -msgstr "" - -#: ../cache/locales.php:18 ../cache/locales.php:172 -msgid "on" -msgstr "il" - -#: ../cache/locales.php:19 -msgid "Your acccount has been successfully registered" -msgstr "" - -#: ../cache/locales.php:20 -msgid "Loading" -msgstr "Caricamento in corso" - -#: ../cache/locales.php:21 -msgid "Not Acceptable" -msgstr "Non accettabile" - -#: ../cache/locales.php:22 -msgid "The registration system of this server is currently unavailable" -msgstr "" - -#: ../cache/locales.php:23 -msgid "" -"This server use an external system for the registration, please click on the " -"following URL." -msgstr "" - -#: ../cache/locales.php:24 -msgid "Actions" -msgstr "Azioni" - -#: ../cache/locales.php:25 ../cache/locales.php:82 -msgid "Database" -msgstr "" - -#: ../cache/locales.php:26 -msgid "Modl wasn't able to connect to the database" -msgstr "" - -#: ../cache/locales.php:27 -msgid "Movim is connected to the database" -msgstr "" - -#: ../cache/locales.php:28 -msgid "The database need to be updated" -msgstr "" - -#: ../cache/locales.php:29 -msgid "Movim database is up to date" -msgstr "" - -#: ../cache/locales.php:30 -msgid "Database Type" -msgstr "" - -#: ../cache/locales.php:31 ../cache/locales.php:50 ../cache/locales.php:540 -msgid "Username" -msgstr "Nome utente" - -#: ../cache/locales.php:32 ../cache/locales.php:51 ../cache/locales.php:282 -#: ../cache/locales.php:541 +#: [account]password [db]password [credentials]password [form]password +#: [input]password msgid "Password" msgstr "Password" -#: ../cache/locales.php:33 +#: [account]password_confirmation +#, fuzzy +msgid "Password confirmation" +msgstr "%s - Configurazione" + +#: [account]password_changed +msgid "The password has been updated" +msgstr "" + +#: [account]password_not_valid +msgid "Please provide a valid password (6 characters minimum)" +msgstr "" + +#: [account]password_not_same +msgid "The provided passwords are not the same" +msgstr "" + +#: [account]delete_title +msgid "Delete my account" +msgstr "Elimina il mio account" + +#: [account]delete +#, fuzzy +msgid "Delete your account" +msgstr "Elimina il mio account" + +#: [account]delete_text +msgid "You will delete your XMPP account and all the relative information linked to it (profile, contacts and publications)." +msgstr "" + +#: [account]delete_text_confirm +msgid "Are you sure that you want to delete it ?" +msgstr "" + +#: [account]gateway_title +msgid "Gateway" +msgstr "" + +#: [create]title [subscribe]title +msgid "Create a new account" +msgstr "Crea un nuovo account" + +#: [create]notfound +msgid "No account creation form found on the server" +msgstr "" + +#: [create]server_on +msgid "on" +msgstr "il" + +#: [create]successfull +msgid "Your acccount has been successfully registered" +msgstr "" + +#: [create]loading +msgid "Loading" +msgstr "Caricamento in corso" + +#: [error]not_acceptable +msgid "Not Acceptable" +msgstr "Non accettabile" + +#: [error]service_unavailable +msgid "The registration system of this server is currently unavailable" +msgstr "" + +#: [oob]about +msgid "This server use an external system for the registration, please click on the following URL." +msgstr "" + +#: [adhoc]title +msgid "Actions" +msgstr "Azioni" + +#: [db]legend [schema]database +msgid "Database" +msgstr "" + +#: [db]connect_error +msgid "Modl wasn't able to connect to the database" +msgstr "" + +#: [db]connect_success +msgid "Movim is connected to the database" +msgstr "" + +#: [db]update +msgid "The database need to be updated" +msgstr "" + +#: [db]up_to_date +msgid "Movim database is up to date" +msgstr "" + +#: [db]type +msgid "Database Type" +msgstr "" + +#: [db]username [credentials]username [input]username +msgid "Username" +msgstr "Nome utente" + +#: [db]host msgid "Host" msgstr "" -#: ../cache/locales.php:34 +#: [db]port msgid "Port" msgstr "" -#: ../cache/locales.php:35 -msgid "Database Name" -msgstr "" +#: [db]name +#, fuzzy +msgid "Database sName" +msgstr "Database Trovato" -#: ../cache/locales.php:36 +#: [admin]general msgid "General Settings" msgstr "Impostazioni Generali" -#: ../cache/locales.php:37 +#: [general]theme msgid "Theme" msgstr "Tema" -#: ../cache/locales.php:38 +#: [general]language msgid "Default language" msgstr "Linguaggio predefinito" -#: ../cache/locales.php:39 -msgid "Environment" -msgstr "Ambiente" - -#: ../cache/locales.php:40 +#: [general]log_verbosity msgid "Log verbosity" msgstr "Estensione del registro" -#: ../cache/locales.php:41 +#: [general]timezone msgid "Server Timezone" msgstr "Fuso orario del server" -#: ../cache/locales.php:42 +#: [general]limit msgid "User folder size limit (in bytes)" msgstr "Limite raggiunto per la cartella dell'utente (in bytes)" -#: ../cache/locales.php:43 +#: [websocket]title msgid "WebSocket Configuration" msgstr "" -#: ../cache/locales.php:44 +#: [websocket]info msgid "Enter here a valid WebSocket URI in the form" msgstr "" -#: ../cache/locales.php:45 +#: [websocket]label msgid "WebSocket URI" msgstr "" -#: ../cache/locales.php:46 -msgid "" -"If you change the URI, please restart the daemon to reload the configuration" +#: [websocket]save_info +msgid "If you change the URI, please restart the daemon to reload the configuration" msgstr "" -#: ../cache/locales.php:47 +#: [websocket]publics msgid "Public WebSockets" msgstr "" -#: ../cache/locales.php:48 +#: [credentials]title msgid "Administration Credential" msgstr "Credenziali dell' amministratore." -#: ../cache/locales.php:49 +#: [credentials]info msgid "Change the default credentials admin/password" msgstr "Modificare le credenziali admin/password di default" -#: ../cache/locales.php:52 +#: [credentials]re_password msgid "Retype password" msgstr "Ridigita la password" -#: ../cache/locales.php:53 +#: [whitelist]title msgid "Whitelist - XMPP Server" msgstr "la Whitelist del server XMPP" -#: ../cache/locales.php:54 -msgid "" -"If you want to specify a list of authorized XMPP servers on your Movim pod " -"and forbid the connection on all the others please put their domain name " -"here, with comma (ex: movim.eu,jabber.fr)" -msgstr "" -"Se si desidera specificare un elenco di server XMPP autorizzati sul Suo pod " -"Movim e proibire la connessione su tutti gli altri si prega di inserire qui, " -"i rispettivi nomi di dominio separati dalle virgole (es: movim.eu,jabber.fr)" +#: [whitelist]info1 +msgid "If you want to specify a list of authorized XMPP servers on your Movim pod and forbid the connection on all the others please put their domain name here, with comma (ex: movim.eu,jabber.fr)" +msgstr "Se si desidera specificare un elenco di server XMPP autorizzati sul Suo pod Movim e proibire la connessione su tutti gli altri si prega di inserire qui, i rispettivi nomi di dominio separati dalle virgole (es: movim.eu,jabber.fr)" -#: ../cache/locales.php:55 -msgid "" -"Leave this field blank if you allow the access to all the XMPP accounts." -msgstr "" -"Lascia questo campo vuoto se si consente l'accesso a tutti gli account XMPP." +#: [whitelist]info2 +msgid "Leave this field blank if you allow the access to all the XMPP accounts." +msgstr "Lascia questo campo vuoto se si consente l'accesso a tutti gli account XMPP." -#: ../cache/locales.php:56 +#: [whitelist]label msgid "List of whitelisted XMPP servers" msgstr "Elenco dei server XMPP whitelisted" -#: ../cache/locales.php:57 ../cache/locales.php:61 +#: [information]title +#, fuzzy +msgctxt "[information]title" msgid "Information Message" msgstr "Messaggio informativo" -#: ../cache/locales.php:58 +#: [information]description msgid "Description" msgstr "" -#: ../cache/locales.php:59 +#: [information]info1 msgid "This message will be displayed on the login page" msgstr "Questo messaggio verrà visualizzato nella pagina di login" -#: ../cache/locales.php:60 -msgid "Leave this field blank if you don't want to show any message." -msgstr "" -"Lascia questo campo vuoto se non vuole visualizzare alcun messaggio." +#: [information]info2 +#, fuzzy +msgid "Leave this field blank if you dont want to show any message." +msgstr "Lascia questo campo vuoto se non vuole visualizzare alcun messaggio." -#: ../cache/locales.php:62 +#: [information]label +#, fuzzy +msgctxt "[information]label" +msgid "Information Message" +msgstr "Messaggio informativo" + +#: [log]empty msgid "Empty" msgstr "" -#: ../cache/locales.php:63 +#: [log]syslog msgid "Syslog" msgstr "" -#: ../cache/locales.php:64 +#: [log]syslog_files msgid "Syslog and files" msgstr "" -#: ../cache/locales.php:65 +#: [rewrite]title msgid "URL Rewriting" msgstr "" -#: ../cache/locales.php:66 +#: [rewrite]info msgid "The URL Rewriting can be enabled" msgstr "" -#: ../cache/locales.php:67 +#: [admin]compatibility msgid "General Overview" msgstr "" -#: ../cache/locales.php:68 -msgid "" -"Movim has found some issues or things that need to be fixed or improved" +#: [compatibility]info +msgid "Movim has found some issues or things that need to be fixed or improved" msgstr "" -#: ../cache/locales.php:69 -#, php-format +#: [compatibility]php1 msgid "Update your PHP-Version: %s" msgstr "" -#: ../cache/locales.php:70 +#: [compatibility]php2 msgid "Required: 5.3.0" msgstr "" -#: ../cache/locales.php:71 +#: [compatibility]curl msgid "Install the php5-curl library" msgstr "" -#: ../cache/locales.php:72 +#: [compatibility]imagick msgid "Install the php5-imagick library" msgstr "" -#: ../cache/locales.php:73 +#: [compatibility]gd msgid "Install the php5-gd library" msgstr "" -#: ../cache/locales.php:74 -msgid "Read and write rights for the webserver in Movim's root directory" -msgstr "" -"Leggere e scrivere i diritti del webserver nella cartella principale " -"(radice) di Movim" +#: [compatibility]rights +#, fuzzy +msgid "Read and write rights for the webserver in Movims root directory" +msgstr "Leggere e scrivere i diritti del webserver nella cartella principale (radice) di Movim" -#: ../cache/locales.php:75 +#: [compatibility]rewrite msgid "The URL Rewriting support is currently disabled" msgstr "" -#: ../cache/locales.php:76 +#: [compatibility]db msgid "The database need to be updated, go to the database panel to fix this" msgstr "" -#: ../cache/locales.php:77 -msgid "" -"WebSocket connection error, check if the Movim Daemon is running and is " -"reacheable" +#: [compatibility]websocket +msgid "WebSocket connection error, check if the Movim Daemon is running and is reachable" msgstr "" -#: ../cache/locales.php:78 -msgid "" -"XMPP Websocket connection error, please check the validity of the URL given " -"in the General Configuration" +#: [compatibility]xmpp_websocket +msgid "XMPP Websocket connection error, please check the validity of the URL given in the General Configuration" msgstr "" -#: ../cache/locales.php:79 +#: [schema]browser msgid "Browser" msgstr "" -#: ../cache/locales.php:80 +#: [schema]movim msgid "Movim Core" msgstr "" -#: ../cache/locales.php:81 +#: [schema]daemon msgid "Movim Daemon" msgstr "" -#: ../cache/locales.php:84 +#: [schema]xmpp msgid "XMPP" msgstr "" -#: ../cache/locales.php:86 -#, php-format -msgid "" -"Here you can register your pod on the official %sMovim API%s and be listed " -"on %sthe pods page%s." +#: [api]info +msgid "Here you can register your pod on the official %sMovim API%s and be listed on %sthe pods page%s." msgstr "" -#: ../cache/locales.php:87 +#: [api]register msgid "Your pod is not registered on the API" msgstr "" -#: ../cache/locales.php:88 +#: [api]registered msgid "Your pod is registered on the API" msgstr "" -#: ../cache/locales.php:89 +#: [api]wait msgid "Your pod is not yet validated" msgstr "" -#: ../cache/locales.php:90 +#: [api]validated msgid "Your pod is validated" msgstr "" -#: ../cache/locales.php:91 -msgid "" -"You asked to be removed from the API, this request will be processed in a " -"couple of hours" +#: [api]unregister +msgid "You asked to be removed from the API, this request will be processed in a couple of hours" msgstr "" -#: ../cache/locales.php:92 ../cache/locales.php:147 +#: [api]conf_updated [config]updated msgid "Configuration updated" msgstr "" -#: ../cache/locales.php:93 +#: [avatar]file msgid "File" msgstr "" -#: ../cache/locales.php:94 +#: [avatar]use_it msgid "Use it" msgstr "" -#: ../cache/locales.php:95 +#: [avatar]webcam msgid "Webcam" msgstr "" -#: ../cache/locales.php:96 +#: [avatar]cheese msgid "Cheese !" msgstr "" -#: ../cache/locales.php:97 +#: [avatar]snapshot msgid "Take a webcam snapshot" msgstr "" -#: ../cache/locales.php:98 +#: [avatar]updated msgid "Avatar Updated" msgstr "" -#: ../cache/locales.php:99 +#: [avatar]not_updated msgid "Avatar Not Updated" msgstr "" -#: ../cache/locales.php:100 ../cache/locales.php:415 -#, php-format +#: [blog]title [feed]title msgid "%s's feed" msgstr "" -#: ../cache/locales.php:101 +#: [blog]empty msgid "This user has not posted anything right now" msgstr "" -#: ../cache/locales.php:102 +#: [title]conferences msgid "Conferences" msgstr "" -#: ../cache/locales.php:103 ../cache/locales.php:193 ../cache/locales.php:217 -#: ../cache/locales.php:468 +#: [title]groups [group]empty_title [menu]groups [page]groups msgid "Groups" msgstr "Gruppi" -#: ../cache/locales.php:104 +#: [chatroom]add msgid "Add a new Chat Room" msgstr "" -#: ../cache/locales.php:105 ../cache/locales.php:368 +#: [chatroom]id [chatrooms]id msgid "Chat Room ID" msgstr "" -#: ../cache/locales.php:106 ../cache/locales.php:116 ../cache/locales.php:156 -#: ../cache/locales.php:361 ../cache/locales.php:369 ../cache/locales.php:424 +#: [chatroom]name +#, fuzzy +msgctxt "[chatroom]name" msgid "Name" msgstr "Nome" -#: ../cache/locales.php:107 ../cache/locales.php:157 ../cache/locales.php:371 -#: ../cache/locales.php:425 +#: [chatroom]nickname [general]nickname [chatrooms]nickname msgid "Nickname" msgstr "Nickname" -#: ../cache/locales.php:108 +#: [chatroom]autojoin_label msgid "Do you want do join automaticaly this Chat Room ?" msgstr "" -#: ../cache/locales.php:109 ../cache/locales.php:372 +#: [chatroom]bad_id [chatrooms]bad_id msgid "Bad Chatroom ID" msgstr "" -#: ../cache/locales.php:110 ../cache/locales.php:373 +#: [chatroom]empty_name [chatrooms]empty_name msgid "Empty name" msgstr "" -#: ../cache/locales.php:111 ../cache/locales.php:380 +#: [bookmarks]updated msgid "Bookmarks updated" msgstr "" -#: ../cache/locales.php:112 -msgid "An error occured : " +#: [bookmarks]error +msgid "An error occured :" msgstr "" -#: ../cache/locales.php:113 +#: [bookmarks]configure msgid "Configure" msgstr "" -#: ../cache/locales.php:114 +#: [url]add msgid "Add a new URL" msgstr "" -#: ../cache/locales.php:115 +#: [url]url msgid "URL" msgstr "" -#: ../cache/locales.php:117 +#: [url]name +#, fuzzy +msgctxt "[url]name" +msgid "Name" +msgstr "Nome" + +#: [message]published msgid "Message Published" msgstr "" -#: ../cache/locales.php:118 ../cache/locales.php:138 +#: [message]encrypted msgid "Encrypted message" msgstr "" -#: ../cache/locales.php:119 +#: [message]composing [chats]composing msgid "Composing..." msgstr "Scrivendo..." -#: ../cache/locales.php:120 +#: [message]paused [chats]paused msgid "Paused..." msgstr "" -#: ../cache/locales.php:121 +#: [message]gone msgid "Contact gone" msgstr "" -#: ../cache/locales.php:122 -#, php-format +#: [chat]attention msgid "%s needs your attention" msgstr "" -#: ../cache/locales.php:123 +#: [chat]placeholder msgid "Your message here..." msgstr "" -#: ../cache/locales.php:124 +#: [chat]smileys msgid "Smileys" msgstr "" -#: ../cache/locales.php:125 ../cache/locales.php:139 +#: [chat]empty_title [button]chat msgid "Chat" msgstr "Chat" -#: ../cache/locales.php:126 +#: [chat]empty_text msgid "Discuss with your contacts" msgstr "" -#: ../cache/locales.php:127 -msgid "Members" -msgstr "" - -#: ../cache/locales.php:128 ../cache/locales.php:376 -msgid "Connected to the chatroom" -msgstr "" - -#: ../cache/locales.php:129 ../cache/locales.php:377 -msgid "Disconnected from the chatroom" -msgstr "" - -#: ../cache/locales.php:130 ../cache/locales.php:200 ../cache/locales.php:469 -msgid "Configuration" -msgstr "Configurazione" - -#: ../cache/locales.php:131 -msgid "Configuration saved" -msgstr "" - -#: ../cache/locales.php:132 -msgid "Subject" -msgstr "" - -#: ../cache/locales.php:133 -msgid "Subject changed" -msgstr "" - -#: ../cache/locales.php:134 -msgid "Open a new conversation by clicking on the plus button bellow" -msgstr "" - -#: ../cache/locales.php:135 -msgid "Chat with a contact" -msgstr "" - -#: ../cache/locales.php:136 +#: [chat]frequent [chats]frequent msgid "Frequent contacts" msgstr "" -#: ../cache/locales.php:137 +#: [chatroom]members +msgid "Members" +msgstr "" + +#: [chatroom]connected [chatrooms]connected +msgid "Connected to the chatroom" +msgstr "" + +#: [chatroom]disconnected [chatrooms]disconnected +msgid "Disconnected from the chatroom" +msgstr "" + +#: [chatroom]config [group]configuration [page]configuration +msgid "Configuration" +msgstr "Configurazione" + +#: [chatroom]config_saved +msgid "Configuration saved" +msgstr "" + +#: [chatroom]subject +msgid "Subject" +msgstr "" + +#: [chatroom]subject_changed +msgid "Subject changed" +msgstr "" + +#: [chats]empty_title +msgid "No chats yet..." +msgstr "" + +#: [chats]empty +msgid "Open a new conversation by clicking on the plus button bellow or visit the Contacts page." +msgstr "" + +#: [chats]add +msgid "Chat with a contact" +msgstr "" + +#: [chats]more msgid "Load more contacts" msgstr "" -#: ../cache/locales.php:140 -msgid "General" -msgstr "" - -#: ../cache/locales.php:141 -msgid "Language" -msgstr "Lingua" - -#: ../cache/locales.php:142 -msgid "Roster display" -msgstr "" - -#: ../cache/locales.php:143 -msgid "Show the offline contacts" -msgstr "" - -#: ../cache/locales.php:144 -msgid "Hide the offline contacts" -msgstr "" - -#: ../cache/locales.php:145 -msgid "Appearence" -msgstr "" - -#: ../cache/locales.php:146 -msgid "This configuration is shared wherever you are connected !" -msgstr "" - -#: ../cache/locales.php:148 -msgid "Notify on incoming message" -msgstr "" - -#: ../cache/locales.php:149 -msgid "Use desktop notifications" -msgstr "" - -#: ../cache/locales.php:150 +#: [title]data msgid "Data" msgstr "" -#: ../cache/locales.php:151 +#: [title]cache msgid "Cache" msgstr "" -#: ../cache/locales.php:152 ../cache/locales.php:218 ../cache/locales.php:466 +#: [title]contacts [menu]contacts [page]contacts msgid "Contacts" msgstr "" -#: ../cache/locales.php:153 ../cache/locales.php:480 +#: [title]posts [page]posts msgid "Posts" msgstr "" -#: ../cache/locales.php:154 +#: [title]messages msgid "Messages" msgstr "" -#: ../cache/locales.php:155 ../cache/locales.php:423 +#: [config]general +msgid "General" +msgstr "" + +#: [config]language +msgid "Language" +msgstr "Lingua" + +#: [config]roster +msgid "Roster display" +msgstr "" + +#: [config]roster_show +msgid "Show the offline contacts" +msgstr "" + +#: [config]roster_hide +msgid "Hide the offline contacts" +msgstr "" + +#: [config]appearence +msgid "Appearence" +msgstr "" + +#: [config]info +msgid "This configuration is shared wherever you are connected" +msgstr "" + +#: [notifications]message +msgid "Notify on incoming message" +msgstr "" + +#: [notifications]desktop +msgid "Use desktop notifications" +msgstr "" + +#: [general]legend [general]general_title msgid "General Informations" msgstr "Informazioni Generali" -#: ../cache/locales.php:158 ../cache/locales.php:427 +#: [general]name [public_groups]name [chatrooms]name +msgid "Name" +msgstr "Nome" + +#: [general]date_of_birth msgid "Date of Birth" msgstr "Data di nascita" -#: ../cache/locales.php:159 ../cache/locales.php:428 +#: [general]gender msgid "Gender" msgstr "Sesso" -#: ../cache/locales.php:160 ../cache/locales.php:429 +#: [general]marital msgid "Marital Status" msgstr "Stato civile" -#: ../cache/locales.php:161 ../cache/locales.php:426 +#: [general]email msgid "Email" msgstr "" -#: ../cache/locales.php:162 ../cache/locales.php:430 +#: [general]website msgid "Website" msgstr "Sito web" -#: ../cache/locales.php:163 ../cache/locales.php:431 +#: [general]about msgid "About Me" msgstr "Informazioni su di me" -#: ../cache/locales.php:164 +#: [general]accounts msgid "Other Accounts" msgstr "" -#: ../cache/locales.php:165 +#: [general]tune msgid "Is Listening" msgstr "" -#: ../cache/locales.php:166 ../cache/locales.php:432 +#: [position]legend [position]position_title msgid "Geographic Position" msgstr "" -#: ../cache/locales.php:167 ../cache/locales.php:433 +#: [position]locality msgid "Locality" msgstr "" -#: ../cache/locales.php:168 ../cache/locales.php:434 +#: [position]country msgid "Country" msgstr "" -#: ../cache/locales.php:169 +#: [mood]title msgid "Mood" msgstr "" -#: ../cache/locales.php:170 +#: [mood]im msgid "I'm " msgstr "" -#: ../cache/locales.php:171 +#: [listen]title msgid "Listening" msgstr "" -#: ../cache/locales.php:173 +#: [last]title msgid "Last seen" msgstr "" -#: ../cache/locales.php:174 +#: [client]title msgid "Client Informations" msgstr "Informazioni sul client" -#: ../cache/locales.php:175 +#: [explore]last_registered msgid "Last registered" msgstr "Ultimo iscritto" -#: ../cache/locales.php:176 +#: [explore]explore msgid "Find some new friends" msgstr "" -#: ../cache/locales.php:177 ../cache/locales.php:533 +#: [edit]title [button]edit msgid "Edit" msgstr "" -#: ../cache/locales.php:178 +#: [edit]alias msgid "Alias" msgstr "Alias" -#: ../cache/locales.php:179 +#: [edit]group msgid "Group" msgstr "" -#: ../cache/locales.php:180 ../cache/locales.php:400 +#: [edit]updated [roster]updated msgid "Contact updated" msgstr "" -#: ../cache/locales.php:181 +#: [delete]title msgid "Are you sure?" msgstr "" -#: ../cache/locales.php:182 -msgid "" -"You are going to delete one of your contacts, please confirm your action" +#: [delete]text +msgid "You are going to delete one of your contacts, please confirm your action" msgstr "" -#: ../cache/locales.php:183 -#, php-format +#: [age]years msgid "%s years" msgstr "" -#: ../cache/locales.php:184 +#: [blog]last msgid "Last public post" msgstr "" -#: ../cache/locales.php:185 +#: [subscription]to +#, fuzzy +msgid "You can see this contact status" +msgstr "Elimina questo contatto" + +#: [subscription]to_button +msgid "Share my status" +msgstr "" + +#: [subscription]to_text +msgid "But this contact cannot see yours" +msgstr "" + +#: [subscription]from +msgid "You are not subscribed to this contact" +msgstr "" + +#: [subscription]from_button +#, fuzzy +msgid "Ask to subscribe" +msgstr "Iscritto" + +#: [subscription]from_text +msgid "But this contact can still see if you are online" +msgstr "" + +#: [subscription]nil +msgid "No subscriptions" +msgstr "" + +#: [subscription]nil_button +msgid "Invite" +msgstr "" + +#: [subscription]nil_text +msgid "This contact is in your contact list but there is no subscriptions between the two accounts" +msgstr "" + +#: [group]subscribe msgid "Subscribe" msgstr "" -#: ../cache/locales.php:186 +#: [group]subscribed msgid "Subscribed" msgstr "Iscritto" -#: ../cache/locales.php:187 +#: [group]unsubscribe msgid "Unsubscribe" msgstr "" -#: ../cache/locales.php:188 +#: [group]unsubscribe_text msgid "You are going to unsubscribe from this Group" msgstr "" -#: ../cache/locales.php:189 +#: [group]unsubscribed msgid "Unsubscribed" msgstr "" -#: ../cache/locales.php:190 +#: [group]share_label msgid "Make your membership to this group public to your friends" msgstr "" -#: ../cache/locales.php:191 +#: [group]label_label msgid "Give a label for this group" msgstr "" -#: ../cache/locales.php:192 +#: [group]sure msgid "Are you sure ?" msgstr "" -#: ../cache/locales.php:194 +#: [group]empty_text msgid "Discover, follow and share" msgstr "" -#: ../cache/locales.php:195 +#: [group]empty msgid "Something bad happened to this group" msgstr "" -#: ../cache/locales.php:196 +#: [group]config_saved msgid "Group configuration saved" msgstr "Configurazione del gruppo salvato" -#: ../cache/locales.php:197 +#: [group]delete_title msgid "Delete the group" msgstr "" -#: ../cache/locales.php:198 -msgid "" -"You are going to delete the following group. Please confirm your action." +#: [group]delete_text +msgid "You are going to delete the following group. Please confirm your action." msgstr "" -#: ../cache/locales.php:199 -msgid "" -"It seems that this group doesn't exists anymore. Do you want to remove it " -"from your subscriptions?" +#: [group]delete_clean_text +msgid "It seems that this group doesn't exists anymore. Do you want to remove it from your subscriptions?" msgstr "" -#: ../cache/locales.php:201 ../cache/locales.php:408 +#: [group]counter +msgid "%s groups on this server" +msgstr "" + +#: [group]subscriptions [statistics]subscriptions msgid "Subscriptions" msgstr "" -#: ../cache/locales.php:202 ../cache/locales.php:290 +#: [group]servers +#, fuzzy +msgid "Groups servers" +msgstr "Gruppi" + +#: [group]search_server +msgid "Search for a new server" +msgstr "" + +#: [group]help_info1 +msgid "Groups are the perfect way to share posts about topics that you like with all the other Movim's users." +msgstr "" + +#: [group]help_info2 +msgid "Choose a server and a Group and subscribe to it using the %s button in the header. You can also create a new one using the %s button." +msgstr "" + +#: [group]help_info3 +msgid "Done? You can now publish a new post in the Group by using the %s button." +msgstr "" + +#: [group]help_info4 +msgid "You will find a list of all your subscribed Groups in My Subscriptions and receive instantly all the new incoming posts in the %sNews%s page." +msgstr "" + +#: [groups]empty_title msgid "Hello" msgstr "" -#: ../cache/locales.php:203 ../cache/locales.php:225 ../cache/locales.php:291 +#: [groups]contact_post [hello]contact_post [menu]contact_post msgid "Contact post" msgstr "" -#: ../cache/locales.php:204 -msgid "" -"You don't have any subscriptions yet, select a group server above to start " -"exploring." +#: [groups]empty_text1 +msgid "You don't have any subscriptions yet, select a group server above to start exploring." msgstr "" -#: ../cache/locales.php:205 +#: [groups]empty_text2 msgid "Subscribe to your favorite feeds by bookmarking them." msgstr "" -#: ../cache/locales.php:206 +#: [groups]subscriptions msgid "My Subscriptions" msgstr "" -#: ../cache/locales.php:207 +#: [groups]add msgid "Create a new Group" msgstr "" -#: ../cache/locales.php:208 +#: [groups]name msgid "Group name" msgstr "" -#: ../cache/locales.php:209 +#: [groups]name_example msgid "My Little Pony - Fan Club" msgstr "Il Mio Cavallino - Fan Club" -#: ../cache/locales.php:210 +#: [groups]created msgid "Group created successfully" msgstr "" -#: ../cache/locales.php:211 +#: [groups]deleted msgid "Group deleted successfully" msgstr "" -#: ../cache/locales.php:212 +#: [groups]name_error msgid "Please provide a valid group name (4 characters minimum)" msgstr "" -#: ../cache/locales.php:213 +#: [groups]no_creation msgid "You cannot create a new Group on this server" msgstr "" -#: ../cache/locales.php:214 -#, php-format +#: [groups]sub msgid "%s subscribers" msgstr "" -#: ../cache/locales.php:215 -#, php-format +#: [groups]num msgid "%s posts" msgstr "" -#: ../cache/locales.php:216 +#: [groups]disco_error +#, fuzzy +msgid "This server doesn't exists" +msgstr "Questo server ospita %s account" + +#: [menu]all msgid "All" msgstr "Tutti" -#: ../cache/locales.php:219 +#: [menu]refresh msgid "Refresh all the streams" msgstr "" -#: ../cache/locales.php:220 ../cache/locales.php:402 -msgid "Search" -msgstr "" +#: [roster]search +#, fuzzy +msgid "Search in your contacts" +msgstr "Condiviso con un contatto" -#: ../cache/locales.php:221 +#: [hello]active_contacts +#, fuzzy +msgid "Active contacts" +msgstr "Azioni" + +#: [hello]chat msgid "Go on the Chat page" msgstr "" -#: ../cache/locales.php:222 -msgid "Read all theses articles on the News page" -msgstr "" - -#: ../cache/locales.php:223 -msgid "Visit your public blog" -msgstr "" - -#: ../cache/locales.php:224 -msgid "See your public posts and share them with all your contacts" -msgstr "" - -#: ../cache/locales.php:226 -msgid "Universal share button" -msgstr "" - -#: ../cache/locales.php:227 -msgid "" -"Bookmark or drag and drop the following button in your toolbar and use it on " -"all the pages you want to share on Movim" -msgstr "" - -#: ../cache/locales.php:228 -msgid "Share on Movim" -msgstr "" - -#: ../cache/locales.php:229 -msgid "Frequently Asked Questions" -msgstr "" - -#: ../cache/locales.php:230 -msgid "What do the little banners refer to ?" -msgstr "A cosa si riferiscono i piccoli banner?" - -#: ../cache/locales.php:231 -msgid "" -"Thanks to these five little banners, you can quickly identitfy the level of " -"confdentiality applied to the information you provide." -msgstr "" -"Grazie a questi cinque piccoli banner, puoi facilmente identificare il " -"livello di confidenzialità applicato alle informazioni che pubblichi" - -#: ../cache/locales.php:232 -msgid "White, only you can see the information" -msgstr "Bianco, solo tu puoi vedere l'informazione" - -#: ../cache/locales.php:233 -msgid "Green, you have chosen some contacts who can see your information" -msgstr "" -"Verde, hai scelto alcuni contatti che possono vedere la tua informazione" - -#: ../cache/locales.php:234 -msgid "Orange, all your contact list can see your information" -msgstr "Arancione, tutti i tuoi contatti possono vedere la tua informazione" - -#: ../cache/locales.php:235 -msgid "Red, everybody in the XMPP network can see your information" -msgstr "Rosso, tutti nella rete XMPP possono vedere la tua informazione" - -#: ../cache/locales.php:236 -msgid "Black, the whole Internet can see your information" -msgstr "Nero, l'intera Internet può vedere la tua informazione" - -#: ../cache/locales.php:237 -msgid "Looking for some documentation ?" -msgstr "" - -#: ../cache/locales.php:238 -msgid "Read the Wiki" -msgstr "" - -#: ../cache/locales.php:239 -msgid "Talk with us by email ?" -msgstr "" - -#: ../cache/locales.php:240 -msgid "Join the Mailing List" -msgstr "" - -#: ../cache/locales.php:241 -msgid "Chat with the team ?" -msgstr "" - -#: ../cache/locales.php:242 -msgid "Join the Chatroom" -msgstr "" - -#: ../cache/locales.php:243 -msgid "Location node created" -msgstr "" - -#: ../cache/locales.php:244 -msgid "Bookmark node created" -msgstr "" - -#: ../cache/locales.php:245 -msgid "Profile node created" -msgstr "" - -#: ../cache/locales.php:246 -msgid "Avatar node created" -msgstr "" - -#: ../cache/locales.php:247 -msgid "Subscriptions node created" -msgstr "" - -#: ../cache/locales.php:248 -msgid "Microblog node created" -msgstr "" - -#: ../cache/locales.php:249 -msgid "Location" -msgstr "" - -#: ../cache/locales.php:250 -msgid "Wrong position" -msgstr "" - -#: ../cache/locales.php:251 -msgid "Location updated" -msgstr "" - -#: ../cache/locales.php:252 -msgid "Update my position" -msgstr "" - -#: ../cache/locales.php:253 -msgid "Wrong username" -msgstr "Nome utente errato" - -#: ../cache/locales.php:254 -msgid "Invalid JID" -msgstr "ID Jabber non valido" - -#: ../cache/locales.php:255 -msgid "Empty Challenge from the server" -msgstr "" - -#: ../cache/locales.php:256 -msgid "XMPP Domain error, your account is not a correct Jabber ID" -msgstr "Errore di dominio XMPP, il tuo account non è un ID Jabber corretto" - -#: ../cache/locales.php:257 -msgid "Some data are missing !" -msgstr "Mancano alcuni dati!" - -#: ../cache/locales.php:258 -msgid "Wrong password" -msgstr "Password sbagliata" - -#: ../cache/locales.php:259 -msgid "Internal server error" -msgstr "Errore interno del server" - -#: ../cache/locales.php:260 -msgid "Session error" -msgstr "Errore di sessione" - -#: ../cache/locales.php:261 -msgid "Account successfully created" -msgstr "Account creato con successo" - -#: ../cache/locales.php:262 ../cache/locales.php:271 -msgid "Your XMPP server is unauthorized" -msgstr "" - -#: ../cache/locales.php:263 -msgid "The server takes too much time to respond" -msgstr "" - -#: ../cache/locales.php:264 -msgid "Your web browser is too old to use with Movim." -msgstr "Il tuo browser web è troppo vecchio per usarlo con Movim" - -#: ../cache/locales.php:265 -msgid "" -"Movim cannot talk with the server, please try again later (Websocket " -"connection error)" -msgstr "" - -#: ../cache/locales.php:266 -msgid "Impossible login" -msgstr "" - -#: ../cache/locales.php:267 -msgid "Oops!" -msgstr "" - -#: ../cache/locales.php:268 ../cache/locales.php:449 ../cache/locales.php:455 -msgid "Unknown error" -msgstr "Errore sconosciuto" - -#: ../cache/locales.php:269 -msgid "Invalid username format" -msgstr "" - -#: ../cache/locales.php:270 -msgid "Invalid password format" -msgstr "" - -#: ../cache/locales.php:272 -msgid "A Movim session is already open on an other device" -msgstr "" - -#: ../cache/locales.php:273 -msgid "Movim failed to authenticate. You entered wrong data" -msgstr "" -"Movim ha fallito ad autenticarti. Devi aver inserito i dati sbagliati" - -#: ../cache/locales.php:274 -msgid "Authentication mechanism not supported by Movim" -msgstr "" - -#: ../cache/locales.php:275 -msgid "The XMPP authentification failed" -msgstr "L'autenticazione XMPP è fallita" - -#: ../cache/locales.php:276 -#, php-format -msgid "" -"You can login with Facebook (chat only) using %syour.id@chat.facebook.com%s " -"and your password" -msgstr "" - -#: ../cache/locales.php:277 -#, php-format -msgid "%sGmail accounts are also compatible%s but are not fully supported" -msgstr "" - -#: ../cache/locales.php:278 -msgid "You can login using your favorite Jabber account" -msgstr "" - -#: ../cache/locales.php:279 -msgid "or with our demonstration account" -msgstr "" - -#: ../cache/locales.php:280 ../cache/locales.php:435 -msgid "Accounts" -msgstr "" - -#: ../cache/locales.php:281 -msgid "My address" -msgstr "Il mio indirizzo" - -#: ../cache/locales.php:283 -msgid "Create one !" -msgstr "" - -#: ../cache/locales.php:284 -msgid "No account yet ?" -msgstr "" - -#: ../cache/locales.php:285 -msgid "Another account" -msgstr "" - -#: ../cache/locales.php:286 -msgid "You can login with accounts from theses servers" -msgstr "" - -#: ../cache/locales.php:287 -msgid "Connected" -msgstr "" - -#: ../cache/locales.php:288 -msgid "Population" -msgstr "" - -#: ../cache/locales.php:289 -msgid "Bad nickname (between 4 and 40 characters)" -msgstr "" - -#: ../cache/locales.php:292 -msgid "" -"Welcome on your news feed, here you will see all the posts published in the " -"groups you have subscribed." -msgstr "" - -#: ../cache/locales.php:293 -msgid "Refreshing all the streams" -msgstr "" - -#: ../cache/locales.php:294 -msgid "This post is public" -msgstr "" - -#: ../cache/locales.php:295 -msgid "Manage your members" -msgstr "" - -#: ../cache/locales.php:296 -msgid "Get the members" -msgstr "" - -#: ../cache/locales.php:297 -msgid "Affiliations saved" -msgstr "Affiliazioni salvati" - -#: ../cache/locales.php:298 -msgid "Manage your subscriptions" -msgstr "" - -#: ../cache/locales.php:299 -msgid "Manage the subscriptions" -msgstr "" - -#: ../cache/locales.php:300 -msgid "Get the subscriptions" -msgstr "" - -#: ../cache/locales.php:301 -msgid "Subscriptions saved" -msgstr "" - -#: ../cache/locales.php:302 -msgid "Pending Invitations" -msgstr "" - -#: ../cache/locales.php:303 -#, php-format -msgid "%s wants to talk with you" -msgstr "" - -#: ../cache/locales.php:304 -msgid "Manage" -msgstr "" - -#: ../cache/locales.php:305 ../cache/locales.php:338 -msgid "News Feed" -msgstr "" - -#: ../cache/locales.php:306 ../cache/locales.php:339 -msgid "Discover and register to the groups you are interested in" -msgstr "" - -#: ../cache/locales.php:307 ../cache/locales.php:340 ../cache/locales.php:482 -msgid "Preview" -msgstr "" - -#: ../cache/locales.php:308 ../cache/locales.php:341 ../cache/locales.php:478 -msgid "Help" -msgstr "Aiuto" - -#: ../cache/locales.php:309 ../cache/locales.php:342 -msgid "More help" -msgstr "" - -#: ../cache/locales.php:310 ../cache/locales.php:343 -msgid "Markdown syntax manual" -msgstr "" - -#: ../cache/locales.php:311 ../cache/locales.php:344 ../cache/locales.php:681 -msgid "Title" -msgstr "" - -#: ../cache/locales.php:312 ../cache/locales.php:345 -msgid "Content" -msgstr "" - -#: ../cache/locales.php:313 ../cache/locales.php:346 -msgid "Link" -msgstr "Collegamento" - -#: ../cache/locales.php:314 ../cache/locales.php:347 -msgid "Tags" -msgstr "" - -#: ../cache/locales.php:315 ../cache/locales.php:348 -msgid "Please enter a valid url" -msgstr "" - -#: ../cache/locales.php:316 ../cache/locales.php:349 -msgid "No content to preview" -msgstr "" - -#: ../cache/locales.php:317 ../cache/locales.php:350 ../cache/locales.php:687 -msgid "No content" -msgstr "" - -#: ../cache/locales.php:318 ../cache/locales.php:351 -msgid "Post published" -msgstr "" - -#: ../cache/locales.php:319 ../cache/locales.php:352 -msgid "Post deleted" -msgstr "" - -#: ../cache/locales.php:320 ../cache/locales.php:353 -msgid "This picture will be added to your gallery" -msgstr "" - -#: ../cache/locales.php:321 ../cache/locales.php:354 -msgid "What's Hot" -msgstr "" - -#: ../cache/locales.php:322 ../cache/locales.php:355 -msgid "New post" -msgstr "" - -#: ../cache/locales.php:323 ../cache/locales.php:357 -msgid "" -"You can also use services like Imgur or Flickr to host your picture and " -"paste the link here." -msgstr "" - -#: ../cache/locales.php:324 -#, php-format -msgid "This is a re-post from %s" -msgstr "" - -#: ../cache/locales.php:325 -#, php-format -msgid "See %s profile" -msgstr "" - -#: ../cache/locales.php:326 -msgid "Publish this post on your public feed?" -msgstr "" - -#: ../cache/locales.php:327 -msgid "Post published on your blog" -msgstr "" - -#: ../cache/locales.php:328 -msgid "Post removed from your blog" -msgstr "" - -#: ../cache/locales.php:329 ../cache/locales.php:701 -msgid "Delete this post" -msgstr "" - -#: ../cache/locales.php:330 -msgid "You are going to delete this post, please confirm your action" -msgstr "" - -#: ../cache/locales.php:331 -msgid "Comments disabled" -msgstr "" - -#: ../cache/locales.php:332 -msgid "Comment published" -msgstr "" - -#: ../cache/locales.php:333 -msgid "Disconnect" -msgstr "" - -#: ../cache/locales.php:334 -msgid "Your status here !" -msgstr "" - -#: ../cache/locales.php:335 -msgid "Status updated" -msgstr "" - -#: ../cache/locales.php:336 -msgid "Status" -msgstr "" - -#: ../cache/locales.php:337 -msgid "Presence" -msgstr "" - -#: ../cache/locales.php:356 -msgid "Publish" -msgstr "" - -#: ../cache/locales.php:358 -msgid "You cannot publish a post on this Group" -msgstr "" - -#: ../cache/locales.php:359 -msgid "" -"Some fields have been filled in. Do you still want to go back and loose " -"their content?" -msgstr "" - -#: ../cache/locales.php:360 -msgid "Shared" -msgstr "" - -#: ../cache/locales.php:362 -#, php-format -msgid "%s has been added to your public groups" -msgstr "" - -#: ../cache/locales.php:363 -#, php-format -msgid "%s has been removed from your public groups" -msgstr "" - -#: ../cache/locales.php:364 -msgid "Add a chatroom" -msgstr "" - -#: ../cache/locales.php:365 -msgid "You don't have any chatroom yet." -msgstr "" - -#: ../cache/locales.php:366 -msgid "Add one by clicking on the add button in the header." -msgstr "" - -#: ../cache/locales.php:367 -msgid "Chatrooms" -msgstr "Chatrooms" - -#: ../cache/locales.php:370 -msgid "My Favorite Room" -msgstr "" - -#: ../cache/locales.php:374 -msgid "Remove a chatroom" -msgstr "" - -#: ../cache/locales.php:375 -msgid "" -"You are going to remove the following chatroom. Please confirm your action." -msgstr "" - -#: ../cache/locales.php:378 -msgid "Users in the room" -msgstr "" - -#: ../cache/locales.php:379 -msgid "Please enter a correct nickname (6 to 40 characters)" -msgstr "" - -#: ../cache/locales.php:381 -msgid "Public chatroom" -msgstr "" - -#: ../cache/locales.php:382 -msgid "Please provide a room address" -msgstr "" - -#: ../cache/locales.php:383 -msgid "You are currently logued as an anonymous user." -msgstr "" - -#: ../cache/locales.php:384 -msgid "" -"You can join using your own account or create one on the login page by " -"loging out using the cross in the top-right corner." -msgstr "" - -#: ../cache/locales.php:385 -#, php-format -msgid "Login on %s" -msgstr "" - -#: ../cache/locales.php:386 -msgid "Your nickname" -msgstr "" - -#: ../cache/locales.php:387 -msgid "Ungrouped" -msgstr "Non raggruppati" - -#: ../cache/locales.php:388 -msgid "Show disconnected contacts" -msgstr "Mostrare i contatti scollegati" - -#: ../cache/locales.php:389 -msgid "Hide disconnected contacts" -msgstr "Nascondere i contatti scollegati" - -#: ../cache/locales.php:390 -#, php-format -msgid "Show group %s" -msgstr "Mostrare il gruppo %s" - -#: ../cache/locales.php:391 -#, php-format -msgid "Hide group %s" -msgstr "Nascondere il gruppo %s" - -#: ../cache/locales.php:392 -msgid "Please enter a valid Jabber ID" -msgstr "Per favore inserire un identificatore Jabber valido" - -#: ../cache/locales.php:393 -msgid "" -"No contacts ? You can add one using the + button bellow or going to the " -"Explore page" -msgstr "" - -#: ../cache/locales.php:394 -msgid "Show/Hide" -msgstr "" - -#: ../cache/locales.php:395 -msgid "Enter the Jabber ID of your contact." -msgstr "" - -#: ../cache/locales.php:396 -msgid "Press enter to validate." -msgstr "" - -#: ../cache/locales.php:397 -msgid "JID" -msgstr "" - -#: ../cache/locales.php:398 -msgid "Results" -msgstr "" - -#: ../cache/locales.php:399 -msgid "Contact added" -msgstr "" - -#: ../cache/locales.php:401 -msgid "Contact deleted" -msgstr "" - -#: ../cache/locales.php:403 -msgid "This is not a valid url" -msgstr "" - -#: ../cache/locales.php:404 -msgid "Sharing the URL" -msgstr "" - -#: ../cache/locales.php:405 -msgid "Statistics" -msgstr "" - -#: ../cache/locales.php:406 -msgid "Since" -msgstr "" - -#: ../cache/locales.php:407 -msgid "Sessions" -msgstr "" - -#: ../cache/locales.php:409 -msgid "Monthly Subscriptions" -msgstr "" - -#: ../cache/locales.php:410 -msgid "Monthly Subscriptions Cumulated" -msgstr "" - -#: ../cache/locales.php:412 -msgid "" -"Movim is a decentralized social network, before creating a new account you " -"need to choose a server to register." -msgstr "" - -#: ../cache/locales.php:413 -msgid "Your server here ?" -msgstr "" - -#: ../cache/locales.php:414 -msgid "Contact us to add yours to the officially supported servers list" -msgstr "" - -#: ../cache/locales.php:416 -msgid "No public feed for this contact" -msgstr "" - -#: ../cache/locales.php:417 -msgid "No contact specified" -msgstr "" - -#: ../cache/locales.php:418 ../cache/locales.php:473 -msgid "Profile" -msgstr "Profilo" - -#: ../cache/locales.php:419 -msgid "Profile Updated" -msgstr "" - -#: ../cache/locales.php:420 -msgid "Profile Not Updated" -msgstr "" - -#: ../cache/locales.php:421 -msgid "Your profile is now public" -msgstr "" - -#: ../cache/locales.php:422 -msgid "Your profile is now restricted" -msgstr "" - -#: ../cache/locales.php:436 -msgid "Twitter" -msgstr "" - -#: ../cache/locales.php:437 -msgid "Skype" -msgstr "" - -#: ../cache/locales.php:438 -msgid "Yahoo" -msgstr "" - -#: ../cache/locales.php:439 -msgid "Privacy Level" -msgstr "" - -#: ../cache/locales.php:440 -msgid "Is this profile public ?" -msgstr "" - -#: ../cache/locales.php:441 -msgid "" -"Please pay attention ! By making your profile public, all the information " -"listed above will be available for all the Movim users and on the whole " -"Internet." -msgstr "" - -#: ../cache/locales.php:442 -msgid "Call" -msgstr "" - -#: ../cache/locales.php:443 -msgid "Hang up" -msgstr "" - -#: ../cache/locales.php:444 -msgid "Connection" -msgstr "" - -#: ../cache/locales.php:445 ../cache/locales.php:451 -msgid "Hung up" -msgstr "" - -#: ../cache/locales.php:446 ../cache/locales.php:452 -msgid "Your contact is busy" -msgstr "" - -#: ../cache/locales.php:447 ../cache/locales.php:453 -msgid "Declined" -msgstr "" - -#: ../cache/locales.php:448 ../cache/locales.php:454 -msgid "Remote application incompatible" -msgstr "" - -#: ../cache/locales.php:450 ../cache/locales.php:456 -msgid "Is calling you" -msgstr "" - -#: ../cache/locales.php:457 -msgid "You don't have javascript enabled. Good luck with that." -msgstr "" - -#: ../cache/locales.php:458 -msgid "" -"Movim is a kickass distributed social networking platform that protect your " -"privacy an comes with a set of awesome features." -msgstr "" - -#: ../cache/locales.php:459 -msgid "Administration" -msgstr "Amministrazione" - -#: ../cache/locales.php:460 -msgid "Home" -msgstr "Inizio" - -#: ../cache/locales.php:461 -msgid "Discover" -msgstr "Scopri" - -#: ../cache/locales.php:462 -msgid "Explore" -msgstr "Esplora" - -#: ../cache/locales.php:463 -msgid "Account Creation" -msgstr "Registrazione" - -#: ../cache/locales.php:464 +#: [hello]news [page]news msgid "News" msgstr "Notizie" -#: ../cache/locales.php:465 -msgid "Avatar" -msgstr "Avatar" - -#: ../cache/locales.php:467 -msgid "Chats" +#: [hello]news_page +msgid "Read all theses articles on the News page" msgstr "" -#: ../cache/locales.php:470 -msgid "Server" +#: [hello]blog_title +msgid "Visit your public blog" msgstr "" -#: ../cache/locales.php:471 -msgid "Public Groups" +#: [hello]blog_text +msgid "See your public posts and share them with all your contacts" msgstr "" -#: ../cache/locales.php:472 -msgid "Viewer" -msgstr "Visualizzatore" - -#: ../cache/locales.php:474 -msgid "Media" -msgstr "Media" - -#: ../cache/locales.php:475 -msgid "Blog" -msgstr "Blog" - -#: ../cache/locales.php:476 -msgid "About" -msgstr "A proposito" - -#: ../cache/locales.php:477 -msgid "Login" +#: [hello]share_title +msgid "Universal share button" msgstr "" -#: ../cache/locales.php:479 -msgid "Feed" -msgstr "Feed" - -#: ../cache/locales.php:481 -msgid "Gallery" +#: [hello]share_text +msgid "Bookmark or drag and drop the following button in your toolbar and use it on all the pages you want to share on Movim" msgstr "" -#: ../cache/locales.php:483 -msgid "Visio-conference" +#: [hello]share_button +msgid "Share on Movim" msgstr "" -#: ../cache/locales.php:484 -msgid "Pods" +#: [help]faq +msgid "Frequently Asked Questions" msgstr "" -#: ../cache/locales.php:485 -msgid "Share" +#: [banner]title +msgid "What do the little banners refer to ?" +msgstr "A cosa si riferiscono i piccoli banner?" + +#: [banner]info1 +msgid "Thanks to these five little banners, you can quickly identitfy the level of confdentiality applied to the information you provide." +msgstr "Grazie a questi cinque piccoli banner, puoi facilmente identificare il livello di confidenzialità applicato alle informazioni che pubblichi" + +#: [banner]white +msgid "White, only you can see the information" +msgstr "Bianco, solo tu puoi vedere l'informazione" + +#: [banner]green +msgid "Green, you have chosen some contacts who can see your information" +msgstr "Verde, hai scelto alcuni contatti che possono vedere la tua informazione" + +#: [banner]orange +msgid "Orange, all your contact list can see your information" +msgstr "Arancione, tutti i tuoi contatti possono vedere la tua informazione" + +#: [banner]red +msgid "Red, everybody in the XMPP network can see your information" +msgstr "Rosso, tutti nella rete XMPP possono vedere la tua informazione" + +#: [banner]black +msgid "Black, the whole Internet can see your information" +msgstr "Nero, l'intera Internet può vedere la tua informazione" + +#: [wiki]question +msgid "Looking for some documentation ?" msgstr "" -#: ../cache/locales.php:486 -msgid "Room" +#: [wiki]button +msgid "Read the Wiki" msgstr "" -#: ../cache/locales.php:487 -#, php-format -msgid "Error: %s" -msgstr "Errore: %s" - -#: ../cache/locales.php:488 -#, php-format -msgid "Cannot load file '%s'" -msgstr "Impossibile caricare il file '%s'" - -#: ../cache/locales.php:489 -#, php-format -msgid "Route error, please set all the parameters for the page %s" -msgstr "" -"Errore di percorso, per favore settare i parametri giusti per la pagina %s" - -#: ../cache/locales.php:490 -#, php-format -msgid "Requested widget '%s' doesn't exist." +#: [ml]question +msgid "Talk with us by email ?" msgstr "" -#: ../cache/locales.php:491 -#, php-format -msgid "Requested event '%s' not registered." +#: [ml]button +msgid "Join the Mailing List" msgstr "" -#: ../cache/locales.php:492 -msgid "Whoops!" +#: [chatroom]question +msgid "Chat with the team ?" msgstr "" -#: ../cache/locales.php:493 -msgid "It seem that you don't have any pictures here?" +#: [chatroom]button +msgid "Join the Chatroom" msgstr "" -#: ../cache/locales.php:494 -msgid "You can try to upload a couple by going to the Media page" +#: [init]location +msgid "Location node created" msgstr "" -#: ../cache/locales.php:495 -#, php-format -msgid "%s - About" -msgstr "%s - A proposito" +#: [init]bookmark +msgid "Bookmark node created" +msgstr "" -#: ../cache/locales.php:496 -#, php-format -msgid "%s - Account" +#: [init]vcard4 +msgid "Profile node created" +msgstr "" + +#: [init]avatar +msgid "Avatar node created" +msgstr "" + +#: [init]subscriptions +msgid "Subscriptions node created" +msgstr "" + +#: [init]microblog +msgid "Microblog node created" +msgstr "" + +#: [location]title +msgid "Location" +msgstr "" + +#: [location]wrong_postition +msgid "Wrong position" +msgstr "" + +#: [location]updated +msgid "Location updated" +msgstr "" + +#: [location]update +msgid "Update my position" +msgstr "" + +#: [login_anonymous]bad_username +msgid "Bad nickname (between 4 and 40 characters)" +msgstr "" + +#: [error]username +msgid "Wrong username" +msgstr "Nome utente errato" + +#: [error]jid +msgid "Invalid JID" +msgstr "ID Jabber non valido" + +#: [error]empty_challenge +msgid "Empty Challenge from the server" +msgstr "" + +#: [error]dns +msgid "XMPP Domain error, your account is not a correct Jabber ID" +msgstr "Errore di dominio XMPP, il tuo account non è un ID Jabber corretto" + +#: [error]data_missings +msgid "Some data are missing !" +msgstr "Mancano alcuni dati!" + +#: [error]wrong_password +msgid "Wrong password" +msgstr "Password sbagliata" + +#: [error]internal +msgid "Internal server error" +msgstr "Errore interno del server" + +#: [error]session +msgid "Session error" +msgstr "Errore di sessione" + +#: [error]account_created +msgid "Account successfully created" +msgstr "Account creato con successo" + +#: [error]xmpp_unauthorized +msgctxt "[error]xmpp_unauthorized" +msgid "Your XMPP server is unauthorized" +msgstr "" + +#: [error]mec_error +msgid "The server takes too much time to respond" +msgstr "" + +#: [error]too_old +msgid "Your web browser is too old to use with Movim." +msgstr "Il tuo browser web è troppo vecchio per usarlo con Movim" + +#: [error]websocket +msgid "Movim cannot talk with the server, please try again later (Websocket connection error)" +msgstr "" + +#: [error]impossible +msgid "Impossible login" +msgstr "" + +#: [error]title +msgid "Oops!" +msgstr "" + +#: [error]default [visio]unknown_error +msgid "Unknown error" +msgstr "Errore sconosciuto" + +#: [error]login_format +msgid "Invalid username format" +msgstr "" + +#: [error]password_format +msgid "Invalid password format" +msgstr "" + +#: [error]unauthorized +msgctxt "[error]unauthorized" +msgid "Your XMPP server is unauthorized" +msgstr "" + +#: [error]conflict +msgid "A Movim session is already open on an other device" +msgstr "" + +#: [error]wrong_account +msgid "Movim failed to authenticate. You entered wrong data" +msgstr "Movim ha fallito ad autenticarti. Devi aver inserito i dati sbagliati" + +#: [error]mechanism +msgid "Authentication mechanism not supported by Movim" +msgstr "" + +#: [error]fail_auth +msgid "The XMPP authentification failed" +msgstr "L'autenticazione XMPP è fallita" + +#: [account]title [accounts]accounts_title +msgid "Accounts" +msgstr "" + +#: [form]username +msgid "My address" +msgstr "Il mio indirizzo" + +#: [form]create_one +msgid "Create one !" +msgstr "" + +#: [form]another_account +msgid "Another account" +msgstr "" + +#: [form]no_account +msgid "No account yet ?" +msgstr "" + +#: [form]whitelist.info +msgid "You can login with accounts from theses servers" +msgstr "" + +#: [form]connected +msgid "Connected" +msgstr "" + +#: [form]population +msgid "Population" +msgstr "" + +#: [menu]empty_title +msgid "No news yet..." +msgstr "" + +#: [menu]empty +msgid "Welcome on your news feed, here you will see all the posts published by your contacts and in the groups you have subscribed." +msgstr "" + +#: [menu]refresh +msgid "Refreshing all the streams" +msgstr "" + +#: [menu]public +msgid "This post is public" +msgstr "" + +#: [affiliations]title +msgid "Manage your members" +msgstr "" + +#: [affiliations]get +msgid "Get the members" +msgstr "" + +#: [affiliations]saved +msgid "Affiliations saved" +msgstr "Affiliazioni salvati" + +#: [subscriptions]title +msgid "Manage your subscriptions" +msgstr "" + +#: [subscriptions]info +msgid "Manage the subscriptions" +msgstr "" + +#: [subscriptions]get +msgid "Get the subscriptions" +msgstr "" + +#: [subscriptions]saved +msgid "Subscriptions saved" +msgstr "" + +#: [notifs]title +msgid "Pending Invitations" +msgstr "" + +#: [notifs]wants_to_talk +msgid "%s wants to talk with you" +msgstr "" + +#: [notifs]manage +msgid "Manage" +msgstr "" + +#: [post]news_feed +msgid "News Feed" +msgstr "" + +#: [post]placeholder +msgid "Discover and register to the groups you are interested in" +msgstr "" + +#: [post]preview [page]preview +msgid "Preview" +msgstr "" + +#: [post]help [page]help +msgid "Help" +msgstr "Aiuto" + +#: [post]help_more +msgid "More help" +msgstr "" + +#: [post]help_manual +msgid "Markdown syntax manual" +msgstr "" + +#: [post]title +msgid "Title" +msgstr "" + +#: [post]content +msgid "Content" +msgstr "" + +#: [post]link +msgid "Link" +msgstr "Collegamento" + +#: [post]tags +msgid "Tags" +msgstr "" + +#: [post]valid_url [publish]valid_url +msgid "Please enter a valid url" +msgstr "" + +#: [post]no_content_preview [publish]no_content_preview +msgid "No content to preview" +msgstr "" + +#: [post]no_content [publish]no_content [post]empty +msgid "No content" +msgstr "" + +#: [post]published +msgid "Post published" +msgstr "" + +#: [post]deleted +msgid "Post deleted" +msgstr "" + +#: [post]gallery +msgid "This picture will be added to your gallery" +msgstr "" + +#: [post]hot +msgid "What's Hot" +msgstr "" + +#: [post]hot_text +msgid "Posts recently published in Groups that you are not subscribed (yet)" +msgstr "" + +#: [post]new [publish]new +msgid "New post" +msgstr "" + +#: [post]embed_tip +msgid "You can also use services like Imgur or Flickr to host your picture and paste the link here." +msgstr "" + +#: [post]repost +msgid "This is a re-post from %s" +msgstr "" + +#: [post]repost_profile +msgid "See %s profile" +msgstr "" + +#: [post]public +msgid "Publish this post publicly?" +msgstr "" + +#: [post]blog_add +msgid "Post published on your blog" +msgstr "" + +#: [post]blog_remove +msgid "Post removed from your blog" +msgstr "" + +#: [post]delete_title [post]delete +msgid "Delete this post" +msgstr "" + +#: [post]delete_text +msgid "You are going to delete this post, please confirm your action" +msgstr "" + +#: [post]comments_disabled +msgid "Comments disabled" +msgstr "" + +#: [post]comment_published +msgid "Comment published" +msgstr "" + +#: [status]disconnect +msgid "Disconnect" +msgstr "" + +#: [status]here +msgid "Your status here !" +msgstr "" + +#: [status]updated +msgid "Status updated" +msgstr "" + +#: [status]status +msgid "Status" +msgstr "" + +#: [status]presence +msgid "Presence" +msgstr "" + +#: [status]online +msgid "Online with Movim" +msgstr "" + +#: [publish]title +msgid "Publish" +msgstr "" + +#: [publish]attach +msgid "Add a file or a picture to your post" +msgstr "" + +#: [publish]no_publication +msgid "You cannot publish a post on this Group" +msgstr "" + +#: [publish]form_filled +msgid "Some fields have been filled in. Do you still want to go back and loose their content?" +msgstr "" + +#: [public_groups]shared +msgid "Shared" +msgstr "" + +#: [public_groups]added +msgid "%s has been added to your public groups" +msgstr "" + +#: [rooms]add +msgid "Add a chatroom" +msgstr "" + +#: [rooms]empty_text1 +msgid "You don't have any chatroom yet." +msgstr "" + +#: [rooms]empty_text2 +msgid "Add one by clicking on the add button in the header." +msgstr "" + +#: [chatrooms]title +msgid "Chatrooms" +msgstr "Chatrooms" + +#: [chatrooms]name_placeholder +msgid "My Favorite Room" +msgstr "" + +#: [chatrooms]users +msgid "Users in the room" +msgstr "" + +#: [chatrooms]bad_nickname +msgid "Please enter a correct nickname (2 to 40 characters)" +msgstr "" + +#: [room]anonymous_title +msgid "Public chatroom" +msgstr "" + +#: [room]no_room +msgid "Please provide a room address" +msgstr "" + +#: [room]anonymous_text1 +msgid "You are currently logued as an anonymous user." +msgstr "" + +#: [room]anonymous_text2 +msgid "You can join using your own account or create one on the login page by loging out using the cross in the top-right corner." +msgstr "" + +#: [room]anonymous_login +msgid "Login on %s" +msgstr "" + +#: [room]nick +msgid "Your nickname" +msgstr "" + +#: [roster]ungrouped +msgid "Ungrouped" +msgstr "Non raggruppati" + +#: [roster]show_disconnected +msgid "Show disconnected contacts" +msgstr "Mostrare i contatti scollegati" + +#: [roster]hide_disconnected +msgid "Hide disconnected contacts" +msgstr "Nascondere i contatti scollegati" + +#: [roster]show_group +msgid "Show group %s" +msgstr "Mostrare il gruppo %s" + +#: [roster]hide_group +msgid "Hide group %s" +msgstr "Nascondere il gruppo %s" + +#: [roster]jid_error +msgid "Please enter a valid Jabber ID" +msgstr "Per favore inserire un identificatore Jabber valido" + +#: [roster]no_contacts_title +#, fuzzy +msgid "No contacts ?" +msgstr "Contatti (%s)" + +#: [roster]no_contacts_text +msgid "You can add one using the + button bellow" +msgstr "" + +#: [roster]show_hide +msgid "Show/Hide" +msgstr "" + +#: [roster]add_contact_info1 +msgid "Enter the Jabber ID of your contact." +msgstr "" + +#: [roster]add_contact_info2 +msgid "Press enter to validate." +msgstr "" + +#: [roster]jid +msgid "JID" +msgstr "" + +#: [roster]results +msgid "Results" +msgstr "" + +#: [roster]added +msgid "Contact added" +msgstr "" + +#: [roster]deleted +msgid "Contact deleted" +msgstr "" + +#: [roster]search +msgid "Search" +msgstr "" + +#: [share]error +msgid "This is not a valid url" +msgstr "" + +#: [share]success +msgid "Sharing the URL" +msgstr "" + +#: [statistics]title +msgid "Statistics" +msgstr "" + +#: [statistics]since +msgid "Since" +msgstr "" + +#: [statistics]sessions +msgid "Sessions" +msgstr "" + +#: [statistics]monthly_sub +msgid "Monthly Subscriptions" +msgstr "" + +#: [statistics]monthly_sub_cum +msgid "Monthly Subscriptions Cumulated" +msgstr "" + +#: [subscribe]info +msgid "Movim is a decentralized social network, before creating a new account you need to choose a server to register." +msgstr "" + +#: [subscribe]server_question +msgid "Your server here ?" +msgstr "" + +#: [subscribe]server_contact +msgid "Contact us to add yours to the officially supported servers list" +msgstr "" + +#: [feed]nope +msgid "No public feed for this contact" +msgstr "" + +#: [feed]nope_contact +msgid "No contact specified" +msgstr "" + +#: [upload]title +#, fuzzy +msgid "Upload a file" +msgstr "Caricare" + +#: [upload]choose +msgid "Choose a file to upload" +msgstr "" + +#: [vcard]title [page]profile +msgid "Profile" +msgstr "Profilo" + +#: [vcard]updated +msgid "Profile Updated" +msgstr "" + +#: [vcard]not_updated +msgid "Profile Not Updated" +msgstr "" + +#: [vcard]public +msgid "Your profile is now public" +msgstr "" + +#: [vcard]restricted +msgid "Your profile is now restricted" +msgstr "" + +#: [general]nickname +#, fuzzy +msgctxt "[general]nickname" +msgid "Nickname" +msgstr "Nickname" + +#: [accounts]twitter +msgid "Twitter" +msgstr "" + +#: [accounts]skype +msgid "Skype" +msgstr "" + +#: [accounts]yahoo +msgid "Yahoo" +msgstr "" + +#: [accounts]accounts_nickname +#, fuzzy +msgctxt "[accounts]accounts_nickname" +msgid "Nickname" +msgstr "Nickname" + +#: [accounts]accounts_yahoo +#, fuzzy +msgid "Yahoo Account" msgstr "%s - Conto" -#: ../cache/locales.php:497 -#, php-format -msgid "%s - Administration Panel" -msgstr "%s -Panello di amministrazione" - -#: ../cache/locales.php:498 -#, php-format -msgid "%s - Blog" +#: [privacy]privacy_title +msgid "Privacy Level" msgstr "" -#: ../cache/locales.php:499 -#, php-format -msgid "%s - Configuration" -msgstr "%s - Configurazione" - -#: ../cache/locales.php:500 -#, php-format -msgid "%s - Discover" -msgstr "%s -Scopri" - -#: ../cache/locales.php:501 -#, php-format -msgid "%s - Explore" -msgstr "%s - Explora" - -#: ../cache/locales.php:502 -#, php-format -msgid "%s - Help Page" -msgstr "%s - Pagine di Aiuto" - -#: ../cache/locales.php:503 -#, php-format -msgid "%s - Login to Movim" -msgstr "%s - Entra su Movim" - -#: ../cache/locales.php:504 -#, php-format -msgid "%s - Welcome to Movim" -msgstr "%s - Benvenuto su Movim" - -#: ../cache/locales.php:505 -#, php-format -msgid "%s - Media" +#: [privacy]privacy_question +msgid "Is this profile public ?" msgstr "" -#: ../cache/locales.php:506 -#, php-format -msgid "%s - News" -msgstr "%s - Notizie" - -#: ../cache/locales.php:507 -#, php-format -msgid "%s - Group Configuration" +#: [privacy]privacy_info +msgid "Please pay attention ! By making your profile public, all the information listed above will be available for all the Movim users and on the whole Internet." msgstr "" -#: ../cache/locales.php:508 -#, php-format -msgid "%s - Group" -msgstr "" - -#: ../cache/locales.php:509 -#, php-format -msgid "%s - 404" -msgstr "" - -#: ../cache/locales.php:510 -#, php-format -msgid "%s - Profile" -msgstr "%s - Profilo" - -#: ../cache/locales.php:511 -#, php-format -msgid "%s - Server" -msgstr "" - -#: ../cache/locales.php:512 -msgid "Validate" -msgstr "Convalida" - -#: ../cache/locales.php:513 -msgid "Refresh" -msgstr "" - -#: ../cache/locales.php:514 -msgid "Add" -msgstr "Aggiungi" - -#: ../cache/locales.php:515 -msgid "Delete" -msgstr "" - -#: ../cache/locales.php:516 -msgid "Remove" -msgstr "" - -#: ../cache/locales.php:517 -msgid "Cancel" -msgstr "Annulla" - -#: ../cache/locales.php:518 -msgid "Close" -msgstr "Chiudi" - -#: ../cache/locales.php:519 -msgid "Update" -msgstr "" - -#: ../cache/locales.php:520 -msgid "Updating" -msgstr "" - -#: ../cache/locales.php:521 +#: [save]submit [button]submit msgid "Submit" msgstr "Sottomettere" -#: ../cache/locales.php:522 -msgid "Submitting" -msgstr "Inviando..." - -#: ../cache/locales.php:523 +#: [save]reset [button]reset msgid "Reset" msgstr "Resettare" -#: ../cache/locales.php:524 +#: [visio]hung_up +msgid "Hung up" +msgstr "" + +#: [visio]busy +msgid "Your contact is busy" +msgstr "" + +#: [visio]declined +msgid "Declined" +msgstr "" + +#: [visio]calling +msgid "Is calling you" +msgstr "" + +#: [visio]call +msgid "Call" +msgstr "" + +#: [visio]hang_up +msgid "Hang up" +msgstr "" + +#: [visio]connection +msgid "Connection" +msgstr "" + +#: [global]no_js +msgid "You don't have javascript enabled. Good luck with that." +msgstr "" + +#: [global]description +msgid "Movim is a kickass distributed social networking platform that protect your privacy an comes with a set of awesome features." +msgstr "" + +#: [page]administration +msgid "Administration" +msgstr "Amministrazione" + +#: [page]home +msgid "Home" +msgstr "Inizio" + +#: [page]discover +msgid "Discover" +msgstr "Scopri" + +#: [page]explore +msgid "Explore" +msgstr "Esplora" + +#: [page]account_creation +msgid "Account Creation" +msgstr "Registrazione" + +#: [page]avatar +msgid "Avatar" +msgstr "Avatar" + +#: [page]chats +msgid "Chats" +msgstr "" + +#: [page]server +msgid "Server" +msgstr "" + +#: [page]public_groups +msgid "Public Groups" +msgstr "" + +#: [page]viewer +msgid "Viewer" +msgstr "Visualizzatore" + +#: [page]media +msgid "Media" +msgstr "Media" + +#: [page]blog +msgid "Blog" +msgstr "Blog" + +#: [page]about +msgid "About" +msgstr "A proposito" + +#: [page]login +msgid "Login" +msgstr "" + +#: [page]feed +msgid "Feed" +msgstr "Feed" + +#: [page]gallery +msgid "Gallery" +msgstr "" + +#: [page]visio +msgid "Visio-conference" +msgstr "" + +#: [page]pods +msgid "Pods" +msgstr "" + +#: [page]share +msgid "Share" +msgstr "" + +#: [page]room +msgid "Room" +msgstr "" + +#: [error]error +msgid "Error: %s" +msgstr "Errore: %s" + +#: [error]cannot_load_file +msgid "Cannot load file '%s'" +msgstr "Impossibile caricare il file '%s'" + +#: [error]route +msgid "Route error, please set all the parameters for the page %s" +msgstr "Errore di percorso, per favore settare i parametri giusti per la pagina %s" + +#: [error]widget_load_error +msgid "Requested widget '%s' doesn't exist." +msgstr "" + +#: [error]widget_call_error +msgid "Requested event '%s' not registered." +msgstr "" + +#: [error]whoops +msgid "Whoops!" +msgstr "" + +#: [error]media_not_found +msgid "It seem that you don't have any pictures here?" +msgstr "" + +#: [error]media_ask_upload +msgid "You can try to upload a couple by going to the Media page" +msgstr "" + +#: [title]about +msgid "%s - About" +msgstr "%s - A proposito" + +#: [title]account +msgid "%s - Account" +msgstr "%s - Conto" + +#: [title]administration +msgid "%s - Administration Panel" +msgstr "%s -Panello di amministrazione" + +#: [title]blog +msgid "%s - Blog" +msgstr "" + +#: [title]configuration +msgid "%s - Configuration" +msgstr "%s - Configurazione" + +#: [title]discover +msgid "%s - Discover" +msgstr "%s -Scopri" + +#: [title]explore +msgid "%s - Explore" +msgstr "%s - Explora" + +#: [title]help +msgid "%s - Help Page" +msgstr "%s - Pagine di Aiuto" + +#: [title]login +msgid "%s - Login to Movim" +msgstr "%s - Entra su Movim" + +#: [title]main +msgid "%s - Welcome to Movim" +msgstr "%s - Benvenuto su Movim" + +#: [title]media +msgid "%s - Media" +msgstr "" + +#: [title]news +msgid "%s - News" +msgstr "%s - Notizie" + +#: [title]node_configuration +msgid "%s - Group Configuration" +msgstr "" + +#: [title]node +msgid "%s - Group" +msgstr "" + +#: [title]not_found +msgid "%s - 404" +msgstr "" + +#: [title]profile +msgid "%s - Profile" +msgstr "%s - Profilo" + +#: [title]server +msgid "%s - Server" +msgstr "" + +#: [button]validate +msgid "Validate" +msgstr "Convalida" + +#: [button]refresh +msgid "Refresh" +msgstr "" + +#: [button]add +msgid "Add" +msgstr "Aggiungi" + +#: [button]delete +msgid "Delete" +msgstr "" + +#: [button]cancel +msgid "Cancel" +msgstr "Annulla" + +#: [button]close +msgid "Close" +msgstr "Chiudi" + +#: [button]update +msgid "Update" +msgstr "" + +#: [button]updating +msgid "Updating" +msgstr "" + +#: [button]submitting +msgid "Submitting" +msgstr "Inviando..." + +#: [button]register msgid "Register" msgstr "" -#: ../cache/locales.php:525 +#: [button]unregister msgid "Unregister" msgstr "" -#: ../cache/locales.php:526 +#: [button]save msgid "Save" msgstr "" -#: ../cache/locales.php:527 +#: [button]clear msgid "Clear" msgstr "" -#: ../cache/locales.php:528 +#: [button]upload msgid "Upload" msgstr "Caricare" -#: ../cache/locales.php:529 +#: [button]come_in msgid "Come in!" msgstr "Entra!" -#: ../cache/locales.php:530 +#: [button]connecting msgid "Connecting" msgstr "" -#: ../cache/locales.php:531 +#: [button]bool_yes msgid "Yes" msgstr "Sì" -#: ../cache/locales.php:532 +#: [button]bool_no msgid "No" msgstr "No" -#: ../cache/locales.php:534 +#: [button]return msgid "Return" msgstr "" -#: ../cache/locales.php:535 +#: [button]accept msgid "Accept" msgstr "Accetta" -#: ../cache/locales.php:536 +#: [button]refuse msgid "Refuse" msgstr "" -#: ../cache/locales.php:537 +#: [button]next msgid "Next" msgstr "" -#: ../cache/locales.php:538 +#: [button]previous msgid "Previous" msgstr "" -#: ../cache/locales.php:539 -#, php-format +#: [step]step msgid "Step %s" msgstr "" -#: ../cache/locales.php:542 +#: [day]title msgid "Day" msgstr "Giorno" -#: ../cache/locales.php:543 +#: [day]monday msgid "Monday" msgstr "Lunedì" -#: ../cache/locales.php:544 +#: [day]tuesday msgid "Tuesday" msgstr "Martedì" -#: ../cache/locales.php:545 +#: [day]wednesday msgid "Wednesday" msgstr "Mercoledi" -#: ../cache/locales.php:546 +#: [day]thursday msgid "Thursday" msgstr "Giovedì" -#: ../cache/locales.php:547 +#: [day]friday msgid "Friday" msgstr "Venerdì" -#: ../cache/locales.php:548 +#: [day]saturday msgid "Saturday" msgstr "Sabato" -#: ../cache/locales.php:549 +#: [day]sunday msgid "Sunday" msgstr "" -#: ../cache/locales.php:550 ../cache/locales.php:559 +#: [gender]nil +#, fuzzy +msgctxt "[gender]nil" msgid "None" msgstr "Nessuno" -#: ../cache/locales.php:551 +#: [gender]male msgid "Male" msgstr "Maschio" -#: ../cache/locales.php:552 +#: [gender]female msgid "Female" msgstr "Femmina" -#: ../cache/locales.php:553 +#: [gender]other msgid "Other" msgstr "Altro" -#: ../cache/locales.php:554 +#: [client]bot msgid "Bot" msgstr "Bot" -#: ../cache/locales.php:555 +#: [client]desktop msgid "Desktop" msgstr "Scrivania" -#: ../cache/locales.php:556 +#: [client]phone msgid "Phone" msgstr "Telefono" -#: ../cache/locales.php:557 +#: [client]web msgid "Web" msgstr "" -#: ../cache/locales.php:558 +#: [client]registered msgid "Registered" msgstr "" -#: ../cache/locales.php:560 +#: [marital]nil +#, fuzzy +msgctxt "[marital]nil" +msgid "None" +msgstr "Nessuno" + +#: [marital]single msgid "Single" msgstr "Single" -#: ../cache/locales.php:561 +#: [marital]relationship msgid "In a relationship" msgstr "Impegnato in una relazione" -#: ../cache/locales.php:562 +#: [marital]married msgid "Married" msgstr "Sposato/a" -#: ../cache/locales.php:563 +#: [marital]divorced msgid "Divorced" msgstr "Divorziato/a" -#: ../cache/locales.php:564 +#: [marital]widowed msgid "Widowed" msgstr "Vedovo/a" -#: ../cache/locales.php:565 +#: [marital]cohabiting msgid "Cohabiting" msgstr "Coabito" -#: ../cache/locales.php:566 +#: [marital]union msgid "Civil Union" msgstr "Unione Civile" -#: ../cache/locales.php:567 +#: [flag]white msgid "Not shared" msgstr "Non condiviso" -#: ../cache/locales.php:568 +#: [flag]green msgid "Shared with one contact" msgstr "Condiviso con un contatto" -#: ../cache/locales.php:569 +#: [flag]orange msgid "Shared with all contacts" msgstr "Condiviso con tutti i contatti" -#: ../cache/locales.php:570 +#: [flag]red msgid "Shared with the XMPP network" msgstr "Condiviso con la rete XMPP" -#: ../cache/locales.php:571 +#: [flag]black msgid "Shared with the whole Internet" msgstr "Condiviso con tutti" -#: ../cache/locales.php:572 +#: [presence]online msgid "Online" msgstr "In linea" -#: ../cache/locales.php:573 +#: [presence]away msgid "Away" msgstr "Assente" -#: ../cache/locales.php:574 +#: [presence]dnd msgid "Do Not Disturb" msgstr "Non disturbare" -#: ../cache/locales.php:575 +#: [presence]xa msgid "Extended Away" msgstr "Assenza prolungata" -#: ../cache/locales.php:576 +#: [presence]offline msgid "Offline" msgstr "Non in linea" -#: ../cache/locales.php:577 +#: [presence]error msgid "Error" msgstr "Errore" -#: ../cache/locales.php:578 +#: [mood]afraid msgid "afraid" msgstr "impaurito" -#: ../cache/locales.php:579 +#: [mood]amazed msgid "amazed" msgstr "stupito" -#: ../cache/locales.php:580 +#: [mood]amorous msgid "amorous" msgstr "amoroso" -#: ../cache/locales.php:581 +#: [mood]angry msgid "angry" msgstr "arrabbiato" -#: ../cache/locales.php:582 +#: [mood]annoyed msgid "annoyed" msgstr "infastidito" -#: ../cache/locales.php:583 +#: [mood]anxious msgid "anxious" msgstr "ansioso" -#: ../cache/locales.php:584 +#: [mood]aroused msgid "aroused" msgstr "suscitato" -#: ../cache/locales.php:585 +#: [mood]ashamed msgid "ashamed" msgstr "vergonato" -#: ../cache/locales.php:586 +#: [mood]bored msgid "bored" msgstr "annoiato" -#: ../cache/locales.php:587 +#: [mood]brave msgid "brave" msgstr "bravo" -#: ../cache/locales.php:588 +#: [mood]calm msgid "calm" msgstr "tranquillo" -#: ../cache/locales.php:589 +#: [mood]cautious msgid "cautious" msgstr "prudente" -#: ../cache/locales.php:590 +#: [mood]cold msgid "cold" msgstr "freddo" -#: ../cache/locales.php:591 +#: [mood]confident msgid "confident" msgstr "fiducioso" -#: ../cache/locales.php:592 +#: [mood]confused msgid "confused" msgstr "confuso" -#: ../cache/locales.php:593 +#: [mood]contemplative msgid "contemplative" msgstr "contemplativo" -#: ../cache/locales.php:594 +#: [mood]contented msgid "contented" msgstr "contento" -#: ../cache/locales.php:595 +#: [mood]cranky msgid "cranky" msgstr "irritabile" -#: ../cache/locales.php:596 +#: [mood]crazy msgid "crazy" msgstr "pazzo" -#: ../cache/locales.php:597 +#: [mood]creative msgid "creative" msgstr "creativo" -#: ../cache/locales.php:598 +#: [mood]curious msgid "curious" msgstr "curioso" -#: ../cache/locales.php:599 +#: [mood]dejected msgid "dejected" msgstr "abbattuto" -#: ../cache/locales.php:600 +#: [mood]depressed msgid "depressed" msgstr "depresso" -#: ../cache/locales.php:601 +#: [mood]disappointed msgid "disappointed" msgstr "deluso" -#: ../cache/locales.php:602 +#: [mood]disgusted msgid "disgusted" msgstr "disgustato" -#: ../cache/locales.php:603 +#: [mood]dismayed msgid "dismayed" msgstr "sgomentato" -#: ../cache/locales.php:604 +#: [mood]distracted msgid "distracted" msgstr "distratto" -#: ../cache/locales.php:605 +#: [mood]embarrassed msgid "embarrassed" msgstr "imbarazzato" -#: ../cache/locales.php:606 +#: [mood]envious msgid "envious" msgstr "invidioso" -#: ../cache/locales.php:607 +#: [mood]excited msgid "excited" msgstr "emozionato" -#: ../cache/locales.php:608 +#: [mood]flirtatious msgid "flirtatious" msgstr "provocante" -#: ../cache/locales.php:609 +#: [mood]frustated msgid "frustated" msgstr "" -#: ../cache/locales.php:610 +#: [mood]grateful msgid "grateful" msgstr "grato" -#: ../cache/locales.php:611 +#: [mood]grieving msgid "grieving" msgstr "triste" -#: ../cache/locales.php:612 +#: [mood]grumpy msgid "grumpy" msgstr "scontroso" -#: ../cache/locales.php:613 +#: [mood]guilty msgid "guilty" msgstr "colpevole" -#: ../cache/locales.php:614 +#: [mood]happy msgid "happy" msgstr "felice" -#: ../cache/locales.php:615 +#: [mood]hopeful msgid "hopeful" msgstr "fiducioso" -#: ../cache/locales.php:616 +#: [mood]hot msgid "hot" msgstr "caldo" -#: ../cache/locales.php:617 +#: [mood]humbled msgid "humbled" msgstr "umile" -#: ../cache/locales.php:618 +#: [mood]humiliated msgid "humiliated" msgstr "umiliato" -#: ../cache/locales.php:619 +#: [mood]hungry msgid "hungry" msgstr "affamato" -#: ../cache/locales.php:620 +#: [mood]hurt msgid "hurt" msgstr "ferito" -#: ../cache/locales.php:621 +#: [mood]impressed msgid "impressed" msgstr "impressionato" -#: ../cache/locales.php:622 +#: [mood]in_awe msgid "in awe" msgstr "incantato" -#: ../cache/locales.php:623 +#: [mood]in_love msgid "in love" msgstr "innamorato" -#: ../cache/locales.php:624 +#: [mood]indignant msgid "indignant" msgstr "" -#: ../cache/locales.php:625 +#: [mood]interested msgid "interested" msgstr "interessato" -#: ../cache/locales.php:626 +#: [mood]intoxicated msgid "intoxicated" msgstr "ubriaco" -#: ../cache/locales.php:627 +#: [mood]invincible msgid "invincible" msgstr "invincibile" -#: ../cache/locales.php:628 +#: [mood]jealous msgid "jealous" msgstr "geloso" -#: ../cache/locales.php:629 +#: [mood]lonely msgid "lonely" msgstr "solo" -#: ../cache/locales.php:630 +#: [mood]lost msgid "lost" msgstr "perso" -#: ../cache/locales.php:631 +#: [mood]lucky msgid "lucky" msgstr "fortunato" -#: ../cache/locales.php:632 +#: [mood]mean msgid "mean" msgstr "meschino" -#: ../cache/locales.php:633 +#: [mood]moody msgid "moody" msgstr "di cattivo umore" -#: ../cache/locales.php:634 +#: [mood]nervous msgid "nervous" msgstr "nervoso" -#: ../cache/locales.php:635 +#: [mood]neutral msgid "neutral" msgstr "neutrale" -#: ../cache/locales.php:636 +#: [mood]offended msgid "offended" msgstr "offeso" -#: ../cache/locales.php:637 +#: [mood]outraged msgid "outraged" msgstr "oltraggiato" -#: ../cache/locales.php:638 +#: [mood]playful msgid "playful" msgstr "scherzoso" -#: ../cache/locales.php:639 +#: [mood]proud msgid "proud" msgstr "orgoglioso" -#: ../cache/locales.php:640 +#: [mood]relaxed msgid "relaxed" msgstr "rilassato" -#: ../cache/locales.php:641 +#: [mood]relieved msgid "relieved" msgstr "sollevato" -#: ../cache/locales.php:642 -msgid "remorseful" -msgstr "contrito" - -#: ../cache/locales.php:643 +#: [mood]restless msgid "restless" msgstr "agitato" -#: ../cache/locales.php:644 +#: [mood]sad msgid "sad" msgstr "triste" -#: ../cache/locales.php:645 +#: [mood]sarcastic msgid "sarcastic" msgstr "sarcastico" -#: ../cache/locales.php:646 +#: [mood]satisfied msgid "satisfied" msgstr "soddisfatto" -#: ../cache/locales.php:647 +#: [mood]serious msgid "serious" msgstr "serio" -#: ../cache/locales.php:648 +#: [mood]shocked msgid "shocked" msgstr "sciocato" -#: ../cache/locales.php:649 +#: [mood]shy msgid "shy" msgstr "timido" -#: ../cache/locales.php:650 +#: [mood]sick msgid "sick" msgstr "ammalato" -#: ../cache/locales.php:651 +#: [mood]sleepy msgid "sleepy" msgstr "addormentato" -#: ../cache/locales.php:652 +#: [mood]spontaneous msgid "spontaneous" msgstr "spontaneo" -#: ../cache/locales.php:653 +#: [mood]stressed msgid "stressed" msgstr "stressato" -#: ../cache/locales.php:654 +#: [mood]strong msgid "strong" msgstr "forte" -#: ../cache/locales.php:655 +#: [mood]surprised msgid "surprised" msgstr "sorpreso" -#: ../cache/locales.php:656 +#: [mood]thankful msgid "thankful" msgstr "riconoscente" -#: ../cache/locales.php:657 +#: [mood]thirsty msgid "thirsty" msgstr "assetato" -#: ../cache/locales.php:658 +#: [mood]tired msgid "tired" msgstr "stanco" -#: ../cache/locales.php:659 +#: [mood]undefined msgid "undefined" msgstr "non definito" -#: ../cache/locales.php:660 +#: [mood]weak msgid "weak" msgstr "debole" -#: ../cache/locales.php:661 +#: [mood]worried msgid "worried" msgstr "preoccupato" -#: ../cache/locales.php:662 +#: [month]title msgid "Month" msgstr "Mese" -#: ../cache/locales.php:663 +#: [month]january msgid "January" msgstr "gennaio" -#: ../cache/locales.php:664 +#: [month]february msgid "February" msgstr "febbraio" -#: ../cache/locales.php:665 +#: [month]march msgid "March" msgstr "marzo" -#: ../cache/locales.php:666 +#: [month]april msgid "April" msgstr "aprile" -#: ../cache/locales.php:667 +#: [month]may msgid "May" msgstr "maggio" -#: ../cache/locales.php:668 +#: [month]june msgid "June" msgstr "giugno" -#: ../cache/locales.php:669 +#: [month]july msgid "July" msgstr "luglio" -#: ../cache/locales.php:670 +#: [month]august msgid "August" msgstr "agosto" -#: ../cache/locales.php:671 +#: [month]september msgid "September" msgstr "settembre" -#: ../cache/locales.php:672 +#: [month]october msgid "October" msgstr "ottobre" -#: ../cache/locales.php:673 +#: [month]november msgid "November" msgstr "novembre" -#: ../cache/locales.php:674 +#: [month]december msgid "December" msgstr "dicembre" -#: ../cache/locales.php:675 +#: [year]title msgid "Year" msgstr "Anno" -#: ../cache/locales.php:676 +#: [date]today msgid "Today" msgstr "Oggi" -#: ../cache/locales.php:677 +#: [date]tomorrow msgid "Tomorrow" msgstr "Domani" -#: ../cache/locales.php:678 +#: [date]yesterday msgid "Yesterday" msgstr "Ieri" -#: ../cache/locales.php:679 -#, php-format -msgid " %d days ago" +#: [date]ago +#, fuzzy +msgid "%d days ago" msgstr " %d giorni fa" -#: ../cache/locales.php:680 +#: [date]day msgid "day" msgstr "giorno" -#: ../cache/locales.php:682 +#: [post]whats_new msgid "What's new ?" msgstr "" -#: ../cache/locales.php:683 +#: [post]place msgid "Place" msgstr "" -#: ../cache/locales.php:684 +#: [post]by msgid "by" msgstr "" -#: ../cache/locales.php:685 +#: [post]geolocalisation msgid "Geolocalisation" msgstr "" -#: ../cache/locales.php:686 +#: [post]email msgid "email" msgstr "" -#: ../cache/locales.php:688 +#: [post]no_comments msgid "No comments yet" msgstr "" -#: ../cache/locales.php:689 +#: [post]no_comments_stream msgid "No comments stream" msgstr "" -#: ../cache/locales.php:690 +#: [post]no_load msgid "Your feed cannot be loaded." msgstr "Il tuo feed non può essere caricato" -#: ../cache/locales.php:691 +#: [post]older msgid "Get older posts" msgstr "Carica i post più vecchi" -#: ../cache/locales.php:692 -#, php-format +#: [post]new_items msgid "%s new items" msgstr "" -#: ../cache/locales.php:693 +#: [post]comment_error msgid "Comment publication error" msgstr "" -#: ../cache/locales.php:694 +#: [post]comments_older msgid "Show the older comments" msgstr "" -#: ../cache/locales.php:695 -msgid "Loading comments ..." -msgstr "" +#: [post]comments_loading +#, fuzzy +msgid "Loading comments..." +msgstr "Caricando il tuo feed..." -#: ../cache/locales.php:696 +#: [post]comments_get msgid "Get the comments" msgstr "" -#: ../cache/locales.php:697 +#: [post]comment_add msgid "Add a comment" msgstr "" -#: ../cache/locales.php:698 +#: [post]share msgid "Share with" msgstr "" -#: ../cache/locales.php:699 +#: [post]share_everyone msgid "Everyone" msgstr "" -#: ../cache/locales.php:700 +#: [post]share_your_contacts msgid "Your contacts" msgstr "" -#: ../cache/locales.php:702 +#: [post]updated msgid "Updated" msgstr "" -#: ../cache/locales.php:703 +#: [post]content_not_found msgid "Content not found" msgstr "" -#: ../cache/locales.php:704 +#: [post]default_title msgid "Contact publication" msgstr "" -#: ../cache/locales.php:705 +#: [post]comments msgid "Comments" msgstr "" -#: ../cache/locales.php:706 +#: [api]error msgid "The API is not reachable, try again later" msgstr "" -#: ../cache/locales.php:707 +#: [field]type_here msgid "Type here" msgstr "" +#~ msgid "Environment" +#~ msgstr "Ambiente" + +#~ msgid "remorseful" +#~ msgstr "contrito" + #~ msgid "Logout" #~ msgstr "Disconnettiti" -#, php-format #~ msgid "%s - Account Creation" #~ msgstr "%s - Registrazione" -#, php-format #~ msgid "Movim requires the %s extension." #~ msgstr "Movim necessita l'estensione %s" @@ -2614,66 +2744,41 @@ msgstr "" #~ msgid "Movim's folder must be writable." #~ msgstr "La cartella di Movim deve avere i permessi di scrittura" -#, php-format #~ msgid "Install %s and %s packages" #~ msgstr "Installa %s e i pacchetti %s" #~ msgid "Update your PHP version or contact your server administrator" -#~ msgstr "" -#~ "Aggiorna la tua versione di PHP oppure contatta l'amministratore del tuo " -#~ "server" +#~ msgstr "Aggiorna la tua versione di PHP oppure contatta l'amministratore del tuo server" #~ msgid "Enable read and write rights on Movim's root folder" -#~ msgstr "" -#~ "Imposta i permessi di lettura e scrittura sulla cartella root di Movim" +#~ msgstr "Imposta i permessi di lettura e scrittura sulla cartella root di Movim" #~ msgid "PHP version mismatch. Movim requires PHP 5.3 minimum." -#~ msgstr "" -#~ "Discrepanza nella versione di PHP. Movim richiede PHP 5.3 o maggiore." +#~ msgstr "Discrepanza nella versione di PHP. Movim richiede PHP 5.3 o maggiore." -#, php-format #~ msgid "Install the %s package" #~ msgstr "Installa il pacchetto %s" -#~ msgid "" -#~ "Some errors were detected. Please correct them for the installation to " -#~ "proceed." -#~ msgstr "" -#~ "Alcuni errori sono stati rilevati. Per favore correggili prima che " -#~ "l'installazione proceda." +#~ msgid "Some errors were detected. Please correct them for the installation to proceed." +#~ msgstr "Alcuni errori sono stati rilevati. Per favore correggili prima che l'installazione proceda." -#~ msgid "" -#~ "Keep in mind that Movim is still under development and will handle many " -#~ "personal details. Its use can potentially endanger your data. Always pay " -#~ "attention to information that you submit." -#~ msgstr "" -#~ "Tieni in considerazione che Movim è ancora in sviluppo e tratterà molte " -#~ "informazioni personali. Il suo utilizzo può potenzialmente mettere in " -#~ "pericolo le tue informazioni. Stai sempre attendo alle informazioni che " -#~ "fornisci." +#~ msgid "Keep in mind that Movim is still under development and will handle many personal details. Its use can potentially endanger your data. Always pay attention to information that you submit." +#~ msgstr "Tieni in considerazione che Movim è ancora in sviluppo e tratterà molte informazioni personali. Il suo utilizzo può potenzialmente mettere in pericolo le tue informazioni. Stai sempre attendo alle informazioni che fornisci." -#~ msgid "" -#~ "Before you enjoy your social network, a few adjustements are required." -#~ msgstr "" -#~ "Prima di goderti il tuo social network, alcune modifiche sono richieste." +#~ msgid "Before you enjoy your social network, a few adjustements are required." +#~ msgstr "Prima di goderti il tuo social network, alcune modifiche sono richieste." #~ msgid "Thank you for downloading Movim!" #~ msgstr "Grazie per aver scaricato Movim!" -#, php-format #~ msgid "Couldn't create configuration file '%s'." #~ msgstr "Impossibile creare il file di configurazione '%s'" -#, php-format #~ msgid "Couldn't create directory '%s'." #~ msgstr "Impossibile creare la cartella '%s'" -#~ msgid "" -#~ "The following requirements were not met. Please make sure they are all " -#~ "satisfied in order to install Movim." -#~ msgstr "" -#~ "I seguenti requisiti non sono stati riscontrati. Per favore assicurati che " -#~ "siano soddisfatti per poter installare Movim." +#~ msgid "The following requirements were not met. Please make sure they are all satisfied in order to install Movim." +#~ msgstr "I seguenti requisiti non sono stati riscontrati. Per favore assicurati che siano soddisfatti per poter installare Movim." #~ msgid "Compatibility Test" #~ msgstr "Test di compatibilità" @@ -2702,7 +2807,6 @@ msgstr "" #~ msgid "Actual version : " #~ msgstr "Versione corrente " -#, php-format #~ msgid "Please remove the %s folder in order to complete the installation" #~ msgstr "Per completare l'installazione rimuovere la cartella %s" @@ -2730,21 +2834,15 @@ msgstr "" #~ msgid "or" #~ msgstr "oppure" -#, php-format #~ msgid "You can now access your shiny Movim instance %sJump In !%s" -#~ msgstr "" -#~ "Puoi ora accedere alla tua splendente istanza Movim %sTuffati dentro!%s" +#~ msgstr "Puoi ora accedere alla tua splendente istanza Movim %sTuffati dentro!%s" #~ msgid "Database Movim schema installed" #~ msgstr "Installato lo schema del database Movim" -#~ msgid "Database Detected" -#~ msgstr "Database Trovato" - #~ msgid "Could not communicate with the XMPP server" #~ msgstr "Impossibile comunicare con il server XMPP" -#, php-format #~ msgid "%s - Add An Account" #~ msgstr "%s - Aggiungi un account" @@ -2770,15 +2868,10 @@ msgstr "" #~ msgstr "8 caratteri" #~ msgid "A capital letter, a digit and a special character are recommended" -#~ msgstr "" -#~ "Sono consigliati una lettera maiuscola, un numero ed un carattere spaciale" +#~ msgstr "Sono consigliati una lettera maiuscola, un numero ed un carattere spaciale" -#~ msgid "" -#~ "Firstly fill in this blank with a brand new account ID, this address will " -#~ "follow you on all the Movim network !" -#~ msgstr "" -#~ "Prima di tutto compila questo spazio con un nuovo ID utente, questo " -#~ "indirizzo ti seguirà su tutta la rete Movim!" +#~ msgid "Firstly fill in this blank with a brand new account ID, this address will follow you on all the Movim network !" +#~ msgstr "Prima di tutto compila questo spazio con un nuovo ID utente, questo indirizzo ti seguirà su tutta la rete Movim!" #~ msgid "Add your login informations" #~ msgstr "Inserisci le tue informazioni di login" @@ -2786,14 +2879,9 @@ msgstr "" #~ msgid "Create" #~ msgstr "Crea" -#~ msgid "Remove this contact" -#~ msgstr "Elimina questo contatto" - -#, php-format #~ msgid "Cannot open log file '%s'" #~ msgstr "Impossibile aprire il file di log '%s'" -#, php-format #~ msgid "jid '%s' is incorrect" #~ msgstr "Il jabber id '%s' é sbagliato" @@ -2803,71 +2891,35 @@ msgstr "" #~ msgid "empty" #~ msgstr "vuoto" -#~ msgid "Loading your feed ..." -#~ msgstr "Caricando il tuo feed..." - #~ msgid "Client Name" #~ msgstr "Nome client" #~ msgid "Client Type" #~ msgstr "Tipologia client" -#~ msgid "" -#~ "Your server doesn't support post publication, you can only read contact's " -#~ "feeds" -#~ msgstr "" -#~ "Il tuo server non supporta la pubblicazione dei post, puoi solo leggere i " -#~ "feed dei tuoi contatti" +#~ msgid "Your server doesn't support post publication, you can only read contact's feeds" +#~ msgstr "Il tuo server non supporta la pubblicazione dei post, puoi solo leggere i feed dei tuoi contatti" #~ msgid "My Posts" #~ msgstr "I miei post" -#, php-format -#~ msgid "" -#~ "Visit the page %s What is Movim ? %s to know more about the project, its " -#~ "aims and understand how it works." -#~ msgstr "" -#~ "Visita la pagina %s Cosa è Movim ? %s per sapere di più sul progetto, è " -#~ "dedicata a farti capire come funziona." +#~ msgid "Visit the page %s What is Movim ? %s to know more about the project, its aims and understand how it works." +#~ msgstr "Visita la pagina %s Cosa è Movim ? %s per sapere di più sul progetto, è dedicata a farti capire come funziona." #~ msgid "I can't find the answer to my question here" #~ msgstr "Non riesco a trovare la soluzione alla mia domanda qui" -#, php-format -#~ msgid "" -#~ "Go to the %s to the Frequently Asked Questions %s or come ask your question " -#~ "on the official chatroom %s or via our mailing-list (%s see the dedicated " -#~ "page %s)." -#~ msgstr "" -#~ "Vai alle %s domande chieste frequentemente (FAQ) %s o vieni a fare le tue " -#~ "domande sulla chatroom ufficiale %s o tramite la nostra mailing-list (%s " -#~ "vedi la pagina dedicata %s)." +#~ msgid "Go to the %s to the Frequently Asked Questions %s or come ask your question on the official chatroom %s or via our mailing-list (%s see the dedicated page %s)." +#~ msgstr "Vai alle %s domande chieste frequentemente (FAQ) %s o vieni a fare le tue domande sulla chatroom ufficiale %s o tramite la nostra mailing-list (%s vedi la pagina dedicata %s)." -#, php-format -#~ msgid "" -#~ "Although Movim is evolving fast, many (many) features are missing. Be " -#~ "patient ;). You can have a look %s at next versions's roadmaps %s to know if " -#~ "the one you want is on its way." -#~ msgstr "" -#~ "Nonostante Movim si stia sviluppando velocemente, molte (molte) " -#~ "caratteristiche mancano. Sii paziente ;). Puoi guardare %s alla roadmap " -#~ "della prossima versione %s per scoprire se una delle cose che vuoi sta " -#~ "venendo sviluppata." +#~ msgid "Although Movim is evolving fast, many (many) features are missing. Be patient ;). You can have a look %s at next versions's roadmaps %s to know if the one you want is on its way." +#~ msgstr "Nonostante Movim si stia sviluppando velocemente, molte (molte) caratteristiche mancano. Sii paziente ;). Puoi guardare %s alla roadmap della prossima versione %s per scoprire se una delle cose che vuoi sta venendo sviluppata." -#, php-format -#~ msgid "" -#~ "Don't forget that Movim is an open source project, a helping hand is always " -#~ "welcome (see %s Can I participate %s)" -#~ msgstr "" -#~ "Non scordarti che Movim è un progetto open source, una mano è sempre " -#~ "benvenuta (vedi %s Posso partecipare %s)" +#~ msgid "Don't forget that Movim is an open source project, a helping hand is always welcome (see %s Can I participate %s)" +#~ msgstr "Non scordarti che Movim è un progetto open source, una mano è sempre benvenuta (vedi %s Posso partecipare %s)" -#~ msgid "" -#~ "Some features are missing/I can't do everything I used to do on other social " -#~ "networks" -#~ msgstr "" -#~ "Alcune caratteristiche mancano/Non posso fare tutto quello che ero solito " -#~ "fare su altri social netowk" +#~ msgid "Some features are missing/I can't do everything I used to do on other social networks" +#~ msgstr "Alcune caratteristiche mancano/Non posso fare tutto quello che ero solito fare su altri social netowk" #~ msgid "The current BOSH URL in invalid" #~ msgstr "Il corrente indirizzo BOSH è invalido" @@ -2884,10 +2936,6 @@ msgstr "" #~ msgid "Decline" #~ msgstr "Rifiuta" -#, php-format -#~ msgid "Contacts (%s)" -#~ msgstr "Contatti (%s)" - #~ msgid "No profile yet ?" #~ msgstr "Ancora nessun profilo?" @@ -2912,11 +2960,6 @@ msgstr "" #~ msgid "ultimate" #~ msgstr "ultimo" -#, php-format -#~ msgid "This server hosts %s accounts" -#~ msgstr "Questo server ospita %s account" - -#, php-format #~ msgid "Cannot load element value '%s'" #~ msgstr "Impossibile caricare il valore dell'elemento '%s'" @@ -2926,15 +2969,12 @@ msgstr "" #~ msgid "Invite this user" #~ msgstr "Invita questo utente" -#, php-format #~ msgid "Bosh connection failed with error '%s'" #~ msgstr "Connessione Bosh fallita con errore '%s'" -#, php-format #~ msgid "Database connection failed with error '%s'" #~ msgstr "Connessione al database fallita con errore '%s'" -#, php-format #~ msgid "XMPP connection through Bosh failed with error '%s'" #~ msgstr "Connessione XMPP tramite Bosh fallita con errore '%s'" diff --git a/sources/locales/ja.po b/sources/locales/ja.po index fa70137..1c5d9b3 100644 --- a/sources/locales/ja.po +++ b/sources/locales/ja.po @@ -1,2593 +1,2739 @@ # Japanese translations for Movim package. # This file is distributed under the same license as the Movim package. # This file was translated from CodingTeam at . +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/About/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Account/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AccountNext/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AdHoc/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AdminDB/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AdminMain/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AdminTest/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Api/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Avatar/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Blog/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Bookmark/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Chat/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Chats/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/ConfigData/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Config/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Contact/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Group/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Groups/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Header/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Hello/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Help/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Init/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Location/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/LoginAnonymous/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Login/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Menu/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/NodeAffiliations/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/NodeSubscriptions/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Notifs/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Post/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Presence/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Publish/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/PubsubSubscriptionConfig/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Rooms/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Roster/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Share/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Statistics/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Subscribe/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Syndication/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Upload/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Vcard4/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/VisioExt/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Visio/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../locales/locales.ini msgid "" msgstr "" "Project-Id-Version: Movim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-06-08 22:06+0200\n" +"POT-Creation-Date: 2015-08-20 15:17+0200\n" "PO-Revision-Date: 2015-06-09 12:20+0000\n" "Last-Translator: edhelas \n" "Language-Team: LANGUAGE \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2015-06-18 21:08+0000\n" "X-Generator: Launchpad (build 17570)\n" -"Language: \n" -#: ../cache/locales.php:2 +#: [about]thanks msgid "Thanks" msgstr "" -#: ../cache/locales.php:3 +#: [about]developers msgid "Developers" msgstr "開発者" -#: ../cache/locales.php:4 +#: [about]translators msgid "Translators" msgstr "翻訳者" -#: ../cache/locales.php:5 +#: [about]software msgid "Software" msgstr "ソフトウェア" -#: ../cache/locales.php:6 +#: [about]resources msgid "Resources" msgstr "リソース" -#: ../cache/locales.php:7 ../cache/locales.php:83 ../cache/locales.php:85 +#: [about]api [schema]api [api]title msgid "API" msgstr "API" -#: ../cache/locales.php:8 -msgid "" -"Movim is an XMPP-based communication platform. All the project, except the " -"following software and resources, is under" +#: [about]info +msgid "Movim is an XMPP-based communication platform. All the project, except the following software and resources, is under" msgstr "" -#: ../cache/locales.php:9 +#: [account]title msgid "Account" msgstr "アカウント" -#: ../cache/locales.php:10 -msgid "The password has been updated" -msgstr "パスワードは更新されました" +#: [account]password_change_title +#, fuzzy +msgid "Change my password" +msgstr "パスワードが違います" -#: ../cache/locales.php:11 -msgid "Please provide a valid password (6 characters minimum)" -msgstr "適正なパスワードを記入してください(最低6文字)" - -#: ../cache/locales.php:12 -msgid "The provided passwords are not the same" -msgstr "記入されたパスワードが異なっています" - -#: ../cache/locales.php:13 -msgid "Delete my account" -msgstr "アカウントを削除する" - -#: ../cache/locales.php:14 -msgid "" -"You will delete your XMPP account and all the relative information linked to " -"it (profile, contacts and publications)." -msgstr "XMPP アカウントと関連しているデータ、プロファイル、コンタクトや投稿などが削除されます。" - -#: ../cache/locales.php:15 -msgid "Are you sure that you want to delete it ?" -msgstr "削除してよろしいですか" - -#: ../cache/locales.php:16 ../cache/locales.php:411 -msgid "Create a new account" -msgstr "新しいアカウントを作成する" - -#: ../cache/locales.php:17 -msgid "No account creation form found on the server" -msgstr "" - -#: ../cache/locales.php:18 ../cache/locales.php:172 -msgid "on" -msgstr "" - -#: ../cache/locales.php:19 -msgid "Your acccount has been successfully registered" -msgstr "アカウントが正常に作成されました" - -#: ../cache/locales.php:20 -msgid "Loading" -msgstr "読み込み中" - -#: ../cache/locales.php:21 -msgid "Not Acceptable" -msgstr "" - -#: ../cache/locales.php:22 -msgid "The registration system of this server is currently unavailable" -msgstr "" - -#: ../cache/locales.php:23 -msgid "" -"This server use an external system for the registration, please click on the " -"following URL." -msgstr "" - -#: ../cache/locales.php:24 -msgid "Actions" -msgstr "アクション" - -#: ../cache/locales.php:25 ../cache/locales.php:82 -msgid "Database" -msgstr "データベース" - -#: ../cache/locales.php:26 -msgid "Modl wasn't able to connect to the database" -msgstr "Modlがデータベースに接続できませんでした" - -#: ../cache/locales.php:27 -msgid "Movim is connected to the database" -msgstr "Movimがデータベースに接続しました" - -#: ../cache/locales.php:28 -msgid "The database need to be updated" -msgstr "データベースをアップデートする必要があります" - -#: ../cache/locales.php:29 -msgid "Movim database is up to date" -msgstr "データベースがアップデートされました" - -#: ../cache/locales.php:30 -msgid "Database Type" -msgstr "データベースタイプ" - -#: ../cache/locales.php:31 ../cache/locales.php:50 ../cache/locales.php:540 -msgid "Username" -msgstr "ユーザ名" - -#: ../cache/locales.php:32 ../cache/locales.php:51 ../cache/locales.php:282 -#: ../cache/locales.php:541 +#: [account]password [db]password [credentials]password [form]password +#: [input]password msgid "Password" msgstr "パスワード" -#: ../cache/locales.php:33 +#: [account]password_confirmation +#, fuzzy +msgid "Password confirmation" +msgstr "%s - 設定" + +#: [account]password_changed +msgid "The password has been updated" +msgstr "パスワードは更新されました" + +#: [account]password_not_valid +msgid "Please provide a valid password (6 characters minimum)" +msgstr "適正なパスワードを記入してください(最低6文字)" + +#: [account]password_not_same +msgid "The provided passwords are not the same" +msgstr "記入されたパスワードが異なっています" + +#: [account]delete_title +msgid "Delete my account" +msgstr "アカウントを削除する" + +#: [account]delete +#, fuzzy +msgid "Delete your account" +msgstr "アカウントを削除する" + +#: [account]delete_text +msgid "You will delete your XMPP account and all the relative information linked to it (profile, contacts and publications)." +msgstr "XMPP アカウントと関連しているデータ、プロファイル、コンタクトや投稿などが削除されます。" + +#: [account]delete_text_confirm +msgid "Are you sure that you want to delete it ?" +msgstr "削除してよろしいですか" + +#: [account]gateway_title +msgid "Gateway" +msgstr "" + +#: [create]title [subscribe]title +msgid "Create a new account" +msgstr "新しいアカウントを作成する" + +#: [create]notfound +msgid "No account creation form found on the server" +msgstr "" + +#: [create]server_on +msgid "on" +msgstr "" + +#: [create]successfull +msgid "Your acccount has been successfully registered" +msgstr "アカウントが正常に作成されました" + +#: [create]loading +msgid "Loading" +msgstr "読み込み中" + +#: [error]not_acceptable +msgid "Not Acceptable" +msgstr "" + +#: [error]service_unavailable +msgid "The registration system of this server is currently unavailable" +msgstr "" + +#: [oob]about +msgid "This server use an external system for the registration, please click on the following URL." +msgstr "" + +#: [adhoc]title +msgid "Actions" +msgstr "アクション" + +#: [db]legend [schema]database +msgid "Database" +msgstr "データベース" + +#: [db]connect_error +msgid "Modl wasn't able to connect to the database" +msgstr "Modlがデータベースに接続できませんでした" + +#: [db]connect_success +msgid "Movim is connected to the database" +msgstr "Movimがデータベースに接続しました" + +#: [db]update +msgid "The database need to be updated" +msgstr "データベースをアップデートする必要があります" + +#: [db]up_to_date +msgid "Movim database is up to date" +msgstr "データベースがアップデートされました" + +#: [db]type +msgid "Database Type" +msgstr "データベースタイプ" + +#: [db]username [credentials]username [input]username +msgid "Username" +msgstr "ユーザ名" + +#: [db]host msgid "Host" msgstr "ホスト" -#: ../cache/locales.php:34 +#: [db]port msgid "Port" msgstr "ポート" -#: ../cache/locales.php:35 -msgid "Database Name" +#: [db]name +#, fuzzy +msgid "Database sName" msgstr "データベース名" -#: ../cache/locales.php:36 +#: [admin]general msgid "General Settings" msgstr "一般設定" -#: ../cache/locales.php:37 +#: [general]theme msgid "Theme" msgstr "テーマ" -#: ../cache/locales.php:38 +#: [general]language msgid "Default language" msgstr "標準の言語" -#: ../cache/locales.php:39 -msgid "Environment" -msgstr "環境" - -#: ../cache/locales.php:40 +#: [general]log_verbosity msgid "Log verbosity" msgstr "ログ" -#: ../cache/locales.php:41 +#: [general]timezone msgid "Server Timezone" msgstr "サーバータイムゾーン" -#: ../cache/locales.php:42 +#: [general]limit msgid "User folder size limit (in bytes)" msgstr "ユーザーフォルダのサイズ上限(バイト)" -#: ../cache/locales.php:43 +#: [websocket]title msgid "WebSocket Configuration" msgstr "ウェブソケット設定" -#: ../cache/locales.php:44 +#: [websocket]info msgid "Enter here a valid WebSocket URI in the form" msgstr "" -#: ../cache/locales.php:45 +#: [websocket]label msgid "WebSocket URI" msgstr "ウェブソケットURI" -#: ../cache/locales.php:46 -msgid "" -"If you change the URI, please restart the daemon to reload the configuration" +#: [websocket]save_info +msgid "If you change the URI, please restart the daemon to reload the configuration" msgstr "URIを変えるとデーモンを再起動してください" -#: ../cache/locales.php:47 +#: [websocket]publics msgid "Public WebSockets" msgstr "" -#: ../cache/locales.php:48 +#: [credentials]title msgid "Administration Credential" msgstr "管理者認証" -#: ../cache/locales.php:49 +#: [credentials]info msgid "Change the default credentials admin/password" msgstr "デフォルトの管理者・パスワードを変更する" -#: ../cache/locales.php:52 +#: [credentials]re_password msgid "Retype password" msgstr "パスワードを再入力してください" -#: ../cache/locales.php:53 +#: [whitelist]title msgid "Whitelist - XMPP Server" msgstr "信頼するXMPPサーバー" -#: ../cache/locales.php:54 -msgid "" -"If you want to specify a list of authorized XMPP servers on your Movim pod " -"and forbid the connection on all the others please put their domain name " -"here, with comma (ex: movim.eu,jabber.fr)" -msgstr "" -"限られた信頼するXMPPサーバーのリストをMovimのポッドに設定し、他のサーバーの接続をブロックしたい場合、ここにドメインネームをコンマで区切って(例:" -"movim.eu,jabber.fr)入力してください。" +#: [whitelist]info1 +msgid "If you want to specify a list of authorized XMPP servers on your Movim pod and forbid the connection on all the others please put their domain name here, with comma (ex: movim.eu,jabber.fr)" +msgstr "限られた信頼するXMPPサーバーのリストをMovimのポッドに設定し、他のサーバーの接続をブロックしたい場合、ここにドメインネームをコンマで区切って(例:movim.eu,jabber.fr)入力してください。" -#: ../cache/locales.php:55 -msgid "" -"Leave this field blank if you allow the access to all the XMPP accounts." +#: [whitelist]info2 +msgid "Leave this field blank if you allow the access to all the XMPP accounts." msgstr "空のままにするとアクセスできるXMPPアカウントが制限されません" -#: ../cache/locales.php:56 +#: [whitelist]label msgid "List of whitelisted XMPP servers" msgstr "信頼するXMPPサーバー" -#: ../cache/locales.php:57 ../cache/locales.php:61 +#: [information]title +#, fuzzy +msgctxt "[information]title" msgid "Information Message" -msgstr "" +msgstr "クライアントインフォメーション" -#: ../cache/locales.php:58 +#: [information]description msgid "Description" msgstr "" -#: ../cache/locales.php:59 +#: [information]info1 msgid "This message will be displayed on the login page" msgstr "このメッセージはログインページに表示されます" -#: ../cache/locales.php:60 -msgid "Leave this field blank if you don't want to show any message." +#: [information]info2 +#, fuzzy +msgid "Leave this field blank if you dont want to show any message." msgstr "メッセージを表示したくない場合、空にしてください。" -#: ../cache/locales.php:62 +#: [information]label +#, fuzzy +msgctxt "[information]label" +msgid "Information Message" +msgstr "クライアントインフォメーション" + +#: [log]empty msgid "Empty" msgstr "空" -#: ../cache/locales.php:63 +#: [log]syslog msgid "Syslog" msgstr "Syslog" -#: ../cache/locales.php:64 +#: [log]syslog_files msgid "Syslog and files" msgstr "Syslogとファイル" -#: ../cache/locales.php:65 +#: [rewrite]title msgid "URL Rewriting" msgstr "" -#: ../cache/locales.php:66 +#: [rewrite]info msgid "The URL Rewriting can be enabled" msgstr "" -#: ../cache/locales.php:67 +#: [admin]compatibility msgid "General Overview" msgstr "概要" -#: ../cache/locales.php:68 -msgid "" -"Movim has found some issues or things that need to be fixed or improved" +#: [compatibility]info +msgid "Movim has found some issues or things that need to be fixed or improved" msgstr "" -#: ../cache/locales.php:69 -#, php-format +#: [compatibility]php1 msgid "Update your PHP-Version: %s" msgstr "PHPをアップデートしてください: %s" -#: ../cache/locales.php:70 +#: [compatibility]php2 msgid "Required: 5.3.0" msgstr "" -#: ../cache/locales.php:71 +#: [compatibility]curl msgid "Install the php5-curl library" msgstr "" -#: ../cache/locales.php:72 +#: [compatibility]imagick msgid "Install the php5-imagick library" msgstr "" -#: ../cache/locales.php:73 +#: [compatibility]gd msgid "Install the php5-gd library" msgstr "" -#: ../cache/locales.php:74 -msgid "Read and write rights for the webserver in Movim's root directory" +#: [compatibility]rights +#, fuzzy +msgid "Read and write rights for the webserver in Movims root directory" msgstr "Movimルートの読み取り・書き込み権限" -#: ../cache/locales.php:75 +#: [compatibility]rewrite msgid "The URL Rewriting support is currently disabled" msgstr "" -#: ../cache/locales.php:76 +#: [compatibility]db msgid "The database need to be updated, go to the database panel to fix this" msgstr "" -#: ../cache/locales.php:77 -msgid "" -"WebSocket connection error, check if the Movim Daemon is running and is " -"reacheable" +#: [compatibility]websocket +msgid "WebSocket connection error, check if the Movim Daemon is running and is reachable" msgstr "" -#: ../cache/locales.php:78 -msgid "" -"XMPP Websocket connection error, please check the validity of the URL given " -"in the General Configuration" +#: [compatibility]xmpp_websocket +msgid "XMPP Websocket connection error, please check the validity of the URL given in the General Configuration" msgstr "" -#: ../cache/locales.php:79 +#: [schema]browser msgid "Browser" msgstr "" -#: ../cache/locales.php:80 +#: [schema]movim msgid "Movim Core" msgstr "" -#: ../cache/locales.php:81 +#: [schema]daemon msgid "Movim Daemon" msgstr "" -#: ../cache/locales.php:84 +#: [schema]xmpp msgid "XMPP" msgstr "" -#: ../cache/locales.php:86 -#, php-format -msgid "" -"Here you can register your pod on the official %sMovim API%s and be listed " -"on %sthe pods page%s." +#: [api]info +msgid "Here you can register your pod on the official %sMovim API%s and be listed on %sthe pods page%s." msgstr "" -#: ../cache/locales.php:87 +#: [api]register msgid "Your pod is not registered on the API" msgstr "" -#: ../cache/locales.php:88 +#: [api]registered msgid "Your pod is registered on the API" msgstr "" -#: ../cache/locales.php:89 +#: [api]wait msgid "Your pod is not yet validated" msgstr "" -#: ../cache/locales.php:90 +#: [api]validated msgid "Your pod is validated" msgstr "" -#: ../cache/locales.php:91 -msgid "" -"You asked to be removed from the API, this request will be processed in a " -"couple of hours" +#: [api]unregister +msgid "You asked to be removed from the API, this request will be processed in a couple of hours" msgstr "" -#: ../cache/locales.php:92 ../cache/locales.php:147 +#: [api]conf_updated [config]updated msgid "Configuration updated" msgstr "設定が変更されました" -#: ../cache/locales.php:93 +#: [avatar]file msgid "File" msgstr "ファイル" -#: ../cache/locales.php:94 +#: [avatar]use_it msgid "Use it" msgstr "使用する" -#: ../cache/locales.php:95 +#: [avatar]webcam msgid "Webcam" msgstr "ウェブカメラ" -#: ../cache/locales.php:96 +#: [avatar]cheese msgid "Cheese !" msgstr "はい、チーズ!" -#: ../cache/locales.php:97 +#: [avatar]snapshot msgid "Take a webcam snapshot" msgstr "ウェブカメラで写真を撮る" -#: ../cache/locales.php:98 +#: [avatar]updated msgid "Avatar Updated" msgstr "アバターがアップデートされました" -#: ../cache/locales.php:99 +#: [avatar]not_updated msgid "Avatar Not Updated" msgstr "アバターが更新されていません" -#: ../cache/locales.php:100 ../cache/locales.php:415 -#, php-format +#: [blog]title [feed]title msgid "%s's feed" msgstr "%s のフィード" -#: ../cache/locales.php:101 +#: [blog]empty msgid "This user has not posted anything right now" msgstr "このユーザがまだ投稿していません" -#: ../cache/locales.php:102 +#: [title]conferences msgid "Conferences" msgstr "" -#: ../cache/locales.php:103 ../cache/locales.php:193 ../cache/locales.php:217 -#: ../cache/locales.php:468 +#: [title]groups [group]empty_title [menu]groups [page]groups msgid "Groups" msgstr "グループ" -#: ../cache/locales.php:104 +#: [chatroom]add msgid "Add a new Chat Room" msgstr "チャットルームを追加する" -#: ../cache/locales.php:105 ../cache/locales.php:368 +#: [chatroom]id [chatrooms]id msgid "Chat Room ID" msgstr "" -#: ../cache/locales.php:106 ../cache/locales.php:116 ../cache/locales.php:156 -#: ../cache/locales.php:361 ../cache/locales.php:369 ../cache/locales.php:424 +#: [chatroom]name +#, fuzzy +msgctxt "[chatroom]name" msgid "Name" msgstr "名前" -#: ../cache/locales.php:107 ../cache/locales.php:157 ../cache/locales.php:371 -#: ../cache/locales.php:425 +#: [chatroom]nickname [general]nickname [chatrooms]nickname msgid "Nickname" msgstr "ニックネーム" -#: ../cache/locales.php:108 +#: [chatroom]autojoin_label msgid "Do you want do join automaticaly this Chat Room ?" msgstr "" -#: ../cache/locales.php:109 ../cache/locales.php:372 +#: [chatroom]bad_id [chatrooms]bad_id msgid "Bad Chatroom ID" msgstr "不正チャットルームID" -#: ../cache/locales.php:110 ../cache/locales.php:373 +#: [chatroom]empty_name [chatrooms]empty_name msgid "Empty name" msgstr "名前が空です" -#: ../cache/locales.php:111 ../cache/locales.php:380 +#: [bookmarks]updated msgid "Bookmarks updated" msgstr "ブックマークを更新しました" -#: ../cache/locales.php:112 -msgid "An error occured : " +#: [bookmarks]error +#, fuzzy +msgid "An error occured :" msgstr "エラーが発生しました: " -#: ../cache/locales.php:113 +#: [bookmarks]configure msgid "Configure" msgstr "設定する" -#: ../cache/locales.php:114 +#: [url]add msgid "Add a new URL" msgstr "URLを追加する" -#: ../cache/locales.php:115 +#: [url]url msgid "URL" msgstr "URL" -#: ../cache/locales.php:117 +#: [url]name +#, fuzzy +msgctxt "[url]name" +msgid "Name" +msgstr "名前" + +#: [message]published msgid "Message Published" msgstr "メッセージが公開されました" -#: ../cache/locales.php:118 ../cache/locales.php:138 +#: [message]encrypted msgid "Encrypted message" msgstr "暗号化されたメッセージ" -#: ../cache/locales.php:119 +#: [message]composing [chats]composing msgid "Composing..." msgstr "書き込み中" -#: ../cache/locales.php:120 +#: [message]paused [chats]paused msgid "Paused..." msgstr "" -#: ../cache/locales.php:121 +#: [message]gone msgid "Contact gone" msgstr "" -#: ../cache/locales.php:122 -#, php-format +#: [chat]attention msgid "%s needs your attention" msgstr "" -#: ../cache/locales.php:123 +#: [chat]placeholder msgid "Your message here..." msgstr "ここに記入を..." -#: ../cache/locales.php:124 +#: [chat]smileys msgid "Smileys" msgstr "絵文字" -#: ../cache/locales.php:125 ../cache/locales.php:139 +#: [chat]empty_title [button]chat msgid "Chat" msgstr "チャット" -#: ../cache/locales.php:126 +#: [chat]empty_text msgid "Discuss with your contacts" msgstr "" -#: ../cache/locales.php:127 -msgid "Members" -msgstr "メンバー" - -#: ../cache/locales.php:128 ../cache/locales.php:376 -msgid "Connected to the chatroom" -msgstr "" - -#: ../cache/locales.php:129 ../cache/locales.php:377 -msgid "Disconnected from the chatroom" -msgstr "" - -#: ../cache/locales.php:130 ../cache/locales.php:200 ../cache/locales.php:469 -msgid "Configuration" -msgstr "設定" - -#: ../cache/locales.php:131 -msgid "Configuration saved" -msgstr "設定が保存されました。" - -#: ../cache/locales.php:132 -msgid "Subject" -msgstr "トピック" - -#: ../cache/locales.php:133 -msgid "Subject changed" -msgstr "トピックが更新されました" - -#: ../cache/locales.php:134 -msgid "Open a new conversation by clicking on the plus button bellow" -msgstr "" - -#: ../cache/locales.php:135 -msgid "Chat with a contact" -msgstr "誰かとチャットする" - -#: ../cache/locales.php:136 +#: [chat]frequent [chats]frequent msgid "Frequent contacts" msgstr "" -#: ../cache/locales.php:137 +#: [chatroom]members +msgid "Members" +msgstr "メンバー" + +#: [chatroom]connected [chatrooms]connected +msgid "Connected to the chatroom" +msgstr "" + +#: [chatroom]disconnected [chatrooms]disconnected +msgid "Disconnected from the chatroom" +msgstr "" + +#: [chatroom]config [group]configuration [page]configuration +msgid "Configuration" +msgstr "設定" + +#: [chatroom]config_saved +msgid "Configuration saved" +msgstr "設定が保存されました。" + +#: [chatroom]subject +msgid "Subject" +msgstr "トピック" + +#: [chatroom]subject_changed +msgid "Subject changed" +msgstr "トピックが更新されました" + +#: [chats]empty_title +#, fuzzy +msgid "No chats yet..." +msgstr "コメントがまだありません" + +#: [chats]empty +msgid "Open a new conversation by clicking on the plus button bellow or visit the Contacts page." +msgstr "" + +#: [chats]add +msgid "Chat with a contact" +msgstr "誰かとチャットする" + +#: [chats]more msgid "Load more contacts" msgstr "" -#: ../cache/locales.php:140 -msgid "General" -msgstr "一般" - -#: ../cache/locales.php:141 -msgid "Language" -msgstr "言語" - -#: ../cache/locales.php:142 -msgid "Roster display" -msgstr "" - -#: ../cache/locales.php:143 -msgid "Show the offline contacts" -msgstr "オフラインのコンタクトを表示" - -#: ../cache/locales.php:144 -msgid "Hide the offline contacts" -msgstr "オフラインのコンタクトを非表示" - -#: ../cache/locales.php:145 -msgid "Appearence" -msgstr "" - -#: ../cache/locales.php:146 -msgid "This configuration is shared wherever you are connected !" -msgstr "" - -#: ../cache/locales.php:148 -msgid "Notify on incoming message" -msgstr "" - -#: ../cache/locales.php:149 -msgid "Use desktop notifications" -msgstr "" - -#: ../cache/locales.php:150 +#: [title]data msgid "Data" msgstr "データ" -#: ../cache/locales.php:151 +#: [title]cache msgid "Cache" msgstr "キャッシュ" -#: ../cache/locales.php:152 ../cache/locales.php:218 ../cache/locales.php:466 +#: [title]contacts [menu]contacts [page]contacts msgid "Contacts" msgstr "コンタクト" -#: ../cache/locales.php:153 ../cache/locales.php:480 +#: [title]posts [page]posts msgid "Posts" msgstr "投稿" -#: ../cache/locales.php:154 +#: [title]messages msgid "Messages" msgstr "メッセージ" -#: ../cache/locales.php:155 ../cache/locales.php:423 +#: [config]general +msgid "General" +msgstr "一般" + +#: [config]language +msgid "Language" +msgstr "言語" + +#: [config]roster +msgid "Roster display" +msgstr "" + +#: [config]roster_show +msgid "Show the offline contacts" +msgstr "オフラインのコンタクトを表示" + +#: [config]roster_hide +msgid "Hide the offline contacts" +msgstr "オフラインのコンタクトを非表示" + +#: [config]appearence +msgid "Appearence" +msgstr "" + +#: [config]info +msgid "This configuration is shared wherever you are connected" +msgstr "" + +#: [notifications]message +msgid "Notify on incoming message" +msgstr "" + +#: [notifications]desktop +msgid "Use desktop notifications" +msgstr "" + +#: [general]legend [general]general_title msgid "General Informations" msgstr "一般情報" -#: ../cache/locales.php:158 ../cache/locales.php:427 +#: [general]name [public_groups]name [chatrooms]name +msgid "Name" +msgstr "名前" + +#: [general]date_of_birth msgid "Date of Birth" msgstr "生年月日" -#: ../cache/locales.php:159 ../cache/locales.php:428 +#: [general]gender msgid "Gender" msgstr "性別" -#: ../cache/locales.php:160 ../cache/locales.php:429 +#: [general]marital msgid "Marital Status" msgstr "婚姻区分" -#: ../cache/locales.php:161 ../cache/locales.php:426 +#: [general]email msgid "Email" msgstr "メール" -#: ../cache/locales.php:162 ../cache/locales.php:430 +#: [general]website msgid "Website" msgstr "ホームページ" -#: ../cache/locales.php:163 ../cache/locales.php:431 +#: [general]about msgid "About Me" msgstr "個人情報" -#: ../cache/locales.php:164 +#: [general]accounts msgid "Other Accounts" msgstr "他のアカウント" -#: ../cache/locales.php:165 +#: [general]tune msgid "Is Listening" msgstr "" -#: ../cache/locales.php:166 ../cache/locales.php:432 +#: [position]legend [position]position_title msgid "Geographic Position" msgstr "" -#: ../cache/locales.php:167 ../cache/locales.php:433 +#: [position]locality msgid "Locality" msgstr "現在地" -#: ../cache/locales.php:168 ../cache/locales.php:434 +#: [position]country msgid "Country" msgstr "国名" -#: ../cache/locales.php:169 +#: [mood]title msgid "Mood" msgstr "機嫌" -#: ../cache/locales.php:170 +#: [mood]im msgid "I'm " msgstr "" -#: ../cache/locales.php:171 +#: [listen]title msgid "Listening" msgstr "" -#: ../cache/locales.php:173 +#: [last]title msgid "Last seen" msgstr "" -#: ../cache/locales.php:174 +#: [client]title msgid "Client Informations" msgstr "クライアントインフォメーション" -#: ../cache/locales.php:175 +#: [explore]last_registered msgid "Last registered" msgstr "" -#: ../cache/locales.php:176 +#: [explore]explore msgid "Find some new friends" msgstr "" -#: ../cache/locales.php:177 ../cache/locales.php:533 +#: [edit]title [button]edit msgid "Edit" msgstr "編集" -#: ../cache/locales.php:178 +#: [edit]alias msgid "Alias" msgstr "アリアス" -#: ../cache/locales.php:179 +#: [edit]group msgid "Group" msgstr "グループ" -#: ../cache/locales.php:180 ../cache/locales.php:400 +#: [edit]updated [roster]updated msgid "Contact updated" msgstr "コンタクトが更新されました" -#: ../cache/locales.php:181 +#: [delete]title msgid "Are you sure?" msgstr "よろしいですか" -#: ../cache/locales.php:182 -msgid "" -"You are going to delete one of your contacts, please confirm your action" +#: [delete]text +msgid "You are going to delete one of your contacts, please confirm your action" msgstr "コンタクトを削除しますが、よろしいですか" -#: ../cache/locales.php:183 -#, php-format +#: [age]years msgid "%s years" msgstr "%s 年" -#: ../cache/locales.php:184 +#: [blog]last msgid "Last public post" msgstr "" -#: ../cache/locales.php:185 +#: [subscription]to +#, fuzzy +msgid "You can see this contact status" +msgstr "このコンタクトを削除する" + +#: [subscription]to_button +msgid "Share my status" +msgstr "" + +#: [subscription]to_text +msgid "But this contact cannot see yours" +msgstr "" + +#: [subscription]from +msgid "You are not subscribed to this contact" +msgstr "" + +#: [subscription]from_button +#, fuzzy +msgid "Ask to subscribe" +msgstr "参加申請取消" + +#: [subscription]from_text +msgid "But this contact can still see if you are online" +msgstr "" + +#: [subscription]nil +#, fuzzy +msgid "No subscriptions" +msgstr "サブスクリプションを習得する" + +#: [subscription]nil_button +msgid "Invite" +msgstr "" + +#: [subscription]nil_text +msgid "This contact is in your contact list but there is no subscriptions between the two accounts" +msgstr "" + +#: [group]subscribe msgid "Subscribe" msgstr "参加申請する" -#: ../cache/locales.php:186 +#: [group]subscribed msgid "Subscribed" msgstr "参加申請済" -#: ../cache/locales.php:187 +#: [group]unsubscribe msgid "Unsubscribe" msgstr "参加申請取消" -#: ../cache/locales.php:188 +#: [group]unsubscribe_text msgid "You are going to unsubscribe from this Group" msgstr "" -#: ../cache/locales.php:189 +#: [group]unsubscribed msgid "Unsubscribed" msgstr "" -#: ../cache/locales.php:190 +#: [group]share_label msgid "Make your membership to this group public to your friends" msgstr "" -#: ../cache/locales.php:191 +#: [group]label_label msgid "Give a label for this group" msgstr "" -#: ../cache/locales.php:192 +#: [group]sure msgid "Are you sure ?" msgstr "よろしいですか" -#: ../cache/locales.php:194 +#: [group]empty_text msgid "Discover, follow and share" msgstr "" -#: ../cache/locales.php:195 +#: [group]empty msgid "Something bad happened to this group" msgstr "" -#: ../cache/locales.php:196 +#: [group]config_saved msgid "Group configuration saved" msgstr "グループの設定が保存されました" -#: ../cache/locales.php:197 +#: [group]delete_title msgid "Delete the group" msgstr "グループを削除する" -#: ../cache/locales.php:198 -msgid "" -"You are going to delete the following group. Please confirm your action." +#: [group]delete_text +msgid "You are going to delete the following group. Please confirm your action." msgstr "このグループを削除しますが、よろしいですか" -#: ../cache/locales.php:199 -msgid "" -"It seems that this group doesn't exists anymore. Do you want to remove it " -"from your subscriptions?" +#: [group]delete_clean_text +msgid "It seems that this group doesn't exists anymore. Do you want to remove it from your subscriptions?" msgstr "" -#: ../cache/locales.php:201 ../cache/locales.php:408 +#: [group]counter +msgid "%s groups on this server" +msgstr "" + +#: [group]subscriptions [statistics]subscriptions msgid "Subscriptions" msgstr "" -#: ../cache/locales.php:202 ../cache/locales.php:290 +#: [group]servers +#, fuzzy +msgid "Groups servers" +msgstr "グループ" + +#: [group]search_server +msgid "Search for a new server" +msgstr "" + +#: [group]help_info1 +msgid "Groups are the perfect way to share posts about topics that you like with all the other Movim's users." +msgstr "" + +#: [group]help_info2 +msgid "Choose a server and a Group and subscribe to it using the %s button in the header. You can also create a new one using the %s button." +msgstr "" + +#: [group]help_info3 +msgid "Done? You can now publish a new post in the Group by using the %s button." +msgstr "" + +#: [group]help_info4 +msgid "You will find a list of all your subscribed Groups in My Subscriptions and receive instantly all the new incoming posts in the %sNews%s page." +msgstr "" + +#: [groups]empty_title msgid "Hello" msgstr "こんにちは" -#: ../cache/locales.php:203 ../cache/locales.php:225 ../cache/locales.php:291 +#: [groups]contact_post [hello]contact_post [menu]contact_post msgid "Contact post" msgstr "コンタクトの投稿" -#: ../cache/locales.php:204 -msgid "" -"You don't have any subscriptions yet, select a group server above to start " -"exploring." +#: [groups]empty_text1 +msgid "You don't have any subscriptions yet, select a group server above to start exploring." msgstr "" -#: ../cache/locales.php:205 +#: [groups]empty_text2 msgid "Subscribe to your favorite feeds by bookmarking them." msgstr "" -#: ../cache/locales.php:206 +#: [groups]subscriptions msgid "My Subscriptions" msgstr "" -#: ../cache/locales.php:207 +#: [groups]add msgid "Create a new Group" msgstr "グループを作成する" -#: ../cache/locales.php:208 +#: [groups]name msgid "Group name" msgstr "グループ名" -#: ../cache/locales.php:209 +#: [groups]name_example msgid "My Little Pony - Fan Club" msgstr "ママチャリ部活" -#: ../cache/locales.php:210 +#: [groups]created msgid "Group created successfully" msgstr "グループが正常に作成されました" -#: ../cache/locales.php:211 +#: [groups]deleted msgid "Group deleted successfully" msgstr "グループが正常に削除されました" -#: ../cache/locales.php:212 +#: [groups]name_error msgid "Please provide a valid group name (4 characters minimum)" msgstr "" -#: ../cache/locales.php:213 +#: [groups]no_creation msgid "You cannot create a new Group on this server" msgstr "" -#: ../cache/locales.php:214 -#, php-format +#: [groups]sub msgid "%s subscribers" msgstr "" -#: ../cache/locales.php:215 -#, php-format +#: [groups]num msgid "%s posts" msgstr "%s 投稿" -#: ../cache/locales.php:216 +#: [groups]disco_error +msgid "This server doesn't exists" +msgstr "" + +#: [menu]all msgid "All" msgstr "全て" -#: ../cache/locales.php:219 +#: [menu]refresh msgid "Refresh all the streams" msgstr "" -#: ../cache/locales.php:220 ../cache/locales.php:402 -msgid "Search" -msgstr "検索" +#: [roster]search +#, fuzzy +msgid "Search in your contacts" +msgstr "一人のコンタクトと共有" -#: ../cache/locales.php:221 +#: [hello]active_contacts +#, fuzzy +msgid "Active contacts" +msgstr "アクション" + +#: [hello]chat msgid "Go on the Chat page" msgstr "チャットへ" -#: ../cache/locales.php:222 -msgid "Read all theses articles on the News page" -msgstr "新着情報をもっと読む" - -#: ../cache/locales.php:223 -msgid "Visit your public blog" -msgstr "公開ブログへ" - -#: ../cache/locales.php:224 -msgid "See your public posts and share them with all your contacts" -msgstr "" - -#: ../cache/locales.php:226 -msgid "Universal share button" -msgstr "" - -#: ../cache/locales.php:227 -msgid "" -"Bookmark or drag and drop the following button in your toolbar and use it on " -"all the pages you want to share on Movim" -msgstr "" - -#: ../cache/locales.php:228 -msgid "Share on Movim" -msgstr "Movimで共有する" - -#: ../cache/locales.php:229 -msgid "Frequently Asked Questions" -msgstr "よくある質問" - -#: ../cache/locales.php:230 -msgid "What do the little banners refer to ?" -msgstr "この標の意味はなんですか" - -#: ../cache/locales.php:231 -msgid "" -"Thanks to these five little banners, you can quickly identitfy the level of " -"confdentiality applied to the information you provide." -msgstr "この標で、あなとが公開しているデータの機密性が分かります。" - -#: ../cache/locales.php:232 -msgid "White, only you can see the information" -msgstr "白、あなとしか見れない" - -#: ../cache/locales.php:233 -msgid "Green, you have chosen some contacts who can see your information" -msgstr "緑、シェアーしているコンタクトしか見れない" - -#: ../cache/locales.php:234 -msgid "Orange, all your contact list can see your information" -msgstr "オレンジ、あなたのコンタクト全員が見れる" - -#: ../cache/locales.php:235 -msgid "Red, everybody in the XMPP network can see your information" -msgstr "XMPPを使っている人全員が見れる" - -#: ../cache/locales.php:236 -msgid "Black, the whole Internet can see your information" -msgstr "黒、誰でも見れる" - -#: ../cache/locales.php:237 -msgid "Looking for some documentation ?" -msgstr "ドキュメンテーションお探しですか" - -#: ../cache/locales.php:238 -msgid "Read the Wiki" -msgstr "Wiki へ" - -#: ../cache/locales.php:239 -msgid "Talk with us by email ?" -msgstr "メールで連絡したいと思っていますか" - -#: ../cache/locales.php:240 -msgid "Join the Mailing List" -msgstr "Mailing List に登録する" - -#: ../cache/locales.php:241 -msgid "Chat with the team ?" -msgstr "チャットがいいですか" - -#: ../cache/locales.php:242 -msgid "Join the Chatroom" -msgstr "チャットルームに来てください" - -#: ../cache/locales.php:243 -msgid "Location node created" -msgstr "" - -#: ../cache/locales.php:244 -msgid "Bookmark node created" -msgstr "" - -#: ../cache/locales.php:245 -msgid "Profile node created" -msgstr "" - -#: ../cache/locales.php:246 -msgid "Avatar node created" -msgstr "" - -#: ../cache/locales.php:247 -msgid "Subscriptions node created" -msgstr "" - -#: ../cache/locales.php:248 -msgid "Microblog node created" -msgstr "" - -#: ../cache/locales.php:249 -msgid "Location" -msgstr "現在地" - -#: ../cache/locales.php:250 -msgid "Wrong position" -msgstr "" - -#: ../cache/locales.php:251 -msgid "Location updated" -msgstr "現在地が更新されました" - -#: ../cache/locales.php:252 -msgid "Update my position" -msgstr "現在地を更新する" - -#: ../cache/locales.php:253 -msgid "Wrong username" -msgstr "ユーザ名が正しくありません" - -#: ../cache/locales.php:254 -msgid "Invalid JID" -msgstr "JID が正しくありません" - -#: ../cache/locales.php:255 -msgid "Empty Challenge from the server" -msgstr "" - -#: ../cache/locales.php:256 -msgid "XMPP Domain error, your account is not a correct Jabber ID" -msgstr "XMPPドメインエラーが発生しました。使われているアカウントは不可なJabberIDです。" - -#: ../cache/locales.php:257 -msgid "Some data are missing !" -msgstr "いくつかのデータが足りません。" - -#: ../cache/locales.php:258 -msgid "Wrong password" -msgstr "パスワードが違います" - -#: ../cache/locales.php:259 -msgid "Internal server error" -msgstr "内部エラー" - -#: ../cache/locales.php:260 -msgid "Session error" -msgstr "セッションエラー" - -#: ../cache/locales.php:261 -msgid "Account successfully created" -msgstr "アカウントが正常に作成されました" - -#: ../cache/locales.php:262 ../cache/locales.php:271 -msgid "Your XMPP server is unauthorized" -msgstr "あなとが使用しているXMPPサーバーは許可がありません" - -#: ../cache/locales.php:263 -msgid "The server takes too much time to respond" -msgstr "このサーバは重すぎます" - -#: ../cache/locales.php:264 -msgid "Your web browser is too old to use with Movim." -msgstr "ブラウザーのバージョンが古すぎてMovimを使用できません" - -#: ../cache/locales.php:265 -msgid "" -"Movim cannot talk with the server, please try again later (Websocket " -"connection error)" -msgstr "" - -#: ../cache/locales.php:266 -msgid "Impossible login" -msgstr "" - -#: ../cache/locales.php:267 -msgid "Oops!" -msgstr "おっとぉ!" - -#: ../cache/locales.php:268 ../cache/locales.php:449 ../cache/locales.php:455 -msgid "Unknown error" -msgstr "原因不明のエラー" - -#: ../cache/locales.php:269 -msgid "Invalid username format" -msgstr "" - -#: ../cache/locales.php:270 -msgid "Invalid password format" -msgstr "" - -#: ../cache/locales.php:272 -msgid "A Movim session is already open on an other device" -msgstr "他にセッションが存在しています" - -#: ../cache/locales.php:273 -msgid "Movim failed to authenticate. You entered wrong data" -msgstr "認識が失敗しました。入力した情報を確認してください" - -#: ../cache/locales.php:274 -msgid "Authentication mechanism not supported by Movim" -msgstr "認識方法が対応されていません" - -#: ../cache/locales.php:275 -msgid "The XMPP authentification failed" -msgstr "XMPP認証に失敗しました" - -#: ../cache/locales.php:276 -#, php-format -msgid "" -"You can login with Facebook (chat only) using %syour.id@chat.facebook.com%s " -"and your password" -msgstr "" - -#: ../cache/locales.php:277 -#, php-format -msgid "%sGmail accounts are also compatible%s but are not fully supported" -msgstr "" - -#: ../cache/locales.php:278 -msgid "You can login using your favorite Jabber account" -msgstr "" - -#: ../cache/locales.php:279 -msgid "or with our demonstration account" -msgstr "" - -#: ../cache/locales.php:280 ../cache/locales.php:435 -msgid "Accounts" -msgstr "アカウント" - -#: ../cache/locales.php:281 -msgid "My address" -msgstr "マイアドレス" - -#: ../cache/locales.php:283 -msgid "Create one !" -msgstr "" - -#: ../cache/locales.php:284 -msgid "No account yet ?" -msgstr "" - -#: ../cache/locales.php:285 -msgid "Another account" -msgstr "違うアカウント" - -#: ../cache/locales.php:286 -msgid "You can login with accounts from theses servers" -msgstr "" - -#: ../cache/locales.php:287 -msgid "Connected" -msgstr "" - -#: ../cache/locales.php:288 -msgid "Population" -msgstr "人口" - -#: ../cache/locales.php:289 -msgid "Bad nickname (between 4 and 40 characters)" -msgstr "" - -#: ../cache/locales.php:292 -msgid "" -"Welcome on your news feed, here you will see all the posts published in the " -"groups you have subscribed." -msgstr "" - -#: ../cache/locales.php:293 -msgid "Refreshing all the streams" -msgstr "" - -#: ../cache/locales.php:294 -msgid "This post is public" -msgstr "" - -#: ../cache/locales.php:295 -msgid "Manage your members" -msgstr "" - -#: ../cache/locales.php:296 -msgid "Get the members" -msgstr "" - -#: ../cache/locales.php:297 -msgid "Affiliations saved" -msgstr "" - -#: ../cache/locales.php:298 -msgid "Manage your subscriptions" -msgstr "サブスクリプションの管理" - -#: ../cache/locales.php:299 -msgid "Manage the subscriptions" -msgstr "サブスクリプションの管理" - -#: ../cache/locales.php:300 -msgid "Get the subscriptions" -msgstr "サブスクリプションを習得する" - -#: ../cache/locales.php:301 -msgid "Subscriptions saved" -msgstr "" - -#: ../cache/locales.php:302 -msgid "Pending Invitations" -msgstr "" - -#: ../cache/locales.php:303 -#, php-format -msgid "%s wants to talk with you" -msgstr "" - -#: ../cache/locales.php:304 -msgid "Manage" -msgstr "管理" - -#: ../cache/locales.php:305 ../cache/locales.php:338 -msgid "News Feed" -msgstr "新着情報" - -#: ../cache/locales.php:306 ../cache/locales.php:339 -msgid "Discover and register to the groups you are interested in" -msgstr "" - -#: ../cache/locales.php:307 ../cache/locales.php:340 ../cache/locales.php:482 -msgid "Preview" -msgstr "プレビュー" - -#: ../cache/locales.php:308 ../cache/locales.php:341 ../cache/locales.php:478 -msgid "Help" -msgstr "ヘルプ" - -#: ../cache/locales.php:309 ../cache/locales.php:342 -msgid "More help" -msgstr "" - -#: ../cache/locales.php:310 ../cache/locales.php:343 -msgid "Markdown syntax manual" -msgstr "" - -#: ../cache/locales.php:311 ../cache/locales.php:344 ../cache/locales.php:681 -msgid "Title" -msgstr "件名" - -#: ../cache/locales.php:312 ../cache/locales.php:345 -msgid "Content" -msgstr "コンテンツ" - -#: ../cache/locales.php:313 ../cache/locales.php:346 -msgid "Link" -msgstr "リンク" - -#: ../cache/locales.php:314 ../cache/locales.php:347 -msgid "Tags" -msgstr "" - -#: ../cache/locales.php:315 ../cache/locales.php:348 -msgid "Please enter a valid url" -msgstr "" - -#: ../cache/locales.php:316 ../cache/locales.php:349 -msgid "No content to preview" -msgstr "" - -#: ../cache/locales.php:317 ../cache/locales.php:350 ../cache/locales.php:687 -msgid "No content" -msgstr "" - -#: ../cache/locales.php:318 ../cache/locales.php:351 -msgid "Post published" -msgstr "" - -#: ../cache/locales.php:319 ../cache/locales.php:352 -msgid "Post deleted" -msgstr "" - -#: ../cache/locales.php:320 ../cache/locales.php:353 -msgid "This picture will be added to your gallery" -msgstr "" - -#: ../cache/locales.php:321 ../cache/locales.php:354 -msgid "What's Hot" -msgstr "" - -#: ../cache/locales.php:322 ../cache/locales.php:355 -msgid "New post" -msgstr "新しい投稿" - -#: ../cache/locales.php:323 ../cache/locales.php:357 -msgid "" -"You can also use services like Imgur or Flickr to host your picture and " -"paste the link here." -msgstr "" - -#: ../cache/locales.php:324 -#, php-format -msgid "This is a re-post from %s" -msgstr "" - -#: ../cache/locales.php:325 -#, php-format -msgid "See %s profile" -msgstr "" - -#: ../cache/locales.php:326 -msgid "Publish this post on your public feed?" -msgstr "" - -#: ../cache/locales.php:327 -msgid "Post published on your blog" -msgstr "" - -#: ../cache/locales.php:328 -msgid "Post removed from your blog" -msgstr "" - -#: ../cache/locales.php:329 ../cache/locales.php:701 -msgid "Delete this post" -msgstr "この投稿を削除する" - -#: ../cache/locales.php:330 -msgid "You are going to delete this post, please confirm your action" -msgstr "この投稿が削除されますが、よろしいですか" - -#: ../cache/locales.php:331 -msgid "Comments disabled" -msgstr "" - -#: ../cache/locales.php:332 -msgid "Comment published" -msgstr "" - -#: ../cache/locales.php:333 -msgid "Disconnect" -msgstr "切断する" - -#: ../cache/locales.php:334 -msgid "Your status here !" -msgstr "" - -#: ../cache/locales.php:335 -msgid "Status updated" -msgstr "ステータスを更新しました" - -#: ../cache/locales.php:336 -msgid "Status" -msgstr "ステータス" - -#: ../cache/locales.php:337 -msgid "Presence" -msgstr "" - -#: ../cache/locales.php:356 -msgid "Publish" -msgstr "" - -#: ../cache/locales.php:358 -msgid "You cannot publish a post on this Group" -msgstr "" - -#: ../cache/locales.php:359 -msgid "" -"Some fields have been filled in. Do you still want to go back and loose " -"their content?" -msgstr "" - -#: ../cache/locales.php:360 -msgid "Shared" -msgstr "" - -#: ../cache/locales.php:362 -#, php-format -msgid "%s has been added to your public groups" -msgstr "" - -#: ../cache/locales.php:363 -#, php-format -msgid "%s has been removed from your public groups" -msgstr "" - -#: ../cache/locales.php:364 -msgid "Add a chatroom" -msgstr "チャットルームを追加する" - -#: ../cache/locales.php:365 -msgid "You don't have any chatroom yet." -msgstr "チャットルームはまだありません" - -#: ../cache/locales.php:366 -msgid "Add one by clicking on the add button in the header." -msgstr "追加するにはボタンを押してください" - -#: ../cache/locales.php:367 -msgid "Chatrooms" -msgstr "チャットルーム" - -#: ../cache/locales.php:370 -msgid "My Favorite Room" -msgstr "" - -#: ../cache/locales.php:374 -msgid "Remove a chatroom" -msgstr "ルームを削除する" - -#: ../cache/locales.php:375 -msgid "" -"You are going to remove the following chatroom. Please confirm your action." -msgstr "" - -#: ../cache/locales.php:378 -msgid "Users in the room" -msgstr "" - -#: ../cache/locales.php:379 -msgid "Please enter a correct nickname (6 to 40 characters)" -msgstr "" - -#: ../cache/locales.php:381 -msgid "Public chatroom" -msgstr "" - -#: ../cache/locales.php:382 -msgid "Please provide a room address" -msgstr "" - -#: ../cache/locales.php:383 -msgid "You are currently logued as an anonymous user." -msgstr "" - -#: ../cache/locales.php:384 -msgid "" -"You can join using your own account or create one on the login page by " -"loging out using the cross in the top-right corner." -msgstr "" - -#: ../cache/locales.php:385 -#, php-format -msgid "Login on %s" -msgstr "" - -#: ../cache/locales.php:386 -msgid "Your nickname" -msgstr "" - -#: ../cache/locales.php:387 -msgid "Ungrouped" -msgstr "" - -#: ../cache/locales.php:388 -msgid "Show disconnected contacts" -msgstr "オフラインの連絡先を表示" - -#: ../cache/locales.php:389 -msgid "Hide disconnected contacts" -msgstr "オフラインの連絡先を非表示" - -#: ../cache/locales.php:390 -#, php-format -msgid "Show group %s" -msgstr "グループ%sを表示" - -#: ../cache/locales.php:391 -#, php-format -msgid "Hide group %s" -msgstr "グループ%sを非表示" - -#: ../cache/locales.php:392 -msgid "Please enter a valid Jabber ID" -msgstr "正しいジャバーIDを入力してください" - -#: ../cache/locales.php:393 -msgid "" -"No contacts ? You can add one using the + button bellow or going to the " -"Explore page" -msgstr "" - -#: ../cache/locales.php:394 -msgid "Show/Hide" -msgstr "表示/非表示" - -#: ../cache/locales.php:395 -msgid "Enter the Jabber ID of your contact." -msgstr "" - -#: ../cache/locales.php:396 -msgid "Press enter to validate." -msgstr "" - -#: ../cache/locales.php:397 -msgid "JID" -msgstr "JID" - -#: ../cache/locales.php:398 -msgid "Results" -msgstr "検索結果" - -#: ../cache/locales.php:399 -msgid "Contact added" -msgstr "コンタクトが追加されました" - -#: ../cache/locales.php:401 -msgid "Contact deleted" -msgstr "コンタクトが削除されました" - -#: ../cache/locales.php:403 -msgid "This is not a valid url" -msgstr "" - -#: ../cache/locales.php:404 -msgid "Sharing the URL" -msgstr "" - -#: ../cache/locales.php:405 -msgid "Statistics" -msgstr "" - -#: ../cache/locales.php:406 -msgid "Since" -msgstr "" - -#: ../cache/locales.php:407 -msgid "Sessions" -msgstr "セッション" - -#: ../cache/locales.php:409 -msgid "Monthly Subscriptions" -msgstr "" - -#: ../cache/locales.php:410 -msgid "Monthly Subscriptions Cumulated" -msgstr "" - -#: ../cache/locales.php:412 -msgid "" -"Movim is a decentralized social network, before creating a new account you " -"need to choose a server to register." -msgstr "" - -#: ../cache/locales.php:413 -msgid "Your server here ?" -msgstr "" - -#: ../cache/locales.php:414 -msgid "Contact us to add yours to the officially supported servers list" -msgstr "" - -#: ../cache/locales.php:416 -msgid "No public feed for this contact" -msgstr "" - -#: ../cache/locales.php:417 -msgid "No contact specified" -msgstr "" - -#: ../cache/locales.php:418 ../cache/locales.php:473 -msgid "Profile" -msgstr "プロフィール" - -#: ../cache/locales.php:419 -msgid "Profile Updated" -msgstr "プロフィールを更新しました" - -#: ../cache/locales.php:420 -msgid "Profile Not Updated" -msgstr "プロファイルは更新されませんでした" - -#: ../cache/locales.php:421 -msgid "Your profile is now public" -msgstr "あなたのプロファイルは公開されました" - -#: ../cache/locales.php:422 -msgid "Your profile is now restricted" -msgstr "あなたのプロファイルは非公開されました" - -#: ../cache/locales.php:436 -msgid "Twitter" -msgstr "Twitter" - -#: ../cache/locales.php:437 -msgid "Skype" -msgstr "Skype" - -#: ../cache/locales.php:438 -msgid "Yahoo" -msgstr "Yahoo" - -#: ../cache/locales.php:439 -msgid "Privacy Level" -msgstr "" - -#: ../cache/locales.php:440 -msgid "Is this profile public ?" -msgstr "" - -#: ../cache/locales.php:441 -msgid "" -"Please pay attention ! By making your profile public, all the information " -"listed above will be available for all the Movim users and on the whole " -"Internet." -msgstr "" - -#: ../cache/locales.php:442 -msgid "Call" -msgstr "呼び出し" - -#: ../cache/locales.php:443 -msgid "Hang up" -msgstr "" - -#: ../cache/locales.php:444 -msgid "Connection" -msgstr "" - -#: ../cache/locales.php:445 ../cache/locales.php:451 -msgid "Hung up" -msgstr "" - -#: ../cache/locales.php:446 ../cache/locales.php:452 -msgid "Your contact is busy" -msgstr "" - -#: ../cache/locales.php:447 ../cache/locales.php:453 -msgid "Declined" -msgstr "" - -#: ../cache/locales.php:448 ../cache/locales.php:454 -msgid "Remote application incompatible" -msgstr "" - -#: ../cache/locales.php:450 ../cache/locales.php:456 -msgid "Is calling you" -msgstr "" - -#: ../cache/locales.php:457 -msgid "You don't have javascript enabled. Good luck with that." -msgstr "" - -#: ../cache/locales.php:458 -msgid "" -"Movim is a kickass distributed social networking platform that protect your " -"privacy an comes with a set of awesome features." -msgstr "" - -#: ../cache/locales.php:459 -msgid "Administration" -msgstr "システム管理" - -#: ../cache/locales.php:460 -msgid "Home" -msgstr "ホーム" - -#: ../cache/locales.php:461 -msgid "Discover" -msgstr "" - -#: ../cache/locales.php:462 -msgid "Explore" -msgstr "" - -#: ../cache/locales.php:463 -msgid "Account Creation" -msgstr "アカウント作成" - -#: ../cache/locales.php:464 +#: [hello]news [page]news msgid "News" msgstr "新着情報" -#: ../cache/locales.php:465 -msgid "Avatar" -msgstr "アバター" +#: [hello]news_page +msgid "Read all theses articles on the News page" +msgstr "新着情報をもっと読む" -#: ../cache/locales.php:467 -msgid "Chats" -msgstr "チャット" +#: [hello]blog_title +msgid "Visit your public blog" +msgstr "公開ブログへ" -#: ../cache/locales.php:470 -msgid "Server" -msgstr "サーバー" - -#: ../cache/locales.php:471 -msgid "Public Groups" +#: [hello]blog_text +msgid "See your public posts and share them with all your contacts" msgstr "" -#: ../cache/locales.php:472 -msgid "Viewer" +#: [hello]share_title +msgid "Universal share button" msgstr "" -#: ../cache/locales.php:474 -msgid "Media" -msgstr "画像" - -#: ../cache/locales.php:475 -msgid "Blog" -msgstr "ブログ" - -#: ../cache/locales.php:476 -msgid "About" +#: [hello]share_text +msgid "Bookmark or drag and drop the following button in your toolbar and use it on all the pages you want to share on Movim" msgstr "" -#: ../cache/locales.php:477 -msgid "Login" -msgstr "ログイン" +#: [hello]share_button +msgid "Share on Movim" +msgstr "Movimで共有する" -#: ../cache/locales.php:479 -msgid "Feed" -msgstr "フィード" +#: [help]faq +msgid "Frequently Asked Questions" +msgstr "よくある質問" -#: ../cache/locales.php:481 -msgid "Gallery" +#: [banner]title +msgid "What do the little banners refer to ?" +msgstr "この標の意味はなんですか" + +#: [banner]info1 +msgid "Thanks to these five little banners, you can quickly identitfy the level of confdentiality applied to the information you provide." +msgstr "この標で、あなとが公開しているデータの機密性が分かります。" + +#: [banner]white +msgid "White, only you can see the information" +msgstr "白、あなとしか見れない" + +#: [banner]green +msgid "Green, you have chosen some contacts who can see your information" +msgstr "緑、シェアーしているコンタクトしか見れない" + +#: [banner]orange +msgid "Orange, all your contact list can see your information" +msgstr "オレンジ、あなたのコンタクト全員が見れる" + +#: [banner]red +msgid "Red, everybody in the XMPP network can see your information" +msgstr "XMPPを使っている人全員が見れる" + +#: [banner]black +msgid "Black, the whole Internet can see your information" +msgstr "黒、誰でも見れる" + +#: [wiki]question +msgid "Looking for some documentation ?" +msgstr "ドキュメンテーションお探しですか" + +#: [wiki]button +msgid "Read the Wiki" +msgstr "Wiki へ" + +#: [ml]question +msgid "Talk with us by email ?" +msgstr "メールで連絡したいと思っていますか" + +#: [ml]button +msgid "Join the Mailing List" +msgstr "Mailing List に登録する" + +#: [chatroom]question +msgid "Chat with the team ?" +msgstr "チャットがいいですか" + +#: [chatroom]button +msgid "Join the Chatroom" +msgstr "チャットルームに来てください" + +#: [init]location +msgid "Location node created" msgstr "" -#: ../cache/locales.php:483 -msgid "Visio-conference" +#: [init]bookmark +msgid "Bookmark node created" msgstr "" -#: ../cache/locales.php:484 -msgid "Pods" +#: [init]vcard4 +msgid "Profile node created" msgstr "" -#: ../cache/locales.php:485 -msgid "Share" +#: [init]avatar +msgid "Avatar node created" msgstr "" -#: ../cache/locales.php:486 -msgid "Room" +#: [init]subscriptions +msgid "Subscriptions node created" msgstr "" -#: ../cache/locales.php:487 -#, php-format -msgid "Error: %s" -msgstr "エラーが発生しました。%s" - -#: ../cache/locales.php:488 -#, php-format -msgid "Cannot load file '%s'" -msgstr "「%s」というファイルをロードできません。" - -#: ../cache/locales.php:489 -#, php-format -msgid "Route error, please set all the parameters for the page %s" +#: [init]microblog +msgid "Microblog node created" msgstr "" -#: ../cache/locales.php:490 -#, php-format -msgid "Requested widget '%s' doesn't exist." +#: [location]title +msgid "Location" +msgstr "現在地" + +#: [location]wrong_postition +msgid "Wrong position" msgstr "" -#: ../cache/locales.php:491 -#, php-format -msgid "Requested event '%s' not registered." +#: [location]updated +msgid "Location updated" +msgstr "現在地が更新されました" + +#: [location]update +msgid "Update my position" +msgstr "現在地を更新する" + +#: [login_anonymous]bad_username +msgid "Bad nickname (between 4 and 40 characters)" msgstr "" -#: ../cache/locales.php:492 -msgid "Whoops!" +#: [error]username +msgid "Wrong username" +msgstr "ユーザ名が正しくありません" + +#: [error]jid +msgid "Invalid JID" +msgstr "JID が正しくありません" + +#: [error]empty_challenge +msgid "Empty Challenge from the server" msgstr "" -#: ../cache/locales.php:493 -msgid "It seem that you don't have any pictures here?" +#: [error]dns +msgid "XMPP Domain error, your account is not a correct Jabber ID" +msgstr "XMPPドメインエラーが発生しました。使われているアカウントは不可なJabberIDです。" + +#: [error]data_missings +msgid "Some data are missing !" +msgstr "いくつかのデータが足りません。" + +#: [error]wrong_password +msgid "Wrong password" +msgstr "パスワードが違います" + +#: [error]internal +msgid "Internal server error" +msgstr "内部エラー" + +#: [error]session +msgid "Session error" +msgstr "セッションエラー" + +#: [error]account_created +msgid "Account successfully created" +msgstr "アカウントが正常に作成されました" + +#: [error]xmpp_unauthorized +#, fuzzy +msgctxt "[error]xmpp_unauthorized" +msgid "Your XMPP server is unauthorized" +msgstr "あなとが使用しているXMPPサーバーは許可がありません" + +#: [error]mec_error +msgid "The server takes too much time to respond" +msgstr "このサーバは重すぎます" + +#: [error]too_old +msgid "Your web browser is too old to use with Movim." +msgstr "ブラウザーのバージョンが古すぎてMovimを使用できません" + +#: [error]websocket +msgid "Movim cannot talk with the server, please try again later (Websocket connection error)" msgstr "" -#: ../cache/locales.php:494 -msgid "You can try to upload a couple by going to the Media page" +#: [error]impossible +msgid "Impossible login" msgstr "" -#: ../cache/locales.php:495 -#, php-format -msgid "%s - About" +#: [error]title +msgid "Oops!" +msgstr "おっとぉ!" + +#: [error]default [visio]unknown_error +msgid "Unknown error" +msgstr "原因不明のエラー" + +#: [error]login_format +msgid "Invalid username format" msgstr "" -#: ../cache/locales.php:496 -#, php-format -msgid "%s - Account" -msgstr "%s - アカウント" - -#: ../cache/locales.php:497 -#, php-format -msgid "%s - Administration Panel" +#: [error]password_format +msgid "Invalid password format" msgstr "" -#: ../cache/locales.php:498 -#, php-format -msgid "%s - Blog" +#: [error]unauthorized +#, fuzzy +msgctxt "[error]unauthorized" +msgid "Your XMPP server is unauthorized" +msgstr "あなとが使用しているXMPPサーバーは許可がありません" + +#: [error]conflict +msgid "A Movim session is already open on an other device" +msgstr "他にセッションが存在しています" + +#: [error]wrong_account +msgid "Movim failed to authenticate. You entered wrong data" +msgstr "認識が失敗しました。入力した情報を確認してください" + +#: [error]mechanism +msgid "Authentication mechanism not supported by Movim" +msgstr "認識方法が対応されていません" + +#: [error]fail_auth +msgid "The XMPP authentification failed" +msgstr "XMPP認証に失敗しました" + +#: [account]title [accounts]accounts_title +msgid "Accounts" +msgstr "アカウント" + +#: [form]username +msgid "My address" +msgstr "マイアドレス" + +#: [form]create_one +msgid "Create one !" msgstr "" -#: ../cache/locales.php:499 -#, php-format -msgid "%s - Configuration" -msgstr "%s - 設定" +#: [form]another_account +msgid "Another account" +msgstr "違うアカウント" -#: ../cache/locales.php:500 -#, php-format -msgid "%s - Discover" +#: [form]no_account +msgid "No account yet ?" msgstr "" -#: ../cache/locales.php:501 -#, php-format -msgid "%s - Explore" +#: [form]whitelist.info +msgid "You can login with accounts from theses servers" msgstr "" -#: ../cache/locales.php:502 -#, php-format -msgid "%s - Help Page" -msgstr "%s - ヘルプページ" - -#: ../cache/locales.php:503 -#, php-format -msgid "%s - Login to Movim" -msgstr "%s - MOVIMにログインする" - -#: ../cache/locales.php:504 -#, php-format -msgid "%s - Welcome to Movim" -msgstr "%s - MOVIMへようこそ" - -#: ../cache/locales.php:505 -#, php-format -msgid "%s - Media" +#: [form]connected +msgid "Connected" msgstr "" -#: ../cache/locales.php:506 -#, php-format -msgid "%s - News" +#: [form]population +msgid "Population" +msgstr "人口" + +#: [menu]empty_title +#, fuzzy +msgid "No news yet..." +msgstr "コメントがまだありません" + +#: [menu]empty +msgid "Welcome on your news feed, here you will see all the posts published by your contacts and in the groups you have subscribed." msgstr "" -#: ../cache/locales.php:507 -#, php-format -msgid "%s - Group Configuration" +#: [menu]refresh +msgid "Refreshing all the streams" msgstr "" -#: ../cache/locales.php:508 -#, php-format -msgid "%s - Group" +#: [menu]public +msgid "This post is public" msgstr "" -#: ../cache/locales.php:509 -#, php-format -msgid "%s - 404" +#: [affiliations]title +msgid "Manage your members" msgstr "" -#: ../cache/locales.php:510 -#, php-format -msgid "%s - Profile" -msgstr "%s - プロファイル" - -#: ../cache/locales.php:511 -#, php-format -msgid "%s - Server" +#: [affiliations]get +msgid "Get the members" msgstr "" -#: ../cache/locales.php:512 -msgid "Validate" -msgstr "確認" - -#: ../cache/locales.php:513 -msgid "Refresh" -msgstr "再読込" - -#: ../cache/locales.php:514 -msgid "Add" -msgstr "追加" - -#: ../cache/locales.php:515 -msgid "Delete" +#: [affiliations]saved +msgid "Affiliations saved" msgstr "" -#: ../cache/locales.php:516 -msgid "Remove" +#: [subscriptions]title +msgid "Manage your subscriptions" +msgstr "サブスクリプションの管理" + +#: [subscriptions]info +msgid "Manage the subscriptions" +msgstr "サブスクリプションの管理" + +#: [subscriptions]get +msgid "Get the subscriptions" +msgstr "サブスクリプションを習得する" + +#: [subscriptions]saved +msgid "Subscriptions saved" msgstr "" -#: ../cache/locales.php:517 -msgid "Cancel" +#: [notifs]title +msgid "Pending Invitations" msgstr "" -#: ../cache/locales.php:518 -msgid "Close" -msgstr "閉じる" +#: [notifs]wants_to_talk +msgid "%s wants to talk with you" +msgstr "" -#: ../cache/locales.php:519 -msgid "Update" -msgstr "更新" +#: [notifs]manage +msgid "Manage" +msgstr "管理" -#: ../cache/locales.php:520 -msgid "Updating" -msgstr "更新中" +#: [post]news_feed +msgid "News Feed" +msgstr "新着情報" -#: ../cache/locales.php:521 +#: [post]placeholder +msgid "Discover and register to the groups you are interested in" +msgstr "" + +#: [post]preview [page]preview +msgid "Preview" +msgstr "プレビュー" + +#: [post]help [page]help +msgid "Help" +msgstr "ヘルプ" + +#: [post]help_more +msgid "More help" +msgstr "" + +#: [post]help_manual +msgid "Markdown syntax manual" +msgstr "" + +#: [post]title +msgid "Title" +msgstr "件名" + +#: [post]content +msgid "Content" +msgstr "コンテンツ" + +#: [post]link +msgid "Link" +msgstr "リンク" + +#: [post]tags +msgid "Tags" +msgstr "" + +#: [post]valid_url [publish]valid_url +msgid "Please enter a valid url" +msgstr "" + +#: [post]no_content_preview [publish]no_content_preview +msgid "No content to preview" +msgstr "" + +#: [post]no_content [publish]no_content [post]empty +msgid "No content" +msgstr "" + +#: [post]published +msgid "Post published" +msgstr "" + +#: [post]deleted +msgid "Post deleted" +msgstr "" + +#: [post]gallery +msgid "This picture will be added to your gallery" +msgstr "" + +#: [post]hot +msgid "What's Hot" +msgstr "" + +#: [post]hot_text +msgid "Posts recently published in Groups that you are not subscribed (yet)" +msgstr "" + +#: [post]new [publish]new +msgid "New post" +msgstr "新しい投稿" + +#: [post]embed_tip +msgid "You can also use services like Imgur or Flickr to host your picture and paste the link here." +msgstr "" + +#: [post]repost +msgid "This is a re-post from %s" +msgstr "" + +#: [post]repost_profile +msgid "See %s profile" +msgstr "" + +#: [post]public +msgid "Publish this post publicly?" +msgstr "" + +#: [post]blog_add +msgid "Post published on your blog" +msgstr "" + +#: [post]blog_remove +msgid "Post removed from your blog" +msgstr "" + +#: [post]delete_title [post]delete +msgid "Delete this post" +msgstr "この投稿を削除する" + +#: [post]delete_text +msgid "You are going to delete this post, please confirm your action" +msgstr "この投稿が削除されますが、よろしいですか" + +#: [post]comments_disabled +msgid "Comments disabled" +msgstr "" + +#: [post]comment_published +msgid "Comment published" +msgstr "" + +#: [status]disconnect +msgid "Disconnect" +msgstr "切断する" + +#: [status]here +msgid "Your status here !" +msgstr "" + +#: [status]updated +msgid "Status updated" +msgstr "ステータスを更新しました" + +#: [status]status +msgid "Status" +msgstr "ステータス" + +#: [status]presence +msgid "Presence" +msgstr "" + +#: [status]online +msgid "Online with Movim" +msgstr "" + +#: [publish]title +msgid "Publish" +msgstr "" + +#: [publish]attach +msgid "Add a file or a picture to your post" +msgstr "" + +#: [publish]no_publication +msgid "You cannot publish a post on this Group" +msgstr "" + +#: [publish]form_filled +msgid "Some fields have been filled in. Do you still want to go back and loose their content?" +msgstr "" + +#: [public_groups]shared +msgid "Shared" +msgstr "" + +#: [public_groups]added +msgid "%s has been added to your public groups" +msgstr "" + +#: [rooms]add +msgid "Add a chatroom" +msgstr "チャットルームを追加する" + +#: [rooms]empty_text1 +msgid "You don't have any chatroom yet." +msgstr "チャットルームはまだありません" + +#: [rooms]empty_text2 +msgid "Add one by clicking on the add button in the header." +msgstr "追加するにはボタンを押してください" + +#: [chatrooms]title +msgid "Chatrooms" +msgstr "チャットルーム" + +#: [chatrooms]name_placeholder +msgid "My Favorite Room" +msgstr "" + +#: [chatrooms]users +msgid "Users in the room" +msgstr "" + +#: [chatrooms]bad_nickname +msgid "Please enter a correct nickname (2 to 40 characters)" +msgstr "" + +#: [room]anonymous_title +msgid "Public chatroom" +msgstr "" + +#: [room]no_room +msgid "Please provide a room address" +msgstr "" + +#: [room]anonymous_text1 +msgid "You are currently logued as an anonymous user." +msgstr "" + +#: [room]anonymous_text2 +msgid "You can join using your own account or create one on the login page by loging out using the cross in the top-right corner." +msgstr "" + +#: [room]anonymous_login +msgid "Login on %s" +msgstr "" + +#: [room]nick +msgid "Your nickname" +msgstr "" + +#: [roster]ungrouped +msgid "Ungrouped" +msgstr "" + +#: [roster]show_disconnected +msgid "Show disconnected contacts" +msgstr "オフラインの連絡先を表示" + +#: [roster]hide_disconnected +msgid "Hide disconnected contacts" +msgstr "オフラインの連絡先を非表示" + +#: [roster]show_group +msgid "Show group %s" +msgstr "グループ%sを表示" + +#: [roster]hide_group +msgid "Hide group %s" +msgstr "グループ%sを非表示" + +#: [roster]jid_error +msgid "Please enter a valid Jabber ID" +msgstr "正しいジャバーIDを入力してください" + +#: [roster]no_contacts_title +#, fuzzy +msgid "No contacts ?" +msgstr "コンタクト" + +#: [roster]no_contacts_text +msgid "You can add one using the + button bellow" +msgstr "" + +#: [roster]show_hide +msgid "Show/Hide" +msgstr "表示/非表示" + +#: [roster]add_contact_info1 +msgid "Enter the Jabber ID of your contact." +msgstr "" + +#: [roster]add_contact_info2 +msgid "Press enter to validate." +msgstr "" + +#: [roster]jid +msgid "JID" +msgstr "JID" + +#: [roster]results +msgid "Results" +msgstr "検索結果" + +#: [roster]added +msgid "Contact added" +msgstr "コンタクトが追加されました" + +#: [roster]deleted +msgid "Contact deleted" +msgstr "コンタクトが削除されました" + +#: [roster]search +msgid "Search" +msgstr "検索" + +#: [share]error +msgid "This is not a valid url" +msgstr "" + +#: [share]success +msgid "Sharing the URL" +msgstr "" + +#: [statistics]title +msgid "Statistics" +msgstr "" + +#: [statistics]since +msgid "Since" +msgstr "" + +#: [statistics]sessions +msgid "Sessions" +msgstr "セッション" + +#: [statistics]monthly_sub +msgid "Monthly Subscriptions" +msgstr "" + +#: [statistics]monthly_sub_cum +msgid "Monthly Subscriptions Cumulated" +msgstr "" + +#: [subscribe]info +msgid "Movim is a decentralized social network, before creating a new account you need to choose a server to register." +msgstr "" + +#: [subscribe]server_question +msgid "Your server here ?" +msgstr "" + +#: [subscribe]server_contact +msgid "Contact us to add yours to the officially supported servers list" +msgstr "" + +#: [feed]nope +msgid "No public feed for this contact" +msgstr "" + +#: [feed]nope_contact +msgid "No contact specified" +msgstr "" + +#: [upload]title +#, fuzzy +msgid "Upload a file" +msgstr "アップロード" + +#: [upload]choose +msgid "Choose a file to upload" +msgstr "" + +#: [vcard]title [page]profile +msgid "Profile" +msgstr "プロフィール" + +#: [vcard]updated +msgid "Profile Updated" +msgstr "プロフィールを更新しました" + +#: [vcard]not_updated +msgid "Profile Not Updated" +msgstr "プロファイルは更新されませんでした" + +#: [vcard]public +msgid "Your profile is now public" +msgstr "あなたのプロファイルは公開されました" + +#: [vcard]restricted +msgid "Your profile is now restricted" +msgstr "あなたのプロファイルは非公開されました" + +#: [general]nickname +#, fuzzy +msgctxt "[general]nickname" +msgid "Nickname" +msgstr "ニックネーム" + +#: [accounts]twitter +msgid "Twitter" +msgstr "Twitter" + +#: [accounts]skype +msgid "Skype" +msgstr "Skype" + +#: [accounts]yahoo +msgid "Yahoo" +msgstr "Yahoo" + +#: [accounts]accounts_nickname +#, fuzzy +msgctxt "[accounts]accounts_nickname" +msgid "Nickname" +msgstr "ニックネーム" + +#: [accounts]accounts_yahoo +#, fuzzy +msgid "Yahoo Account" +msgstr "アカウント" + +#: [privacy]privacy_title +msgid "Privacy Level" +msgstr "" + +#: [privacy]privacy_question +msgid "Is this profile public ?" +msgstr "" + +#: [privacy]privacy_info +msgid "Please pay attention ! By making your profile public, all the information listed above will be available for all the Movim users and on the whole Internet." +msgstr "" + +#: [save]submit [button]submit msgid "Submit" msgstr "送信" -#: ../cache/locales.php:522 -msgid "Submitting" -msgstr "" - -#: ../cache/locales.php:523 +#: [save]reset [button]reset msgid "Reset" msgstr "リセット" -#: ../cache/locales.php:524 +#: [visio]hung_up +msgid "Hung up" +msgstr "" + +#: [visio]busy +msgid "Your contact is busy" +msgstr "" + +#: [visio]declined +msgid "Declined" +msgstr "" + +#: [visio]calling +msgid "Is calling you" +msgstr "" + +#: [visio]call +msgid "Call" +msgstr "呼び出し" + +#: [visio]hang_up +msgid "Hang up" +msgstr "" + +#: [visio]connection +msgid "Connection" +msgstr "" + +#: [global]no_js +msgid "You don't have javascript enabled. Good luck with that." +msgstr "" + +#: [global]description +msgid "Movim is a kickass distributed social networking platform that protect your privacy an comes with a set of awesome features." +msgstr "" + +#: [page]administration +msgid "Administration" +msgstr "システム管理" + +#: [page]home +msgid "Home" +msgstr "ホーム" + +#: [page]discover +msgid "Discover" +msgstr "" + +#: [page]explore +msgid "Explore" +msgstr "" + +#: [page]account_creation +msgid "Account Creation" +msgstr "アカウント作成" + +#: [page]avatar +msgid "Avatar" +msgstr "アバター" + +#: [page]chats +msgid "Chats" +msgstr "チャット" + +#: [page]server +msgid "Server" +msgstr "サーバー" + +#: [page]public_groups +msgid "Public Groups" +msgstr "" + +#: [page]viewer +msgid "Viewer" +msgstr "" + +#: [page]media +msgid "Media" +msgstr "画像" + +#: [page]blog +msgid "Blog" +msgstr "ブログ" + +#: [page]about +msgid "About" +msgstr "" + +#: [page]login +msgid "Login" +msgstr "ログイン" + +#: [page]feed +msgid "Feed" +msgstr "フィード" + +#: [page]gallery +msgid "Gallery" +msgstr "" + +#: [page]visio +msgid "Visio-conference" +msgstr "" + +#: [page]pods +msgid "Pods" +msgstr "" + +#: [page]share +msgid "Share" +msgstr "" + +#: [page]room +msgid "Room" +msgstr "" + +#: [error]error +msgid "Error: %s" +msgstr "エラーが発生しました。%s" + +#: [error]cannot_load_file +msgid "Cannot load file '%s'" +msgstr "「%s」というファイルをロードできません。" + +#: [error]route +msgid "Route error, please set all the parameters for the page %s" +msgstr "" + +#: [error]widget_load_error +msgid "Requested widget '%s' doesn't exist." +msgstr "" + +#: [error]widget_call_error +msgid "Requested event '%s' not registered." +msgstr "" + +#: [error]whoops +msgid "Whoops!" +msgstr "" + +#: [error]media_not_found +msgid "It seem that you don't have any pictures here?" +msgstr "" + +#: [error]media_ask_upload +msgid "You can try to upload a couple by going to the Media page" +msgstr "" + +#: [title]about +msgid "%s - About" +msgstr "" + +#: [title]account +msgid "%s - Account" +msgstr "%s - アカウント" + +#: [title]administration +msgid "%s - Administration Panel" +msgstr "" + +#: [title]blog +msgid "%s - Blog" +msgstr "" + +#: [title]configuration +msgid "%s - Configuration" +msgstr "%s - 設定" + +#: [title]discover +msgid "%s - Discover" +msgstr "" + +#: [title]explore +msgid "%s - Explore" +msgstr "" + +#: [title]help +msgid "%s - Help Page" +msgstr "%s - ヘルプページ" + +#: [title]login +msgid "%s - Login to Movim" +msgstr "%s - MOVIMにログインする" + +#: [title]main +msgid "%s - Welcome to Movim" +msgstr "%s - MOVIMへようこそ" + +#: [title]media +msgid "%s - Media" +msgstr "" + +#: [title]news +msgid "%s - News" +msgstr "" + +#: [title]node_configuration +msgid "%s - Group Configuration" +msgstr "" + +#: [title]node +msgid "%s - Group" +msgstr "" + +#: [title]not_found +msgid "%s - 404" +msgstr "" + +#: [title]profile +msgid "%s - Profile" +msgstr "%s - プロファイル" + +#: [title]server +msgid "%s - Server" +msgstr "" + +#: [button]validate +msgid "Validate" +msgstr "確認" + +#: [button]refresh +msgid "Refresh" +msgstr "再読込" + +#: [button]add +msgid "Add" +msgstr "追加" + +#: [button]delete +msgid "Delete" +msgstr "" + +#: [button]cancel +msgid "Cancel" +msgstr "" + +#: [button]close +msgid "Close" +msgstr "閉じる" + +#: [button]update +msgid "Update" +msgstr "更新" + +#: [button]updating +msgid "Updating" +msgstr "更新中" + +#: [button]submitting +msgid "Submitting" +msgstr "" + +#: [button]register msgid "Register" msgstr "" -#: ../cache/locales.php:525 +#: [button]unregister msgid "Unregister" msgstr "" -#: ../cache/locales.php:526 +#: [button]save msgid "Save" msgstr "保存" -#: ../cache/locales.php:527 +#: [button]clear msgid "Clear" msgstr "" -#: ../cache/locales.php:528 +#: [button]upload msgid "Upload" msgstr "アップロード" -#: ../cache/locales.php:529 +#: [button]come_in msgid "Come in!" msgstr "来てください!" -#: ../cache/locales.php:530 +#: [button]connecting msgid "Connecting" msgstr "" -#: ../cache/locales.php:531 +#: [button]bool_yes msgid "Yes" msgstr "はい" -#: ../cache/locales.php:532 +#: [button]bool_no msgid "No" msgstr "いいえ" -#: ../cache/locales.php:534 +#: [button]return msgid "Return" msgstr "" -#: ../cache/locales.php:535 +#: [button]accept msgid "Accept" msgstr "承知する" -#: ../cache/locales.php:536 +#: [button]refuse msgid "Refuse" msgstr "" -#: ../cache/locales.php:537 +#: [button]next msgid "Next" msgstr "次へ" -#: ../cache/locales.php:538 +#: [button]previous msgid "Previous" msgstr "前へ" -#: ../cache/locales.php:539 -#, php-format +#: [step]step msgid "Step %s" msgstr "" -#: ../cache/locales.php:542 +#: [day]title msgid "Day" msgstr "日" -#: ../cache/locales.php:543 +#: [day]monday msgid "Monday" msgstr "月曜日" -#: ../cache/locales.php:544 +#: [day]tuesday msgid "Tuesday" msgstr "火曜日" -#: ../cache/locales.php:545 +#: [day]wednesday msgid "Wednesday" msgstr "水曜日" -#: ../cache/locales.php:546 +#: [day]thursday msgid "Thursday" msgstr "木曜日" -#: ../cache/locales.php:547 +#: [day]friday msgid "Friday" msgstr "金曜日" -#: ../cache/locales.php:548 +#: [day]saturday msgid "Saturday" msgstr "土曜日" -#: ../cache/locales.php:549 +#: [day]sunday msgid "Sunday" msgstr "" -#: ../cache/locales.php:550 ../cache/locales.php:559 +#: [gender]nil +#, fuzzy +msgctxt "[gender]nil" msgid "None" msgstr "なし" -#: ../cache/locales.php:551 +#: [gender]male msgid "Male" msgstr "男性" -#: ../cache/locales.php:552 +#: [gender]female msgid "Female" msgstr "女性" -#: ../cache/locales.php:553 +#: [gender]other msgid "Other" msgstr "その他" -#: ../cache/locales.php:554 +#: [client]bot msgid "Bot" msgstr "ボット" -#: ../cache/locales.php:555 +#: [client]desktop msgid "Desktop" msgstr "デスクトップ" -#: ../cache/locales.php:556 +#: [client]phone msgid "Phone" msgstr "電話" -#: ../cache/locales.php:557 +#: [client]web msgid "Web" msgstr "ウェブ" -#: ../cache/locales.php:558 +#: [client]registered msgid "Registered" msgstr "登録済み" -#: ../cache/locales.php:560 +#: [marital]nil +#, fuzzy +msgctxt "[marital]nil" +msgid "None" +msgstr "なし" + +#: [marital]single msgid "Single" msgstr "独身" -#: ../cache/locales.php:561 +#: [marital]relationship msgid "In a relationship" msgstr "カップル" -#: ../cache/locales.php:562 +#: [marital]married msgid "Married" msgstr "既婚" -#: ../cache/locales.php:563 +#: [marital]divorced msgid "Divorced" msgstr "離婚" -#: ../cache/locales.php:564 +#: [marital]widowed msgid "Widowed" msgstr "死別" -#: ../cache/locales.php:565 +#: [marital]cohabiting msgid "Cohabiting" msgstr "共有" -#: ../cache/locales.php:566 +#: [marital]union msgid "Civil Union" msgstr "市民結合" -#: ../cache/locales.php:567 +#: [flag]white msgid "Not shared" msgstr "共有されていません" -#: ../cache/locales.php:568 +#: [flag]green msgid "Shared with one contact" msgstr "一人のコンタクトと共有" -#: ../cache/locales.php:569 +#: [flag]orange msgid "Shared with all contacts" msgstr "全てのコンタクトと共有" -#: ../cache/locales.php:570 +#: [flag]red msgid "Shared with the XMPP network" msgstr "XMPPネットワークと共有" -#: ../cache/locales.php:571 +#: [flag]black msgid "Shared with the whole Internet" msgstr "全てと共有" -#: ../cache/locales.php:572 +#: [presence]online msgid "Online" msgstr "オンライン" -#: ../cache/locales.php:573 +#: [presence]away msgid "Away" msgstr "離席中" -#: ../cache/locales.php:574 +#: [presence]dnd msgid "Do Not Disturb" msgstr "取り込み中" -#: ../cache/locales.php:575 +#: [presence]xa msgid "Extended Away" msgstr "長時間の不在" -#: ../cache/locales.php:576 +#: [presence]offline msgid "Offline" msgstr "オフライン" -#: ../cache/locales.php:577 +#: [presence]error msgid "Error" msgstr "エラー" -#: ../cache/locales.php:578 +#: [mood]afraid msgid "afraid" msgstr "" -#: ../cache/locales.php:579 +#: [mood]amazed msgid "amazed" msgstr "" -#: ../cache/locales.php:580 +#: [mood]amorous msgid "amorous" msgstr "" -#: ../cache/locales.php:581 +#: [mood]angry msgid "angry" msgstr "" -#: ../cache/locales.php:582 +#: [mood]annoyed msgid "annoyed" msgstr "" -#: ../cache/locales.php:583 +#: [mood]anxious msgid "anxious" msgstr "" -#: ../cache/locales.php:584 +#: [mood]aroused msgid "aroused" msgstr "" -#: ../cache/locales.php:585 +#: [mood]ashamed msgid "ashamed" msgstr "" -#: ../cache/locales.php:586 +#: [mood]bored msgid "bored" msgstr "" -#: ../cache/locales.php:587 +#: [mood]brave msgid "brave" msgstr "" -#: ../cache/locales.php:588 +#: [mood]calm msgid "calm" msgstr "" -#: ../cache/locales.php:589 +#: [mood]cautious msgid "cautious" msgstr "" -#: ../cache/locales.php:590 +#: [mood]cold msgid "cold" msgstr "" -#: ../cache/locales.php:591 +#: [mood]confident msgid "confident" msgstr "" -#: ../cache/locales.php:592 +#: [mood]confused msgid "confused" msgstr "" -#: ../cache/locales.php:593 +#: [mood]contemplative msgid "contemplative" msgstr "" -#: ../cache/locales.php:594 +#: [mood]contented msgid "contented" msgstr "" -#: ../cache/locales.php:595 +#: [mood]cranky msgid "cranky" msgstr "" -#: ../cache/locales.php:596 +#: [mood]crazy msgid "crazy" msgstr "" -#: ../cache/locales.php:597 +#: [mood]creative msgid "creative" msgstr "" -#: ../cache/locales.php:598 +#: [mood]curious msgid "curious" msgstr "" -#: ../cache/locales.php:599 +#: [mood]dejected msgid "dejected" msgstr "" -#: ../cache/locales.php:600 +#: [mood]depressed msgid "depressed" msgstr "" -#: ../cache/locales.php:601 +#: [mood]disappointed msgid "disappointed" msgstr "" -#: ../cache/locales.php:602 +#: [mood]disgusted msgid "disgusted" msgstr "" -#: ../cache/locales.php:603 +#: [mood]dismayed msgid "dismayed" msgstr "" -#: ../cache/locales.php:604 +#: [mood]distracted msgid "distracted" msgstr "" -#: ../cache/locales.php:605 +#: [mood]embarrassed msgid "embarrassed" msgstr "" -#: ../cache/locales.php:606 +#: [mood]envious msgid "envious" msgstr "" -#: ../cache/locales.php:607 +#: [mood]excited msgid "excited" msgstr "" -#: ../cache/locales.php:608 +#: [mood]flirtatious msgid "flirtatious" msgstr "" -#: ../cache/locales.php:609 +#: [mood]frustated msgid "frustated" msgstr "" -#: ../cache/locales.php:610 +#: [mood]grateful msgid "grateful" msgstr "" -#: ../cache/locales.php:611 +#: [mood]grieving msgid "grieving" msgstr "" -#: ../cache/locales.php:612 +#: [mood]grumpy msgid "grumpy" msgstr "" -#: ../cache/locales.php:613 +#: [mood]guilty msgid "guilty" msgstr "" -#: ../cache/locales.php:614 +#: [mood]happy msgid "happy" msgstr "" -#: ../cache/locales.php:615 +#: [mood]hopeful msgid "hopeful" msgstr "" -#: ../cache/locales.php:616 +#: [mood]hot msgid "hot" msgstr "" -#: ../cache/locales.php:617 +#: [mood]humbled msgid "humbled" msgstr "" -#: ../cache/locales.php:618 +#: [mood]humiliated msgid "humiliated" msgstr "" -#: ../cache/locales.php:619 +#: [mood]hungry msgid "hungry" msgstr "" -#: ../cache/locales.php:620 +#: [mood]hurt msgid "hurt" msgstr "" -#: ../cache/locales.php:621 +#: [mood]impressed msgid "impressed" msgstr "" -#: ../cache/locales.php:622 +#: [mood]in_awe msgid "in awe" msgstr "" -#: ../cache/locales.php:623 +#: [mood]in_love msgid "in love" msgstr "" -#: ../cache/locales.php:624 +#: [mood]indignant msgid "indignant" msgstr "" -#: ../cache/locales.php:625 +#: [mood]interested msgid "interested" msgstr "" -#: ../cache/locales.php:626 +#: [mood]intoxicated msgid "intoxicated" msgstr "" -#: ../cache/locales.php:627 +#: [mood]invincible msgid "invincible" msgstr "" -#: ../cache/locales.php:628 +#: [mood]jealous msgid "jealous" msgstr "" -#: ../cache/locales.php:629 +#: [mood]lonely msgid "lonely" msgstr "" -#: ../cache/locales.php:630 +#: [mood]lost msgid "lost" msgstr "" -#: ../cache/locales.php:631 +#: [mood]lucky msgid "lucky" msgstr "" -#: ../cache/locales.php:632 +#: [mood]mean msgid "mean" msgstr "" -#: ../cache/locales.php:633 +#: [mood]moody msgid "moody" msgstr "" -#: ../cache/locales.php:634 +#: [mood]nervous msgid "nervous" msgstr "" -#: ../cache/locales.php:635 +#: [mood]neutral msgid "neutral" msgstr "" -#: ../cache/locales.php:636 +#: [mood]offended msgid "offended" msgstr "" -#: ../cache/locales.php:637 +#: [mood]outraged msgid "outraged" msgstr "" -#: ../cache/locales.php:638 +#: [mood]playful msgid "playful" msgstr "" -#: ../cache/locales.php:639 +#: [mood]proud msgid "proud" msgstr "" -#: ../cache/locales.php:640 +#: [mood]relaxed msgid "relaxed" msgstr "" -#: ../cache/locales.php:641 +#: [mood]relieved msgid "relieved" msgstr "" -#: ../cache/locales.php:642 -msgid "remorseful" -msgstr "" - -#: ../cache/locales.php:643 +#: [mood]restless msgid "restless" msgstr "" -#: ../cache/locales.php:644 +#: [mood]sad msgid "sad" msgstr "" -#: ../cache/locales.php:645 +#: [mood]sarcastic msgid "sarcastic" msgstr "" -#: ../cache/locales.php:646 +#: [mood]satisfied msgid "satisfied" msgstr "" -#: ../cache/locales.php:647 +#: [mood]serious msgid "serious" msgstr "" -#: ../cache/locales.php:648 +#: [mood]shocked msgid "shocked" msgstr "" -#: ../cache/locales.php:649 +#: [mood]shy msgid "shy" msgstr "" -#: ../cache/locales.php:650 +#: [mood]sick msgid "sick" msgstr "" -#: ../cache/locales.php:651 +#: [mood]sleepy msgid "sleepy" msgstr "" -#: ../cache/locales.php:652 +#: [mood]spontaneous msgid "spontaneous" msgstr "" -#: ../cache/locales.php:653 +#: [mood]stressed msgid "stressed" msgstr "" -#: ../cache/locales.php:654 +#: [mood]strong msgid "strong" msgstr "" -#: ../cache/locales.php:655 +#: [mood]surprised msgid "surprised" msgstr "" -#: ../cache/locales.php:656 +#: [mood]thankful msgid "thankful" msgstr "" -#: ../cache/locales.php:657 +#: [mood]thirsty msgid "thirsty" msgstr "" -#: ../cache/locales.php:658 +#: [mood]tired msgid "tired" msgstr "" -#: ../cache/locales.php:659 +#: [mood]undefined msgid "undefined" msgstr "不明" -#: ../cache/locales.php:660 +#: [mood]weak msgid "weak" msgstr "" -#: ../cache/locales.php:661 +#: [mood]worried msgid "worried" msgstr "" -#: ../cache/locales.php:662 +#: [month]title msgid "Month" msgstr "月" -#: ../cache/locales.php:663 +#: [month]january msgid "January" msgstr "1月" -#: ../cache/locales.php:664 +#: [month]february msgid "February" msgstr "2月" -#: ../cache/locales.php:665 +#: [month]march msgid "March" msgstr "3月" -#: ../cache/locales.php:666 +#: [month]april msgid "April" msgstr "4月" -#: ../cache/locales.php:667 +#: [month]may msgid "May" msgstr "5月" -#: ../cache/locales.php:668 +#: [month]june msgid "June" msgstr "6月" -#: ../cache/locales.php:669 +#: [month]july msgid "July" msgstr "7月" -#: ../cache/locales.php:670 +#: [month]august msgid "August" msgstr "8月" -#: ../cache/locales.php:671 +#: [month]september msgid "September" msgstr "9月" -#: ../cache/locales.php:672 +#: [month]october msgid "October" msgstr "10月" -#: ../cache/locales.php:673 +#: [month]november msgid "November" msgstr "11月" -#: ../cache/locales.php:674 +#: [month]december msgid "December" msgstr "12月" -#: ../cache/locales.php:675 +#: [year]title msgid "Year" msgstr "年" -#: ../cache/locales.php:676 +#: [date]today msgid "Today" msgstr "今日" -#: ../cache/locales.php:677 +#: [date]tomorrow msgid "Tomorrow" msgstr "明日" -#: ../cache/locales.php:678 +#: [date]yesterday msgid "Yesterday" msgstr "昨日" -#: ../cache/locales.php:679 -#, php-format -msgid " %d days ago" +#: [date]ago +#, fuzzy +msgid "%d days ago" msgstr " %d日間前に" -#: ../cache/locales.php:680 +#: [date]day msgid "day" msgstr "日" -#: ../cache/locales.php:682 +#: [post]whats_new msgid "What's new ?" msgstr "" -#: ../cache/locales.php:683 +#: [post]place msgid "Place" msgstr "" -#: ../cache/locales.php:684 +#: [post]by msgid "by" msgstr "" -#: ../cache/locales.php:685 +#: [post]geolocalisation msgid "Geolocalisation" msgstr "" -#: ../cache/locales.php:686 +#: [post]email msgid "email" msgstr "メール" -#: ../cache/locales.php:688 +#: [post]no_comments msgid "No comments yet" msgstr "コメントがまだありません" -#: ../cache/locales.php:689 +#: [post]no_comments_stream msgid "No comments stream" msgstr "" -#: ../cache/locales.php:690 +#: [post]no_load msgid "Your feed cannot be loaded." msgstr "フィードがロードできませんでした。" -#: ../cache/locales.php:691 +#: [post]older msgid "Get older posts" msgstr "前の投稿を見る" -#: ../cache/locales.php:692 -#, php-format +#: [post]new_items msgid "%s new items" msgstr "" -#: ../cache/locales.php:693 +#: [post]comment_error msgid "Comment publication error" msgstr "" -#: ../cache/locales.php:694 +#: [post]comments_older msgid "Show the older comments" msgstr "前のコメントを見る" -#: ../cache/locales.php:695 -msgid "Loading comments ..." +#: [post]comments_loading +#, fuzzy +msgid "Loading comments..." msgstr "コメント読み込み" -#: ../cache/locales.php:696 +#: [post]comments_get msgid "Get the comments" msgstr "コメントを見る" -#: ../cache/locales.php:697 +#: [post]comment_add msgid "Add a comment" msgstr "コメントを投稿する" -#: ../cache/locales.php:698 +#: [post]share msgid "Share with" msgstr "" -#: ../cache/locales.php:699 +#: [post]share_everyone msgid "Everyone" msgstr "全て" -#: ../cache/locales.php:700 +#: [post]share_your_contacts msgid "Your contacts" msgstr "" -#: ../cache/locales.php:702 +#: [post]updated msgid "Updated" msgstr "" -#: ../cache/locales.php:703 +#: [post]content_not_found msgid "Content not found" msgstr "コンタクトが見つかりませんでした" -#: ../cache/locales.php:704 +#: [post]default_title msgid "Contact publication" msgstr "" -#: ../cache/locales.php:705 +#: [post]comments msgid "Comments" msgstr "コメント" -#: ../cache/locales.php:706 +#: [api]error msgid "The API is not reachable, try again later" msgstr "" -#: ../cache/locales.php:707 +#: [field]type_here msgid "Type here" msgstr "ここに入力を" +#~ msgid "Environment" +#~ msgstr "環境" + +#~ msgid "Remove a chatroom" +#~ msgstr "ルームを削除する" + #~ msgid "Logout" #~ msgstr "ログアウト" -#, php-format #~ msgid "%s - Account Creation" #~ msgstr "%s - アカウントの作成" @@ -2603,21 +2749,15 @@ msgstr "ここに入力を" #~ msgid "Movim Installer" #~ msgstr "Movimインストーラー" -#, php-format #~ msgid "Couldn't create configuration file '%s'." #~ msgstr "「%s」の設定ファイルをクリエートできませんでした。" #~ msgid "Compatibility Test" #~ msgstr "両立テスト" -#~ msgid "" -#~ "The following requirements were not met. Please make sure they are all " -#~ "satisfied in order to install Movim." +#~ msgid "The following requirements were not met. Please make sure they are all satisfied in order to install Movim." #~ msgstr "次の条件は認めませんでした。Movimをインストールするためには、全部認めるようにしてください。" -#~ msgid "Remove this contact" -#~ msgstr "このコンタクトを削除する" - #~ msgid "wants to talk with you" #~ msgstr "はあなたとチャットしたいそうです。" @@ -2627,7 +2767,6 @@ msgstr "ここに入力を" #~ msgid "Loading the contact feed ..." #~ msgstr "コンタクトのフィードをロードしています。" -#, php-format #~ msgid "Install the %s package" #~ msgstr "%sというパッケージをインストールしてください。" @@ -2640,41 +2779,30 @@ msgstr "ここに入力を" #~ msgid "Update your PHP version or contact your server administrator" #~ msgstr "PHPバージョンをアップデートしてください。それとも、アドミンサーバーを連絡してください。" -#, php-format #~ msgid "Install %s and %s packages" #~ msgstr "%sと%sというパッケージをインストールしてください。" #~ msgid "Enable read and write rights on Movim's root folder" #~ msgstr "Movimルートフォルドに読取り書込み権利を許可してください。" -#, php-format #~ msgid "Bosh connection failed with error '%s'" #~ msgstr "「%s」というエラーでBoshコネクションが失敗しました。" -#, php-format #~ msgid "Database connection failed with error '%s'" #~ msgstr "「%s」というエラーでデータベースコネクションが失敗しました。" -#, php-format #~ msgid "XMPP connection through Bosh failed with error '%s'" #~ msgstr "Boshを通じてXMPPコネクションは「%s」というエラーで失波しました。" -#~ msgid "" -#~ "Keep in mind that Movim is still under development and will handle many " -#~ "personal details. Its use can potentially endanger your data. Always pay " -#~ "attention to information that you submit." -#~ msgstr "" -#~ "Movimは未だ開発中で、多くのパーソナルインフォメーションを扱うことを注目して下さい。これの使用はデータを危ぶむ可能性があります。送るインフォメーション" -#~ "にいつもご注意下さい。" +#~ msgid "Keep in mind that Movim is still under development and will handle many personal details. Its use can potentially endanger your data. Always pay attention to information that you submit." +#~ msgstr "Movimは未だ開発中で、多くのパーソナルインフォメーションを扱うことを注目して下さい。これの使用はデータを危ぶむ可能性があります。送るインフォメーションにいつもご注意下さい。" -#~ msgid "" -#~ "Before you enjoy your social network, a few adjustements are required." +#~ msgid "Before you enjoy your social network, a few adjustements are required." #~ msgstr "あなたのソーシャルネットワークをお楽しみする前に、いくつかの修整が必要です。" #~ msgid "Thank you for downloading Movim!" #~ msgstr "Movimをダウンロードして頂き、誠にありがとうございます。" -#, php-format #~ msgid "Couldn't create directory '%s'." #~ msgstr "「%s」というフォルダをクリエートできませんでした。" @@ -2696,9 +2824,7 @@ msgstr "ここに入力を" #~ msgid "empty" #~ msgstr "空" -#~ msgid "" -#~ "Some errors were detected. Please correct them for the installation to " -#~ "proceed." +#~ msgid "Some errors were detected. Please correct them for the installation to proceed." #~ msgstr "エラーが発生されました。インストールを完成するには、それらを直してください。" #~ msgid "BOSH Connection Preferences" @@ -2707,21 +2833,18 @@ msgstr "ここに入力を" #~ msgid "Success !" #~ msgstr "成功!" -#, php-format #~ msgid "Please remove the %s folder in order to complete the installation" #~ msgstr "インストールを完成するには、「%s」というフォルダを抜いてください。" #~ msgid "JID not provided." #~ msgstr "JIDは備われていません。" -#, php-format #~ msgid "Cannot load element value '%s'" #~ msgstr "「%s」というエレメントバリューをロードできません。" #~ msgid "User not logged in." #~ msgstr "ユーザーはログインしていません。" -#, php-format #~ msgid "You can now access your shiny Movim instance %sJump In !%s" #~ msgstr "これから、「%sJump」というMovimインスタンスを「!%s」にアクセスすることができます。" @@ -2734,15 +2857,12 @@ msgstr "ここに入力を" #~ msgid "Valid Bosh" #~ msgstr "妥当なBosh" -#, php-format #~ msgid "jid '%s' is incorrect" #~ msgstr "「%s」というJIDは正しくありません。" -#, php-format #~ msgid "Cannot open log file '%s'" #~ msgstr "「%s」というログファイルをオープンできません。" -#, php-format #~ msgid "Movim requires the %s extension." #~ msgstr "Movimには「%s」という拡張子が必要です。" @@ -2752,7 +2872,6 @@ msgstr "ここに入力を" #~ msgid "Wrong ID" #~ msgstr "不可のID" -#, php-format #~ msgid "%s - Add An Account" #~ msgstr "%s - アカウントを追加" @@ -2768,9 +2887,7 @@ msgstr "ここに入力を" #~ msgid "Invalid name" #~ msgstr "名前が無効です" -#~ msgid "" -#~ "Firstly fill in this blank with a brand new account ID, this address will " -#~ "follow you on all the Movim network !" +#~ msgid "Firstly fill in this blank with a brand new account ID, this address will follow you on all the Movim network !" #~ msgstr "はじめには、このブランクを真新しいIDで入力してください。このアドレスはすべてのMovimネットワークで使われるのです。" #~ msgid "Add your login informations" @@ -2797,9 +2914,7 @@ msgstr "ここに入力を" #~ msgid "Address" #~ msgstr "住所" -#~ msgid "" -#~ "Your server doesn't support post publication, you can only read contact's " -#~ "feeds" +#~ msgid "Your server doesn't support post publication, you can only read contact's feeds" #~ msgstr "サーバーではポスト掲載を取り締まることができません。それで、自分のコンタクトの掲載しか読めません。" #~ msgid "Invite this user" diff --git a/sources/locales/kk.po b/sources/locales/kk.po index b8d543a..6711222 100644 --- a/sources/locales/kk.po +++ b/sources/locales/kk.po @@ -3,2583 +3,2696 @@ # This file is distributed under the same license as the movim package. # FIRST AUTHOR , 2014. # +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/About/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Account/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AccountNext/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AdHoc/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AdminDB/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AdminMain/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AdminTest/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Api/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Avatar/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Blog/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Bookmark/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Chat/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Chats/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/ConfigData/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Config/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Contact/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Group/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Groups/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Header/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Hello/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Help/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Init/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Location/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/LoginAnonymous/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Login/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Menu/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/NodeAffiliations/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/NodeSubscriptions/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Notifs/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Post/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Presence/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Publish/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/PubsubSubscriptionConfig/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Rooms/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Roster/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Share/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Statistics/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Subscribe/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Syndication/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Upload/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Vcard4/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/VisioExt/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Visio/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../locales/locales.ini msgid "" msgstr "" "Project-Id-Version: movim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-06-08 22:06+0200\n" +"POT-Creation-Date: 2015-08-20 15:17+0200\n" "PO-Revision-Date: 2014-04-04 12:56+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Kazakh \n" +"Language: kk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2015-06-18 21:08+0000\n" "X-Generator: Launchpad (build 17570)\n" -"Language: kk\n" -#: ../cache/locales.php:2 +#: [about]thanks msgid "Thanks" msgstr "" -#: ../cache/locales.php:3 +#: [about]developers msgid "Developers" msgstr "" -#: ../cache/locales.php:4 +#: [about]translators msgid "Translators" msgstr "" -#: ../cache/locales.php:5 +#: [about]software msgid "Software" msgstr "" -#: ../cache/locales.php:6 +#: [about]resources msgid "Resources" msgstr "" -#: ../cache/locales.php:7 ../cache/locales.php:83 ../cache/locales.php:85 +#: [about]api [schema]api [api]title msgid "API" msgstr "" -#: ../cache/locales.php:8 -msgid "" -"Movim is an XMPP-based communication platform. All the project, except the " -"following software and resources, is under" +#: [about]info +msgid "Movim is an XMPP-based communication platform. All the project, except the following software and resources, is under" msgstr "" -#: ../cache/locales.php:9 +#: [account]title msgid "Account" msgstr "" -#: ../cache/locales.php:10 -msgid "The password has been updated" +#: [account]password_change_title +msgid "Change my password" msgstr "" -#: ../cache/locales.php:11 -msgid "Please provide a valid password (6 characters minimum)" -msgstr "" - -#: ../cache/locales.php:12 -msgid "The provided passwords are not the same" -msgstr "" - -#: ../cache/locales.php:13 -msgid "Delete my account" -msgstr "" - -#: ../cache/locales.php:14 -msgid "" -"You will delete your XMPP account and all the relative information linked to " -"it (profile, contacts and publications)." -msgstr "" - -#: ../cache/locales.php:15 -msgid "Are you sure that you want to delete it ?" -msgstr "" - -#: ../cache/locales.php:16 ../cache/locales.php:411 -msgid "Create a new account" -msgstr "" - -#: ../cache/locales.php:17 -msgid "No account creation form found on the server" -msgstr "" - -#: ../cache/locales.php:18 ../cache/locales.php:172 -msgid "on" -msgstr "" - -#: ../cache/locales.php:19 -msgid "Your acccount has been successfully registered" -msgstr "" - -#: ../cache/locales.php:20 -msgid "Loading" -msgstr "" - -#: ../cache/locales.php:21 -msgid "Not Acceptable" -msgstr "" - -#: ../cache/locales.php:22 -msgid "The registration system of this server is currently unavailable" -msgstr "" - -#: ../cache/locales.php:23 -msgid "" -"This server use an external system for the registration, please click on the " -"following URL." -msgstr "" - -#: ../cache/locales.php:24 -msgid "Actions" -msgstr "" - -#: ../cache/locales.php:25 ../cache/locales.php:82 -msgid "Database" -msgstr "" - -#: ../cache/locales.php:26 -msgid "Modl wasn't able to connect to the database" -msgstr "" - -#: ../cache/locales.php:27 -msgid "Movim is connected to the database" -msgstr "" - -#: ../cache/locales.php:28 -msgid "The database need to be updated" -msgstr "" - -#: ../cache/locales.php:29 -msgid "Movim database is up to date" -msgstr "" - -#: ../cache/locales.php:30 -msgid "Database Type" -msgstr "" - -#: ../cache/locales.php:31 ../cache/locales.php:50 ../cache/locales.php:540 -msgid "Username" -msgstr "" - -#: ../cache/locales.php:32 ../cache/locales.php:51 ../cache/locales.php:282 -#: ../cache/locales.php:541 +#: [account]password [db]password [credentials]password [form]password +#: [input]password msgid "Password" msgstr "" -#: ../cache/locales.php:33 +#: [account]password_confirmation +msgid "Password confirmation" +msgstr "" + +#: [account]password_changed +msgid "The password has been updated" +msgstr "" + +#: [account]password_not_valid +msgid "Please provide a valid password (6 characters minimum)" +msgstr "" + +#: [account]password_not_same +msgid "The provided passwords are not the same" +msgstr "" + +#: [account]delete_title +msgid "Delete my account" +msgstr "" + +#: [account]delete +msgid "Delete your account" +msgstr "" + +#: [account]delete_text +msgid "You will delete your XMPP account and all the relative information linked to it (profile, contacts and publications)." +msgstr "" + +#: [account]delete_text_confirm +msgid "Are you sure that you want to delete it ?" +msgstr "" + +#: [account]gateway_title +msgid "Gateway" +msgstr "" + +#: [create]title [subscribe]title +msgid "Create a new account" +msgstr "" + +#: [create]notfound +msgid "No account creation form found on the server" +msgstr "" + +#: [create]server_on +msgid "on" +msgstr "" + +#: [create]successfull +msgid "Your acccount has been successfully registered" +msgstr "" + +#: [create]loading +msgid "Loading" +msgstr "" + +#: [error]not_acceptable +msgid "Not Acceptable" +msgstr "" + +#: [error]service_unavailable +msgid "The registration system of this server is currently unavailable" +msgstr "" + +#: [oob]about +msgid "This server use an external system for the registration, please click on the following URL." +msgstr "" + +#: [adhoc]title +msgid "Actions" +msgstr "" + +#: [db]legend [schema]database +msgid "Database" +msgstr "" + +#: [db]connect_error +msgid "Modl wasn't able to connect to the database" +msgstr "" + +#: [db]connect_success +msgid "Movim is connected to the database" +msgstr "" + +#: [db]update +msgid "The database need to be updated" +msgstr "" + +#: [db]up_to_date +msgid "Movim database is up to date" +msgstr "" + +#: [db]type +msgid "Database Type" +msgstr "" + +#: [db]username [credentials]username [input]username +msgid "Username" +msgstr "" + +#: [db]host msgid "Host" msgstr "" -#: ../cache/locales.php:34 +#: [db]port msgid "Port" msgstr "" -#: ../cache/locales.php:35 -msgid "Database Name" +#: [db]name +msgid "Database sName" msgstr "" -#: ../cache/locales.php:36 +#: [admin]general msgid "General Settings" msgstr "" -#: ../cache/locales.php:37 +#: [general]theme msgid "Theme" msgstr "" -#: ../cache/locales.php:38 +#: [general]language msgid "Default language" msgstr "" -#: ../cache/locales.php:39 -msgid "Environment" -msgstr "" - -#: ../cache/locales.php:40 +#: [general]log_verbosity msgid "Log verbosity" msgstr "" -#: ../cache/locales.php:41 +#: [general]timezone msgid "Server Timezone" msgstr "" -#: ../cache/locales.php:42 +#: [general]limit msgid "User folder size limit (in bytes)" msgstr "" -#: ../cache/locales.php:43 +#: [websocket]title msgid "WebSocket Configuration" msgstr "" -#: ../cache/locales.php:44 +#: [websocket]info msgid "Enter here a valid WebSocket URI in the form" msgstr "" -#: ../cache/locales.php:45 +#: [websocket]label msgid "WebSocket URI" msgstr "" -#: ../cache/locales.php:46 -msgid "" -"If you change the URI, please restart the daemon to reload the configuration" +#: [websocket]save_info +msgid "If you change the URI, please restart the daemon to reload the configuration" msgstr "" -#: ../cache/locales.php:47 +#: [websocket]publics msgid "Public WebSockets" msgstr "" -#: ../cache/locales.php:48 +#: [credentials]title msgid "Administration Credential" msgstr "" -#: ../cache/locales.php:49 +#: [credentials]info msgid "Change the default credentials admin/password" msgstr "" -#: ../cache/locales.php:52 +#: [credentials]re_password msgid "Retype password" msgstr "" -#: ../cache/locales.php:53 +#: [whitelist]title msgid "Whitelist - XMPP Server" msgstr "" -#: ../cache/locales.php:54 -msgid "" -"If you want to specify a list of authorized XMPP servers on your Movim pod " -"and forbid the connection on all the others please put their domain name " -"here, with comma (ex: movim.eu,jabber.fr)" +#: [whitelist]info1 +msgid "If you want to specify a list of authorized XMPP servers on your Movim pod and forbid the connection on all the others please put their domain name here, with comma (ex: movim.eu,jabber.fr)" msgstr "" -#: ../cache/locales.php:55 -msgid "" -"Leave this field blank if you allow the access to all the XMPP accounts." +#: [whitelist]info2 +msgid "Leave this field blank if you allow the access to all the XMPP accounts." msgstr "" -#: ../cache/locales.php:56 +#: [whitelist]label msgid "List of whitelisted XMPP servers" msgstr "" -#: ../cache/locales.php:57 ../cache/locales.php:61 +#: [information]title +msgctxt "[information]title" msgid "Information Message" msgstr "" -#: ../cache/locales.php:58 +#: [information]description msgid "Description" msgstr "" -#: ../cache/locales.php:59 +#: [information]info1 msgid "This message will be displayed on the login page" msgstr "" -#: ../cache/locales.php:60 -msgid "Leave this field blank if you don't want to show any message." +#: [information]info2 +msgid "Leave this field blank if you dont want to show any message." msgstr "" -#: ../cache/locales.php:62 +#: [information]label +msgctxt "[information]label" +msgid "Information Message" +msgstr "" + +#: [log]empty msgid "Empty" msgstr "" -#: ../cache/locales.php:63 +#: [log]syslog msgid "Syslog" msgstr "" -#: ../cache/locales.php:64 +#: [log]syslog_files msgid "Syslog and files" msgstr "" -#: ../cache/locales.php:65 +#: [rewrite]title msgid "URL Rewriting" msgstr "" -#: ../cache/locales.php:66 +#: [rewrite]info msgid "The URL Rewriting can be enabled" msgstr "" -#: ../cache/locales.php:67 +#: [admin]compatibility msgid "General Overview" msgstr "" -#: ../cache/locales.php:68 -msgid "" -"Movim has found some issues or things that need to be fixed or improved" +#: [compatibility]info +msgid "Movim has found some issues or things that need to be fixed or improved" msgstr "" -#: ../cache/locales.php:69 -#, php-format +#: [compatibility]php1 msgid "Update your PHP-Version: %s" msgstr "" -#: ../cache/locales.php:70 +#: [compatibility]php2 msgid "Required: 5.3.0" msgstr "" -#: ../cache/locales.php:71 +#: [compatibility]curl msgid "Install the php5-curl library" msgstr "" -#: ../cache/locales.php:72 +#: [compatibility]imagick msgid "Install the php5-imagick library" msgstr "" -#: ../cache/locales.php:73 +#: [compatibility]gd msgid "Install the php5-gd library" msgstr "" -#: ../cache/locales.php:74 -msgid "Read and write rights for the webserver in Movim's root directory" +#: [compatibility]rights +msgid "Read and write rights for the webserver in Movims root directory" msgstr "" -#: ../cache/locales.php:75 +#: [compatibility]rewrite msgid "The URL Rewriting support is currently disabled" msgstr "" -#: ../cache/locales.php:76 +#: [compatibility]db msgid "The database need to be updated, go to the database panel to fix this" msgstr "" -#: ../cache/locales.php:77 -msgid "" -"WebSocket connection error, check if the Movim Daemon is running and is " -"reacheable" +#: [compatibility]websocket +msgid "WebSocket connection error, check if the Movim Daemon is running and is reachable" msgstr "" -#: ../cache/locales.php:78 -msgid "" -"XMPP Websocket connection error, please check the validity of the URL given " -"in the General Configuration" +#: [compatibility]xmpp_websocket +msgid "XMPP Websocket connection error, please check the validity of the URL given in the General Configuration" msgstr "" -#: ../cache/locales.php:79 +#: [schema]browser msgid "Browser" msgstr "" -#: ../cache/locales.php:80 +#: [schema]movim msgid "Movim Core" msgstr "" -#: ../cache/locales.php:81 +#: [schema]daemon msgid "Movim Daemon" msgstr "" -#: ../cache/locales.php:84 +#: [schema]xmpp msgid "XMPP" msgstr "" -#: ../cache/locales.php:86 -#, php-format -msgid "" -"Here you can register your pod on the official %sMovim API%s and be listed " -"on %sthe pods page%s." +#: [api]info +msgid "Here you can register your pod on the official %sMovim API%s and be listed on %sthe pods page%s." msgstr "" -#: ../cache/locales.php:87 +#: [api]register msgid "Your pod is not registered on the API" msgstr "" -#: ../cache/locales.php:88 +#: [api]registered msgid "Your pod is registered on the API" msgstr "" -#: ../cache/locales.php:89 +#: [api]wait msgid "Your pod is not yet validated" msgstr "" -#: ../cache/locales.php:90 +#: [api]validated msgid "Your pod is validated" msgstr "" -#: ../cache/locales.php:91 -msgid "" -"You asked to be removed from the API, this request will be processed in a " -"couple of hours" +#: [api]unregister +msgid "You asked to be removed from the API, this request will be processed in a couple of hours" msgstr "" -#: ../cache/locales.php:92 ../cache/locales.php:147 +#: [api]conf_updated [config]updated msgid "Configuration updated" msgstr "" -#: ../cache/locales.php:93 +#: [avatar]file msgid "File" msgstr "" -#: ../cache/locales.php:94 +#: [avatar]use_it msgid "Use it" msgstr "" -#: ../cache/locales.php:95 +#: [avatar]webcam msgid "Webcam" msgstr "" -#: ../cache/locales.php:96 +#: [avatar]cheese msgid "Cheese !" msgstr "" -#: ../cache/locales.php:97 +#: [avatar]snapshot msgid "Take a webcam snapshot" msgstr "" -#: ../cache/locales.php:98 +#: [avatar]updated msgid "Avatar Updated" msgstr "" -#: ../cache/locales.php:99 +#: [avatar]not_updated msgid "Avatar Not Updated" msgstr "" -#: ../cache/locales.php:100 ../cache/locales.php:415 -#, php-format +#: [blog]title [feed]title msgid "%s's feed" msgstr "" -#: ../cache/locales.php:101 +#: [blog]empty msgid "This user has not posted anything right now" msgstr "" -#: ../cache/locales.php:102 +#: [title]conferences msgid "Conferences" msgstr "" -#: ../cache/locales.php:103 ../cache/locales.php:193 ../cache/locales.php:217 -#: ../cache/locales.php:468 +#: [title]groups [group]empty_title [menu]groups [page]groups msgid "Groups" msgstr "" -#: ../cache/locales.php:104 +#: [chatroom]add msgid "Add a new Chat Room" msgstr "" -#: ../cache/locales.php:105 ../cache/locales.php:368 +#: [chatroom]id [chatrooms]id msgid "Chat Room ID" msgstr "" -#: ../cache/locales.php:106 ../cache/locales.php:116 ../cache/locales.php:156 -#: ../cache/locales.php:361 ../cache/locales.php:369 ../cache/locales.php:424 +#: [chatroom]name +msgctxt "[chatroom]name" msgid "Name" msgstr "" -#: ../cache/locales.php:107 ../cache/locales.php:157 ../cache/locales.php:371 -#: ../cache/locales.php:425 +#: [chatroom]nickname [general]nickname [chatrooms]nickname msgid "Nickname" msgstr "" -#: ../cache/locales.php:108 +#: [chatroom]autojoin_label msgid "Do you want do join automaticaly this Chat Room ?" msgstr "" -#: ../cache/locales.php:109 ../cache/locales.php:372 +#: [chatroom]bad_id [chatrooms]bad_id msgid "Bad Chatroom ID" msgstr "" -#: ../cache/locales.php:110 ../cache/locales.php:373 +#: [chatroom]empty_name [chatrooms]empty_name msgid "Empty name" msgstr "" -#: ../cache/locales.php:111 ../cache/locales.php:380 +#: [bookmarks]updated msgid "Bookmarks updated" msgstr "" -#: ../cache/locales.php:112 -msgid "An error occured : " +#: [bookmarks]error +msgid "An error occured :" msgstr "" -#: ../cache/locales.php:113 +#: [bookmarks]configure msgid "Configure" msgstr "" -#: ../cache/locales.php:114 +#: [url]add msgid "Add a new URL" msgstr "" -#: ../cache/locales.php:115 +#: [url]url msgid "URL" msgstr "" -#: ../cache/locales.php:117 +#: [url]name +msgctxt "[url]name" +msgid "Name" +msgstr "" + +#: [message]published msgid "Message Published" msgstr "" -#: ../cache/locales.php:118 ../cache/locales.php:138 +#: [message]encrypted msgid "Encrypted message" msgstr "" -#: ../cache/locales.php:119 +#: [message]composing [chats]composing msgid "Composing..." msgstr "" -#: ../cache/locales.php:120 +#: [message]paused [chats]paused msgid "Paused..." msgstr "" -#: ../cache/locales.php:121 +#: [message]gone msgid "Contact gone" msgstr "" -#: ../cache/locales.php:122 -#, php-format +#: [chat]attention msgid "%s needs your attention" msgstr "" -#: ../cache/locales.php:123 +#: [chat]placeholder msgid "Your message here..." msgstr "" -#: ../cache/locales.php:124 +#: [chat]smileys msgid "Smileys" msgstr "" -#: ../cache/locales.php:125 ../cache/locales.php:139 +#: [chat]empty_title [button]chat msgid "Chat" msgstr "" -#: ../cache/locales.php:126 +#: [chat]empty_text msgid "Discuss with your contacts" msgstr "" -#: ../cache/locales.php:127 -msgid "Members" -msgstr "" - -#: ../cache/locales.php:128 ../cache/locales.php:376 -msgid "Connected to the chatroom" -msgstr "" - -#: ../cache/locales.php:129 ../cache/locales.php:377 -msgid "Disconnected from the chatroom" -msgstr "" - -#: ../cache/locales.php:130 ../cache/locales.php:200 ../cache/locales.php:469 -msgid "Configuration" -msgstr "" - -#: ../cache/locales.php:131 -msgid "Configuration saved" -msgstr "" - -#: ../cache/locales.php:132 -msgid "Subject" -msgstr "" - -#: ../cache/locales.php:133 -msgid "Subject changed" -msgstr "" - -#: ../cache/locales.php:134 -msgid "Open a new conversation by clicking on the plus button bellow" -msgstr "" - -#: ../cache/locales.php:135 -msgid "Chat with a contact" -msgstr "" - -#: ../cache/locales.php:136 +#: [chat]frequent [chats]frequent msgid "Frequent contacts" msgstr "" -#: ../cache/locales.php:137 +#: [chatroom]members +msgid "Members" +msgstr "" + +#: [chatroom]connected [chatrooms]connected +msgid "Connected to the chatroom" +msgstr "" + +#: [chatroom]disconnected [chatrooms]disconnected +msgid "Disconnected from the chatroom" +msgstr "" + +#: [chatroom]config [group]configuration [page]configuration +msgid "Configuration" +msgstr "" + +#: [chatroom]config_saved +msgid "Configuration saved" +msgstr "" + +#: [chatroom]subject +msgid "Subject" +msgstr "" + +#: [chatroom]subject_changed +msgid "Subject changed" +msgstr "" + +#: [chats]empty_title +msgid "No chats yet..." +msgstr "" + +#: [chats]empty +msgid "Open a new conversation by clicking on the plus button bellow or visit the Contacts page." +msgstr "" + +#: [chats]add +msgid "Chat with a contact" +msgstr "" + +#: [chats]more msgid "Load more contacts" msgstr "" -#: ../cache/locales.php:140 -msgid "General" -msgstr "" - -#: ../cache/locales.php:141 -msgid "Language" -msgstr "" - -#: ../cache/locales.php:142 -msgid "Roster display" -msgstr "" - -#: ../cache/locales.php:143 -msgid "Show the offline contacts" -msgstr "" - -#: ../cache/locales.php:144 -msgid "Hide the offline contacts" -msgstr "" - -#: ../cache/locales.php:145 -msgid "Appearence" -msgstr "" - -#: ../cache/locales.php:146 -msgid "This configuration is shared wherever you are connected !" -msgstr "" - -#: ../cache/locales.php:148 -msgid "Notify on incoming message" -msgstr "" - -#: ../cache/locales.php:149 -msgid "Use desktop notifications" -msgstr "" - -#: ../cache/locales.php:150 +#: [title]data msgid "Data" msgstr "" -#: ../cache/locales.php:151 +#: [title]cache msgid "Cache" msgstr "" -#: ../cache/locales.php:152 ../cache/locales.php:218 ../cache/locales.php:466 +#: [title]contacts [menu]contacts [page]contacts msgid "Contacts" msgstr "" -#: ../cache/locales.php:153 ../cache/locales.php:480 +#: [title]posts [page]posts msgid "Posts" msgstr "" -#: ../cache/locales.php:154 +#: [title]messages msgid "Messages" msgstr "" -#: ../cache/locales.php:155 ../cache/locales.php:423 +#: [config]general +msgid "General" +msgstr "" + +#: [config]language +msgid "Language" +msgstr "" + +#: [config]roster +msgid "Roster display" +msgstr "" + +#: [config]roster_show +msgid "Show the offline contacts" +msgstr "" + +#: [config]roster_hide +msgid "Hide the offline contacts" +msgstr "" + +#: [config]appearence +msgid "Appearence" +msgstr "" + +#: [config]info +msgid "This configuration is shared wherever you are connected" +msgstr "" + +#: [notifications]message +msgid "Notify on incoming message" +msgstr "" + +#: [notifications]desktop +msgid "Use desktop notifications" +msgstr "" + +#: [general]legend [general]general_title msgid "General Informations" msgstr "" -#: ../cache/locales.php:158 ../cache/locales.php:427 +#: [general]name [public_groups]name [chatrooms]name +msgid "Name" +msgstr "" + +#: [general]date_of_birth msgid "Date of Birth" msgstr "" -#: ../cache/locales.php:159 ../cache/locales.php:428 +#: [general]gender msgid "Gender" msgstr "" -#: ../cache/locales.php:160 ../cache/locales.php:429 +#: [general]marital msgid "Marital Status" msgstr "" -#: ../cache/locales.php:161 ../cache/locales.php:426 +#: [general]email msgid "Email" msgstr "" -#: ../cache/locales.php:162 ../cache/locales.php:430 +#: [general]website msgid "Website" msgstr "" -#: ../cache/locales.php:163 ../cache/locales.php:431 +#: [general]about msgid "About Me" msgstr "" -#: ../cache/locales.php:164 +#: [general]accounts msgid "Other Accounts" msgstr "" -#: ../cache/locales.php:165 +#: [general]tune msgid "Is Listening" msgstr "" -#: ../cache/locales.php:166 ../cache/locales.php:432 +#: [position]legend [position]position_title msgid "Geographic Position" msgstr "" -#: ../cache/locales.php:167 ../cache/locales.php:433 +#: [position]locality msgid "Locality" msgstr "" -#: ../cache/locales.php:168 ../cache/locales.php:434 +#: [position]country msgid "Country" msgstr "" -#: ../cache/locales.php:169 +#: [mood]title msgid "Mood" msgstr "" -#: ../cache/locales.php:170 +#: [mood]im msgid "I'm " msgstr "" -#: ../cache/locales.php:171 +#: [listen]title msgid "Listening" msgstr "" -#: ../cache/locales.php:173 +#: [last]title msgid "Last seen" msgstr "" -#: ../cache/locales.php:174 +#: [client]title msgid "Client Informations" msgstr "" -#: ../cache/locales.php:175 +#: [explore]last_registered msgid "Last registered" msgstr "" -#: ../cache/locales.php:176 +#: [explore]explore msgid "Find some new friends" msgstr "" -#: ../cache/locales.php:177 ../cache/locales.php:533 +#: [edit]title [button]edit msgid "Edit" msgstr "" -#: ../cache/locales.php:178 +#: [edit]alias msgid "Alias" msgstr "" -#: ../cache/locales.php:179 +#: [edit]group msgid "Group" msgstr "" -#: ../cache/locales.php:180 ../cache/locales.php:400 +#: [edit]updated [roster]updated msgid "Contact updated" msgstr "" -#: ../cache/locales.php:181 +#: [delete]title msgid "Are you sure?" msgstr "" -#: ../cache/locales.php:182 -msgid "" -"You are going to delete one of your contacts, please confirm your action" +#: [delete]text +msgid "You are going to delete one of your contacts, please confirm your action" msgstr "" -#: ../cache/locales.php:183 -#, php-format +#: [age]years msgid "%s years" msgstr "" -#: ../cache/locales.php:184 +#: [blog]last msgid "Last public post" msgstr "" -#: ../cache/locales.php:185 +#: [subscription]to +msgid "You can see this contact status" +msgstr "" + +#: [subscription]to_button +msgid "Share my status" +msgstr "" + +#: [subscription]to_text +msgid "But this contact cannot see yours" +msgstr "" + +#: [subscription]from +msgid "You are not subscribed to this contact" +msgstr "" + +#: [subscription]from_button +msgid "Ask to subscribe" +msgstr "" + +#: [subscription]from_text +msgid "But this contact can still see if you are online" +msgstr "" + +#: [subscription]nil +msgid "No subscriptions" +msgstr "" + +#: [subscription]nil_button +msgid "Invite" +msgstr "" + +#: [subscription]nil_text +msgid "This contact is in your contact list but there is no subscriptions between the two accounts" +msgstr "" + +#: [group]subscribe msgid "Subscribe" msgstr "" -#: ../cache/locales.php:186 +#: [group]subscribed msgid "Subscribed" msgstr "" -#: ../cache/locales.php:187 +#: [group]unsubscribe msgid "Unsubscribe" msgstr "" -#: ../cache/locales.php:188 +#: [group]unsubscribe_text msgid "You are going to unsubscribe from this Group" msgstr "" -#: ../cache/locales.php:189 +#: [group]unsubscribed msgid "Unsubscribed" msgstr "" -#: ../cache/locales.php:190 +#: [group]share_label msgid "Make your membership to this group public to your friends" msgstr "" -#: ../cache/locales.php:191 +#: [group]label_label msgid "Give a label for this group" msgstr "" -#: ../cache/locales.php:192 +#: [group]sure msgid "Are you sure ?" msgstr "" -#: ../cache/locales.php:194 +#: [group]empty_text msgid "Discover, follow and share" msgstr "" -#: ../cache/locales.php:195 +#: [group]empty msgid "Something bad happened to this group" msgstr "" -#: ../cache/locales.php:196 +#: [group]config_saved msgid "Group configuration saved" msgstr "" -#: ../cache/locales.php:197 +#: [group]delete_title msgid "Delete the group" msgstr "" -#: ../cache/locales.php:198 -msgid "" -"You are going to delete the following group. Please confirm your action." +#: [group]delete_text +msgid "You are going to delete the following group. Please confirm your action." msgstr "" -#: ../cache/locales.php:199 -msgid "" -"It seems that this group doesn't exists anymore. Do you want to remove it " -"from your subscriptions?" +#: [group]delete_clean_text +msgid "It seems that this group doesn't exists anymore. Do you want to remove it from your subscriptions?" msgstr "" -#: ../cache/locales.php:201 ../cache/locales.php:408 +#: [group]counter +msgid "%s groups on this server" +msgstr "" + +#: [group]subscriptions [statistics]subscriptions msgid "Subscriptions" msgstr "" -#: ../cache/locales.php:202 ../cache/locales.php:290 +#: [group]servers +msgid "Groups servers" +msgstr "" + +#: [group]search_server +msgid "Search for a new server" +msgstr "" + +#: [group]help_info1 +msgid "Groups are the perfect way to share posts about topics that you like with all the other Movim's users." +msgstr "" + +#: [group]help_info2 +msgid "Choose a server and a Group and subscribe to it using the %s button in the header. You can also create a new one using the %s button." +msgstr "" + +#: [group]help_info3 +msgid "Done? You can now publish a new post in the Group by using the %s button." +msgstr "" + +#: [group]help_info4 +msgid "You will find a list of all your subscribed Groups in My Subscriptions and receive instantly all the new incoming posts in the %sNews%s page." +msgstr "" + +#: [groups]empty_title msgid "Hello" msgstr "" -#: ../cache/locales.php:203 ../cache/locales.php:225 ../cache/locales.php:291 +#: [groups]contact_post [hello]contact_post [menu]contact_post msgid "Contact post" msgstr "" -#: ../cache/locales.php:204 -msgid "" -"You don't have any subscriptions yet, select a group server above to start " -"exploring." +#: [groups]empty_text1 +msgid "You don't have any subscriptions yet, select a group server above to start exploring." msgstr "" -#: ../cache/locales.php:205 +#: [groups]empty_text2 msgid "Subscribe to your favorite feeds by bookmarking them." msgstr "" -#: ../cache/locales.php:206 +#: [groups]subscriptions msgid "My Subscriptions" msgstr "" -#: ../cache/locales.php:207 +#: [groups]add msgid "Create a new Group" msgstr "" -#: ../cache/locales.php:208 +#: [groups]name msgid "Group name" msgstr "" -#: ../cache/locales.php:209 +#: [groups]name_example msgid "My Little Pony - Fan Club" msgstr "" -#: ../cache/locales.php:210 +#: [groups]created msgid "Group created successfully" msgstr "" -#: ../cache/locales.php:211 +#: [groups]deleted msgid "Group deleted successfully" msgstr "" -#: ../cache/locales.php:212 +#: [groups]name_error msgid "Please provide a valid group name (4 characters minimum)" msgstr "" -#: ../cache/locales.php:213 +#: [groups]no_creation msgid "You cannot create a new Group on this server" msgstr "" -#: ../cache/locales.php:214 -#, php-format +#: [groups]sub msgid "%s subscribers" msgstr "" -#: ../cache/locales.php:215 -#, php-format +#: [groups]num msgid "%s posts" msgstr "" -#: ../cache/locales.php:216 +#: [groups]disco_error +msgid "This server doesn't exists" +msgstr "" + +#: [menu]all msgid "All" msgstr "" -#: ../cache/locales.php:219 +#: [menu]refresh msgid "Refresh all the streams" msgstr "" -#: ../cache/locales.php:220 ../cache/locales.php:402 -msgid "Search" +#: [roster]search +msgid "Search in your contacts" msgstr "" -#: ../cache/locales.php:221 +#: [hello]active_contacts +msgid "Active contacts" +msgstr "" + +#: [hello]chat msgid "Go on the Chat page" msgstr "" -#: ../cache/locales.php:222 -msgid "Read all theses articles on the News page" -msgstr "" - -#: ../cache/locales.php:223 -msgid "Visit your public blog" -msgstr "" - -#: ../cache/locales.php:224 -msgid "See your public posts and share them with all your contacts" -msgstr "" - -#: ../cache/locales.php:226 -msgid "Universal share button" -msgstr "" - -#: ../cache/locales.php:227 -msgid "" -"Bookmark or drag and drop the following button in your toolbar and use it on " -"all the pages you want to share on Movim" -msgstr "" - -#: ../cache/locales.php:228 -msgid "Share on Movim" -msgstr "" - -#: ../cache/locales.php:229 -msgid "Frequently Asked Questions" -msgstr "" - -#: ../cache/locales.php:230 -msgid "What do the little banners refer to ?" -msgstr "" - -#: ../cache/locales.php:231 -msgid "" -"Thanks to these five little banners, you can quickly identitfy the level of " -"confdentiality applied to the information you provide." -msgstr "" - -#: ../cache/locales.php:232 -msgid "White, only you can see the information" -msgstr "" - -#: ../cache/locales.php:233 -msgid "Green, you have chosen some contacts who can see your information" -msgstr "" - -#: ../cache/locales.php:234 -msgid "Orange, all your contact list can see your information" -msgstr "" - -#: ../cache/locales.php:235 -msgid "Red, everybody in the XMPP network can see your information" -msgstr "" - -#: ../cache/locales.php:236 -msgid "Black, the whole Internet can see your information" -msgstr "" - -#: ../cache/locales.php:237 -msgid "Looking for some documentation ?" -msgstr "" - -#: ../cache/locales.php:238 -msgid "Read the Wiki" -msgstr "" - -#: ../cache/locales.php:239 -msgid "Talk with us by email ?" -msgstr "" - -#: ../cache/locales.php:240 -msgid "Join the Mailing List" -msgstr "" - -#: ../cache/locales.php:241 -msgid "Chat with the team ?" -msgstr "" - -#: ../cache/locales.php:242 -msgid "Join the Chatroom" -msgstr "" - -#: ../cache/locales.php:243 -msgid "Location node created" -msgstr "" - -#: ../cache/locales.php:244 -msgid "Bookmark node created" -msgstr "" - -#: ../cache/locales.php:245 -msgid "Profile node created" -msgstr "" - -#: ../cache/locales.php:246 -msgid "Avatar node created" -msgstr "" - -#: ../cache/locales.php:247 -msgid "Subscriptions node created" -msgstr "" - -#: ../cache/locales.php:248 -msgid "Microblog node created" -msgstr "" - -#: ../cache/locales.php:249 -msgid "Location" -msgstr "" - -#: ../cache/locales.php:250 -msgid "Wrong position" -msgstr "" - -#: ../cache/locales.php:251 -msgid "Location updated" -msgstr "" - -#: ../cache/locales.php:252 -msgid "Update my position" -msgstr "" - -#: ../cache/locales.php:253 -msgid "Wrong username" -msgstr "" - -#: ../cache/locales.php:254 -msgid "Invalid JID" -msgstr "" - -#: ../cache/locales.php:255 -msgid "Empty Challenge from the server" -msgstr "" - -#: ../cache/locales.php:256 -msgid "XMPP Domain error, your account is not a correct Jabber ID" -msgstr "" - -#: ../cache/locales.php:257 -msgid "Some data are missing !" -msgstr "" - -#: ../cache/locales.php:258 -msgid "Wrong password" -msgstr "" - -#: ../cache/locales.php:259 -msgid "Internal server error" -msgstr "" - -#: ../cache/locales.php:260 -msgid "Session error" -msgstr "" - -#: ../cache/locales.php:261 -msgid "Account successfully created" -msgstr "" - -#: ../cache/locales.php:262 ../cache/locales.php:271 -msgid "Your XMPP server is unauthorized" -msgstr "" - -#: ../cache/locales.php:263 -msgid "The server takes too much time to respond" -msgstr "" - -#: ../cache/locales.php:264 -msgid "Your web browser is too old to use with Movim." -msgstr "" - -#: ../cache/locales.php:265 -msgid "" -"Movim cannot talk with the server, please try again later (Websocket " -"connection error)" -msgstr "" - -#: ../cache/locales.php:266 -msgid "Impossible login" -msgstr "" - -#: ../cache/locales.php:267 -msgid "Oops!" -msgstr "" - -#: ../cache/locales.php:268 ../cache/locales.php:449 ../cache/locales.php:455 -msgid "Unknown error" -msgstr "" - -#: ../cache/locales.php:269 -msgid "Invalid username format" -msgstr "" - -#: ../cache/locales.php:270 -msgid "Invalid password format" -msgstr "" - -#: ../cache/locales.php:272 -msgid "A Movim session is already open on an other device" -msgstr "" - -#: ../cache/locales.php:273 -msgid "Movim failed to authenticate. You entered wrong data" -msgstr "" - -#: ../cache/locales.php:274 -msgid "Authentication mechanism not supported by Movim" -msgstr "" - -#: ../cache/locales.php:275 -msgid "The XMPP authentification failed" -msgstr "" - -#: ../cache/locales.php:276 -#, php-format -msgid "" -"You can login with Facebook (chat only) using %syour.id@chat.facebook.com%s " -"and your password" -msgstr "" - -#: ../cache/locales.php:277 -#, php-format -msgid "%sGmail accounts are also compatible%s but are not fully supported" -msgstr "" - -#: ../cache/locales.php:278 -msgid "You can login using your favorite Jabber account" -msgstr "" - -#: ../cache/locales.php:279 -msgid "or with our demonstration account" -msgstr "" - -#: ../cache/locales.php:280 ../cache/locales.php:435 -msgid "Accounts" -msgstr "" - -#: ../cache/locales.php:281 -msgid "My address" -msgstr "" - -#: ../cache/locales.php:283 -msgid "Create one !" -msgstr "" - -#: ../cache/locales.php:284 -msgid "No account yet ?" -msgstr "" - -#: ../cache/locales.php:285 -msgid "Another account" -msgstr "" - -#: ../cache/locales.php:286 -msgid "You can login with accounts from theses servers" -msgstr "" - -#: ../cache/locales.php:287 -msgid "Connected" -msgstr "" - -#: ../cache/locales.php:288 -msgid "Population" -msgstr "" - -#: ../cache/locales.php:289 -msgid "Bad nickname (between 4 and 40 characters)" -msgstr "" - -#: ../cache/locales.php:292 -msgid "" -"Welcome on your news feed, here you will see all the posts published in the " -"groups you have subscribed." -msgstr "" - -#: ../cache/locales.php:293 -msgid "Refreshing all the streams" -msgstr "" - -#: ../cache/locales.php:294 -msgid "This post is public" -msgstr "" - -#: ../cache/locales.php:295 -msgid "Manage your members" -msgstr "" - -#: ../cache/locales.php:296 -msgid "Get the members" -msgstr "" - -#: ../cache/locales.php:297 -msgid "Affiliations saved" -msgstr "" - -#: ../cache/locales.php:298 -msgid "Manage your subscriptions" -msgstr "" - -#: ../cache/locales.php:299 -msgid "Manage the subscriptions" -msgstr "" - -#: ../cache/locales.php:300 -msgid "Get the subscriptions" -msgstr "" - -#: ../cache/locales.php:301 -msgid "Subscriptions saved" -msgstr "" - -#: ../cache/locales.php:302 -msgid "Pending Invitations" -msgstr "" - -#: ../cache/locales.php:303 -#, php-format -msgid "%s wants to talk with you" -msgstr "" - -#: ../cache/locales.php:304 -msgid "Manage" -msgstr "" - -#: ../cache/locales.php:305 ../cache/locales.php:338 -msgid "News Feed" -msgstr "" - -#: ../cache/locales.php:306 ../cache/locales.php:339 -msgid "Discover and register to the groups you are interested in" -msgstr "" - -#: ../cache/locales.php:307 ../cache/locales.php:340 ../cache/locales.php:482 -msgid "Preview" -msgstr "" - -#: ../cache/locales.php:308 ../cache/locales.php:341 ../cache/locales.php:478 -msgid "Help" -msgstr "" - -#: ../cache/locales.php:309 ../cache/locales.php:342 -msgid "More help" -msgstr "" - -#: ../cache/locales.php:310 ../cache/locales.php:343 -msgid "Markdown syntax manual" -msgstr "" - -#: ../cache/locales.php:311 ../cache/locales.php:344 ../cache/locales.php:681 -msgid "Title" -msgstr "" - -#: ../cache/locales.php:312 ../cache/locales.php:345 -msgid "Content" -msgstr "" - -#: ../cache/locales.php:313 ../cache/locales.php:346 -msgid "Link" -msgstr "" - -#: ../cache/locales.php:314 ../cache/locales.php:347 -msgid "Tags" -msgstr "" - -#: ../cache/locales.php:315 ../cache/locales.php:348 -msgid "Please enter a valid url" -msgstr "" - -#: ../cache/locales.php:316 ../cache/locales.php:349 -msgid "No content to preview" -msgstr "" - -#: ../cache/locales.php:317 ../cache/locales.php:350 ../cache/locales.php:687 -msgid "No content" -msgstr "" - -#: ../cache/locales.php:318 ../cache/locales.php:351 -msgid "Post published" -msgstr "" - -#: ../cache/locales.php:319 ../cache/locales.php:352 -msgid "Post deleted" -msgstr "" - -#: ../cache/locales.php:320 ../cache/locales.php:353 -msgid "This picture will be added to your gallery" -msgstr "" - -#: ../cache/locales.php:321 ../cache/locales.php:354 -msgid "What's Hot" -msgstr "" - -#: ../cache/locales.php:322 ../cache/locales.php:355 -msgid "New post" -msgstr "" - -#: ../cache/locales.php:323 ../cache/locales.php:357 -msgid "" -"You can also use services like Imgur or Flickr to host your picture and " -"paste the link here." -msgstr "" - -#: ../cache/locales.php:324 -#, php-format -msgid "This is a re-post from %s" -msgstr "" - -#: ../cache/locales.php:325 -#, php-format -msgid "See %s profile" -msgstr "" - -#: ../cache/locales.php:326 -msgid "Publish this post on your public feed?" -msgstr "" - -#: ../cache/locales.php:327 -msgid "Post published on your blog" -msgstr "" - -#: ../cache/locales.php:328 -msgid "Post removed from your blog" -msgstr "" - -#: ../cache/locales.php:329 ../cache/locales.php:701 -msgid "Delete this post" -msgstr "" - -#: ../cache/locales.php:330 -msgid "You are going to delete this post, please confirm your action" -msgstr "" - -#: ../cache/locales.php:331 -msgid "Comments disabled" -msgstr "" - -#: ../cache/locales.php:332 -msgid "Comment published" -msgstr "" - -#: ../cache/locales.php:333 -msgid "Disconnect" -msgstr "" - -#: ../cache/locales.php:334 -msgid "Your status here !" -msgstr "" - -#: ../cache/locales.php:335 -msgid "Status updated" -msgstr "" - -#: ../cache/locales.php:336 -msgid "Status" -msgstr "" - -#: ../cache/locales.php:337 -msgid "Presence" -msgstr "" - -#: ../cache/locales.php:356 -msgid "Publish" -msgstr "" - -#: ../cache/locales.php:358 -msgid "You cannot publish a post on this Group" -msgstr "" - -#: ../cache/locales.php:359 -msgid "" -"Some fields have been filled in. Do you still want to go back and loose " -"their content?" -msgstr "" - -#: ../cache/locales.php:360 -msgid "Shared" -msgstr "" - -#: ../cache/locales.php:362 -#, php-format -msgid "%s has been added to your public groups" -msgstr "" - -#: ../cache/locales.php:363 -#, php-format -msgid "%s has been removed from your public groups" -msgstr "" - -#: ../cache/locales.php:364 -msgid "Add a chatroom" -msgstr "" - -#: ../cache/locales.php:365 -msgid "You don't have any chatroom yet." -msgstr "" - -#: ../cache/locales.php:366 -msgid "Add one by clicking on the add button in the header." -msgstr "" - -#: ../cache/locales.php:367 -msgid "Chatrooms" -msgstr "" - -#: ../cache/locales.php:370 -msgid "My Favorite Room" -msgstr "" - -#: ../cache/locales.php:374 -msgid "Remove a chatroom" -msgstr "" - -#: ../cache/locales.php:375 -msgid "" -"You are going to remove the following chatroom. Please confirm your action." -msgstr "" - -#: ../cache/locales.php:378 -msgid "Users in the room" -msgstr "" - -#: ../cache/locales.php:379 -msgid "Please enter a correct nickname (6 to 40 characters)" -msgstr "" - -#: ../cache/locales.php:381 -msgid "Public chatroom" -msgstr "" - -#: ../cache/locales.php:382 -msgid "Please provide a room address" -msgstr "" - -#: ../cache/locales.php:383 -msgid "You are currently logued as an anonymous user." -msgstr "" - -#: ../cache/locales.php:384 -msgid "" -"You can join using your own account or create one on the login page by " -"loging out using the cross in the top-right corner." -msgstr "" - -#: ../cache/locales.php:385 -#, php-format -msgid "Login on %s" -msgstr "" - -#: ../cache/locales.php:386 -msgid "Your nickname" -msgstr "" - -#: ../cache/locales.php:387 -msgid "Ungrouped" -msgstr "" - -#: ../cache/locales.php:388 -msgid "Show disconnected contacts" -msgstr "" - -#: ../cache/locales.php:389 -msgid "Hide disconnected contacts" -msgstr "" - -#: ../cache/locales.php:390 -#, php-format -msgid "Show group %s" -msgstr "" - -#: ../cache/locales.php:391 -#, php-format -msgid "Hide group %s" -msgstr "" - -#: ../cache/locales.php:392 -msgid "Please enter a valid Jabber ID" -msgstr "" - -#: ../cache/locales.php:393 -msgid "" -"No contacts ? You can add one using the + button bellow or going to the " -"Explore page" -msgstr "" - -#: ../cache/locales.php:394 -msgid "Show/Hide" -msgstr "" - -#: ../cache/locales.php:395 -msgid "Enter the Jabber ID of your contact." -msgstr "" - -#: ../cache/locales.php:396 -msgid "Press enter to validate." -msgstr "" - -#: ../cache/locales.php:397 -msgid "JID" -msgstr "" - -#: ../cache/locales.php:398 -msgid "Results" -msgstr "" - -#: ../cache/locales.php:399 -msgid "Contact added" -msgstr "" - -#: ../cache/locales.php:401 -msgid "Contact deleted" -msgstr "" - -#: ../cache/locales.php:403 -msgid "This is not a valid url" -msgstr "" - -#: ../cache/locales.php:404 -msgid "Sharing the URL" -msgstr "" - -#: ../cache/locales.php:405 -msgid "Statistics" -msgstr "" - -#: ../cache/locales.php:406 -msgid "Since" -msgstr "" - -#: ../cache/locales.php:407 -msgid "Sessions" -msgstr "" - -#: ../cache/locales.php:409 -msgid "Monthly Subscriptions" -msgstr "" - -#: ../cache/locales.php:410 -msgid "Monthly Subscriptions Cumulated" -msgstr "" - -#: ../cache/locales.php:412 -msgid "" -"Movim is a decentralized social network, before creating a new account you " -"need to choose a server to register." -msgstr "" - -#: ../cache/locales.php:413 -msgid "Your server here ?" -msgstr "" - -#: ../cache/locales.php:414 -msgid "Contact us to add yours to the officially supported servers list" -msgstr "" - -#: ../cache/locales.php:416 -msgid "No public feed for this contact" -msgstr "" - -#: ../cache/locales.php:417 -msgid "No contact specified" -msgstr "" - -#: ../cache/locales.php:418 ../cache/locales.php:473 -msgid "Profile" -msgstr "" - -#: ../cache/locales.php:419 -msgid "Profile Updated" -msgstr "" - -#: ../cache/locales.php:420 -msgid "Profile Not Updated" -msgstr "" - -#: ../cache/locales.php:421 -msgid "Your profile is now public" -msgstr "" - -#: ../cache/locales.php:422 -msgid "Your profile is now restricted" -msgstr "" - -#: ../cache/locales.php:436 -msgid "Twitter" -msgstr "" - -#: ../cache/locales.php:437 -msgid "Skype" -msgstr "" - -#: ../cache/locales.php:438 -msgid "Yahoo" -msgstr "" - -#: ../cache/locales.php:439 -msgid "Privacy Level" -msgstr "" - -#: ../cache/locales.php:440 -msgid "Is this profile public ?" -msgstr "" - -#: ../cache/locales.php:441 -msgid "" -"Please pay attention ! By making your profile public, all the information " -"listed above will be available for all the Movim users and on the whole " -"Internet." -msgstr "" - -#: ../cache/locales.php:442 -msgid "Call" -msgstr "" - -#: ../cache/locales.php:443 -msgid "Hang up" -msgstr "" - -#: ../cache/locales.php:444 -msgid "Connection" -msgstr "" - -#: ../cache/locales.php:445 ../cache/locales.php:451 -msgid "Hung up" -msgstr "" - -#: ../cache/locales.php:446 ../cache/locales.php:452 -msgid "Your contact is busy" -msgstr "" - -#: ../cache/locales.php:447 ../cache/locales.php:453 -msgid "Declined" -msgstr "" - -#: ../cache/locales.php:448 ../cache/locales.php:454 -msgid "Remote application incompatible" -msgstr "" - -#: ../cache/locales.php:450 ../cache/locales.php:456 -msgid "Is calling you" -msgstr "" - -#: ../cache/locales.php:457 -msgid "You don't have javascript enabled. Good luck with that." -msgstr "" - -#: ../cache/locales.php:458 -msgid "" -"Movim is a kickass distributed social networking platform that protect your " -"privacy an comes with a set of awesome features." -msgstr "" - -#: ../cache/locales.php:459 -msgid "Administration" -msgstr "" - -#: ../cache/locales.php:460 -msgid "Home" -msgstr "" - -#: ../cache/locales.php:461 -msgid "Discover" -msgstr "" - -#: ../cache/locales.php:462 -msgid "Explore" -msgstr "" - -#: ../cache/locales.php:463 -msgid "Account Creation" -msgstr "" - -#: ../cache/locales.php:464 +#: [hello]news [page]news msgid "News" msgstr "" -#: ../cache/locales.php:465 -msgid "Avatar" +#: [hello]news_page +msgid "Read all theses articles on the News page" msgstr "" -#: ../cache/locales.php:467 -msgid "Chats" +#: [hello]blog_title +msgid "Visit your public blog" msgstr "" -#: ../cache/locales.php:470 -msgid "Server" +#: [hello]blog_text +msgid "See your public posts and share them with all your contacts" msgstr "" -#: ../cache/locales.php:471 -msgid "Public Groups" +#: [hello]share_title +msgid "Universal share button" msgstr "" -#: ../cache/locales.php:472 -msgid "Viewer" +#: [hello]share_text +msgid "Bookmark or drag and drop the following button in your toolbar and use it on all the pages you want to share on Movim" msgstr "" -#: ../cache/locales.php:474 -msgid "Media" +#: [hello]share_button +msgid "Share on Movim" msgstr "" -#: ../cache/locales.php:475 -msgid "Blog" +#: [help]faq +msgid "Frequently Asked Questions" msgstr "" -#: ../cache/locales.php:476 -msgid "About" +#: [banner]title +msgid "What do the little banners refer to ?" msgstr "" -#: ../cache/locales.php:477 -msgid "Login" +#: [banner]info1 +msgid "Thanks to these five little banners, you can quickly identitfy the level of confdentiality applied to the information you provide." msgstr "" -#: ../cache/locales.php:479 -msgid "Feed" +#: [banner]white +msgid "White, only you can see the information" msgstr "" -#: ../cache/locales.php:481 -msgid "Gallery" +#: [banner]green +msgid "Green, you have chosen some contacts who can see your information" msgstr "" -#: ../cache/locales.php:483 -msgid "Visio-conference" +#: [banner]orange +msgid "Orange, all your contact list can see your information" msgstr "" -#: ../cache/locales.php:484 -msgid "Pods" +#: [banner]red +msgid "Red, everybody in the XMPP network can see your information" msgstr "" -#: ../cache/locales.php:485 -msgid "Share" +#: [banner]black +msgid "Black, the whole Internet can see your information" msgstr "" -#: ../cache/locales.php:486 -msgid "Room" +#: [wiki]question +msgid "Looking for some documentation ?" msgstr "" -#: ../cache/locales.php:487 -#, php-format -msgid "Error: %s" +#: [wiki]button +msgid "Read the Wiki" msgstr "" -#: ../cache/locales.php:488 -#, php-format -msgid "Cannot load file '%s'" +#: [ml]question +msgid "Talk with us by email ?" msgstr "" -#: ../cache/locales.php:489 -#, php-format -msgid "Route error, please set all the parameters for the page %s" +#: [ml]button +msgid "Join the Mailing List" msgstr "" -#: ../cache/locales.php:490 -#, php-format -msgid "Requested widget '%s' doesn't exist." +#: [chatroom]question +msgid "Chat with the team ?" msgstr "" -#: ../cache/locales.php:491 -#, php-format -msgid "Requested event '%s' not registered." +#: [chatroom]button +msgid "Join the Chatroom" msgstr "" -#: ../cache/locales.php:492 -msgid "Whoops!" +#: [init]location +msgid "Location node created" msgstr "" -#: ../cache/locales.php:493 -msgid "It seem that you don't have any pictures here?" +#: [init]bookmark +msgid "Bookmark node created" msgstr "" -#: ../cache/locales.php:494 -msgid "You can try to upload a couple by going to the Media page" +#: [init]vcard4 +msgid "Profile node created" msgstr "" -#: ../cache/locales.php:495 -#, php-format -msgid "%s - About" +#: [init]avatar +msgid "Avatar node created" msgstr "" -#: ../cache/locales.php:496 -#, php-format -msgid "%s - Account" +#: [init]subscriptions +msgid "Subscriptions node created" msgstr "" -#: ../cache/locales.php:497 -#, php-format -msgid "%s - Administration Panel" +#: [init]microblog +msgid "Microblog node created" msgstr "" -#: ../cache/locales.php:498 -#, php-format -msgid "%s - Blog" +#: [location]title +msgid "Location" msgstr "" -#: ../cache/locales.php:499 -#, php-format -msgid "%s - Configuration" +#: [location]wrong_postition +msgid "Wrong position" msgstr "" -#: ../cache/locales.php:500 -#, php-format -msgid "%s - Discover" +#: [location]updated +msgid "Location updated" msgstr "" -#: ../cache/locales.php:501 -#, php-format -msgid "%s - Explore" +#: [location]update +msgid "Update my position" msgstr "" -#: ../cache/locales.php:502 -#, php-format -msgid "%s - Help Page" +#: [login_anonymous]bad_username +msgid "Bad nickname (between 4 and 40 characters)" msgstr "" -#: ../cache/locales.php:503 -#, php-format -msgid "%s - Login to Movim" +#: [error]username +msgid "Wrong username" msgstr "" -#: ../cache/locales.php:504 -#, php-format -msgid "%s - Welcome to Movim" +#: [error]jid +msgid "Invalid JID" msgstr "" -#: ../cache/locales.php:505 -#, php-format -msgid "%s - Media" +#: [error]empty_challenge +msgid "Empty Challenge from the server" msgstr "" -#: ../cache/locales.php:506 -#, php-format -msgid "%s - News" +#: [error]dns +msgid "XMPP Domain error, your account is not a correct Jabber ID" msgstr "" -#: ../cache/locales.php:507 -#, php-format -msgid "%s - Group Configuration" +#: [error]data_missings +msgid "Some data are missing !" msgstr "" -#: ../cache/locales.php:508 -#, php-format -msgid "%s - Group" +#: [error]wrong_password +msgid "Wrong password" msgstr "" -#: ../cache/locales.php:509 -#, php-format -msgid "%s - 404" +#: [error]internal +msgid "Internal server error" msgstr "" -#: ../cache/locales.php:510 -#, php-format -msgid "%s - Profile" +#: [error]session +msgid "Session error" msgstr "" -#: ../cache/locales.php:511 -#, php-format -msgid "%s - Server" +#: [error]account_created +msgid "Account successfully created" msgstr "" -#: ../cache/locales.php:512 -msgid "Validate" +#: [error]xmpp_unauthorized +msgctxt "[error]xmpp_unauthorized" +msgid "Your XMPP server is unauthorized" msgstr "" -#: ../cache/locales.php:513 -msgid "Refresh" +#: [error]mec_error +msgid "The server takes too much time to respond" msgstr "" -#: ../cache/locales.php:514 -msgid "Add" +#: [error]too_old +msgid "Your web browser is too old to use with Movim." msgstr "" -#: ../cache/locales.php:515 -msgid "Delete" +#: [error]websocket +msgid "Movim cannot talk with the server, please try again later (Websocket connection error)" msgstr "" -#: ../cache/locales.php:516 -msgid "Remove" +#: [error]impossible +msgid "Impossible login" msgstr "" -#: ../cache/locales.php:517 -msgid "Cancel" +#: [error]title +msgid "Oops!" msgstr "" -#: ../cache/locales.php:518 -msgid "Close" +#: [error]default [visio]unknown_error +msgid "Unknown error" msgstr "" -#: ../cache/locales.php:519 -msgid "Update" +#: [error]login_format +msgid "Invalid username format" msgstr "" -#: ../cache/locales.php:520 -msgid "Updating" +#: [error]password_format +msgid "Invalid password format" msgstr "" -#: ../cache/locales.php:521 +#: [error]unauthorized +msgctxt "[error]unauthorized" +msgid "Your XMPP server is unauthorized" +msgstr "" + +#: [error]conflict +msgid "A Movim session is already open on an other device" +msgstr "" + +#: [error]wrong_account +msgid "Movim failed to authenticate. You entered wrong data" +msgstr "" + +#: [error]mechanism +msgid "Authentication mechanism not supported by Movim" +msgstr "" + +#: [error]fail_auth +msgid "The XMPP authentification failed" +msgstr "" + +#: [account]title [accounts]accounts_title +msgid "Accounts" +msgstr "" + +#: [form]username +msgid "My address" +msgstr "" + +#: [form]create_one +msgid "Create one !" +msgstr "" + +#: [form]another_account +msgid "Another account" +msgstr "" + +#: [form]no_account +msgid "No account yet ?" +msgstr "" + +#: [form]whitelist.info +msgid "You can login with accounts from theses servers" +msgstr "" + +#: [form]connected +msgid "Connected" +msgstr "" + +#: [form]population +msgid "Population" +msgstr "" + +#: [menu]empty_title +msgid "No news yet..." +msgstr "" + +#: [menu]empty +msgid "Welcome on your news feed, here you will see all the posts published by your contacts and in the groups you have subscribed." +msgstr "" + +#: [menu]refresh +msgid "Refreshing all the streams" +msgstr "" + +#: [menu]public +msgid "This post is public" +msgstr "" + +#: [affiliations]title +msgid "Manage your members" +msgstr "" + +#: [affiliations]get +msgid "Get the members" +msgstr "" + +#: [affiliations]saved +msgid "Affiliations saved" +msgstr "" + +#: [subscriptions]title +msgid "Manage your subscriptions" +msgstr "" + +#: [subscriptions]info +msgid "Manage the subscriptions" +msgstr "" + +#: [subscriptions]get +msgid "Get the subscriptions" +msgstr "" + +#: [subscriptions]saved +msgid "Subscriptions saved" +msgstr "" + +#: [notifs]title +msgid "Pending Invitations" +msgstr "" + +#: [notifs]wants_to_talk +msgid "%s wants to talk with you" +msgstr "" + +#: [notifs]manage +msgid "Manage" +msgstr "" + +#: [post]news_feed +msgid "News Feed" +msgstr "" + +#: [post]placeholder +msgid "Discover and register to the groups you are interested in" +msgstr "" + +#: [post]preview [page]preview +msgid "Preview" +msgstr "" + +#: [post]help [page]help +msgid "Help" +msgstr "" + +#: [post]help_more +msgid "More help" +msgstr "" + +#: [post]help_manual +msgid "Markdown syntax manual" +msgstr "" + +#: [post]title +msgid "Title" +msgstr "" + +#: [post]content +msgid "Content" +msgstr "" + +#: [post]link +msgid "Link" +msgstr "" + +#: [post]tags +msgid "Tags" +msgstr "" + +#: [post]valid_url [publish]valid_url +msgid "Please enter a valid url" +msgstr "" + +#: [post]no_content_preview [publish]no_content_preview +msgid "No content to preview" +msgstr "" + +#: [post]no_content [publish]no_content [post]empty +msgid "No content" +msgstr "" + +#: [post]published +msgid "Post published" +msgstr "" + +#: [post]deleted +msgid "Post deleted" +msgstr "" + +#: [post]gallery +msgid "This picture will be added to your gallery" +msgstr "" + +#: [post]hot +msgid "What's Hot" +msgstr "" + +#: [post]hot_text +msgid "Posts recently published in Groups that you are not subscribed (yet)" +msgstr "" + +#: [post]new [publish]new +msgid "New post" +msgstr "" + +#: [post]embed_tip +msgid "You can also use services like Imgur or Flickr to host your picture and paste the link here." +msgstr "" + +#: [post]repost +msgid "This is a re-post from %s" +msgstr "" + +#: [post]repost_profile +msgid "See %s profile" +msgstr "" + +#: [post]public +msgid "Publish this post publicly?" +msgstr "" + +#: [post]blog_add +msgid "Post published on your blog" +msgstr "" + +#: [post]blog_remove +msgid "Post removed from your blog" +msgstr "" + +#: [post]delete_title [post]delete +msgid "Delete this post" +msgstr "" + +#: [post]delete_text +msgid "You are going to delete this post, please confirm your action" +msgstr "" + +#: [post]comments_disabled +msgid "Comments disabled" +msgstr "" + +#: [post]comment_published +msgid "Comment published" +msgstr "" + +#: [status]disconnect +msgid "Disconnect" +msgstr "" + +#: [status]here +msgid "Your status here !" +msgstr "" + +#: [status]updated +msgid "Status updated" +msgstr "" + +#: [status]status +msgid "Status" +msgstr "" + +#: [status]presence +msgid "Presence" +msgstr "" + +#: [status]online +msgid "Online with Movim" +msgstr "" + +#: [publish]title +msgid "Publish" +msgstr "" + +#: [publish]attach +msgid "Add a file or a picture to your post" +msgstr "" + +#: [publish]no_publication +msgid "You cannot publish a post on this Group" +msgstr "" + +#: [publish]form_filled +msgid "Some fields have been filled in. Do you still want to go back and loose their content?" +msgstr "" + +#: [public_groups]shared +msgid "Shared" +msgstr "" + +#: [public_groups]added +msgid "%s has been added to your public groups" +msgstr "" + +#: [rooms]add +msgid "Add a chatroom" +msgstr "" + +#: [rooms]empty_text1 +msgid "You don't have any chatroom yet." +msgstr "" + +#: [rooms]empty_text2 +msgid "Add one by clicking on the add button in the header." +msgstr "" + +#: [chatrooms]title +msgid "Chatrooms" +msgstr "" + +#: [chatrooms]name_placeholder +msgid "My Favorite Room" +msgstr "" + +#: [chatrooms]users +msgid "Users in the room" +msgstr "" + +#: [chatrooms]bad_nickname +msgid "Please enter a correct nickname (2 to 40 characters)" +msgstr "" + +#: [room]anonymous_title +msgid "Public chatroom" +msgstr "" + +#: [room]no_room +msgid "Please provide a room address" +msgstr "" + +#: [room]anonymous_text1 +msgid "You are currently logued as an anonymous user." +msgstr "" + +#: [room]anonymous_text2 +msgid "You can join using your own account or create one on the login page by loging out using the cross in the top-right corner." +msgstr "" + +#: [room]anonymous_login +msgid "Login on %s" +msgstr "" + +#: [room]nick +msgid "Your nickname" +msgstr "" + +#: [roster]ungrouped +msgid "Ungrouped" +msgstr "" + +#: [roster]show_disconnected +msgid "Show disconnected contacts" +msgstr "" + +#: [roster]hide_disconnected +msgid "Hide disconnected contacts" +msgstr "" + +#: [roster]show_group +msgid "Show group %s" +msgstr "" + +#: [roster]hide_group +msgid "Hide group %s" +msgstr "" + +#: [roster]jid_error +msgid "Please enter a valid Jabber ID" +msgstr "" + +#: [roster]no_contacts_title +msgid "No contacts ?" +msgstr "" + +#: [roster]no_contacts_text +msgid "You can add one using the + button bellow" +msgstr "" + +#: [roster]show_hide +msgid "Show/Hide" +msgstr "" + +#: [roster]add_contact_info1 +msgid "Enter the Jabber ID of your contact." +msgstr "" + +#: [roster]add_contact_info2 +msgid "Press enter to validate." +msgstr "" + +#: [roster]jid +msgid "JID" +msgstr "" + +#: [roster]results +msgid "Results" +msgstr "" + +#: [roster]added +msgid "Contact added" +msgstr "" + +#: [roster]deleted +msgid "Contact deleted" +msgstr "" + +#: [roster]search +msgid "Search" +msgstr "" + +#: [share]error +msgid "This is not a valid url" +msgstr "" + +#: [share]success +msgid "Sharing the URL" +msgstr "" + +#: [statistics]title +msgid "Statistics" +msgstr "" + +#: [statistics]since +msgid "Since" +msgstr "" + +#: [statistics]sessions +msgid "Sessions" +msgstr "" + +#: [statistics]monthly_sub +msgid "Monthly Subscriptions" +msgstr "" + +#: [statistics]monthly_sub_cum +msgid "Monthly Subscriptions Cumulated" +msgstr "" + +#: [subscribe]info +msgid "Movim is a decentralized social network, before creating a new account you need to choose a server to register." +msgstr "" + +#: [subscribe]server_question +msgid "Your server here ?" +msgstr "" + +#: [subscribe]server_contact +msgid "Contact us to add yours to the officially supported servers list" +msgstr "" + +#: [feed]nope +msgid "No public feed for this contact" +msgstr "" + +#: [feed]nope_contact +msgid "No contact specified" +msgstr "" + +#: [upload]title +msgid "Upload a file" +msgstr "" + +#: [upload]choose +msgid "Choose a file to upload" +msgstr "" + +#: [vcard]title [page]profile +msgid "Profile" +msgstr "" + +#: [vcard]updated +msgid "Profile Updated" +msgstr "" + +#: [vcard]not_updated +msgid "Profile Not Updated" +msgstr "" + +#: [vcard]public +msgid "Your profile is now public" +msgstr "" + +#: [vcard]restricted +msgid "Your profile is now restricted" +msgstr "" + +#: [general]nickname +msgctxt "[general]nickname" +msgid "Nickname" +msgstr "" + +#: [accounts]twitter +msgid "Twitter" +msgstr "" + +#: [accounts]skype +msgid "Skype" +msgstr "" + +#: [accounts]yahoo +msgid "Yahoo" +msgstr "" + +#: [accounts]accounts_nickname +msgctxt "[accounts]accounts_nickname" +msgid "Nickname" +msgstr "" + +#: [accounts]accounts_yahoo +msgid "Yahoo Account" +msgstr "" + +#: [privacy]privacy_title +msgid "Privacy Level" +msgstr "" + +#: [privacy]privacy_question +msgid "Is this profile public ?" +msgstr "" + +#: [privacy]privacy_info +msgid "Please pay attention ! By making your profile public, all the information listed above will be available for all the Movim users and on the whole Internet." +msgstr "" + +#: [save]submit [button]submit msgid "Submit" msgstr "" -#: ../cache/locales.php:522 -msgid "Submitting" -msgstr "" - -#: ../cache/locales.php:523 +#: [save]reset [button]reset msgid "Reset" msgstr "" -#: ../cache/locales.php:524 +#: [visio]hung_up +msgid "Hung up" +msgstr "" + +#: [visio]busy +msgid "Your contact is busy" +msgstr "" + +#: [visio]declined +msgid "Declined" +msgstr "" + +#: [visio]calling +msgid "Is calling you" +msgstr "" + +#: [visio]call +msgid "Call" +msgstr "" + +#: [visio]hang_up +msgid "Hang up" +msgstr "" + +#: [visio]connection +msgid "Connection" +msgstr "" + +#: [global]no_js +msgid "You don't have javascript enabled. Good luck with that." +msgstr "" + +#: [global]description +msgid "Movim is a kickass distributed social networking platform that protect your privacy an comes with a set of awesome features." +msgstr "" + +#: [page]administration +msgid "Administration" +msgstr "" + +#: [page]home +msgid "Home" +msgstr "" + +#: [page]discover +msgid "Discover" +msgstr "" + +#: [page]explore +msgid "Explore" +msgstr "" + +#: [page]account_creation +msgid "Account Creation" +msgstr "" + +#: [page]avatar +msgid "Avatar" +msgstr "" + +#: [page]chats +msgid "Chats" +msgstr "" + +#: [page]server +msgid "Server" +msgstr "" + +#: [page]public_groups +msgid "Public Groups" +msgstr "" + +#: [page]viewer +msgid "Viewer" +msgstr "" + +#: [page]media +msgid "Media" +msgstr "" + +#: [page]blog +msgid "Blog" +msgstr "" + +#: [page]about +msgid "About" +msgstr "" + +#: [page]login +msgid "Login" +msgstr "" + +#: [page]feed +msgid "Feed" +msgstr "" + +#: [page]gallery +msgid "Gallery" +msgstr "" + +#: [page]visio +msgid "Visio-conference" +msgstr "" + +#: [page]pods +msgid "Pods" +msgstr "" + +#: [page]share +msgid "Share" +msgstr "" + +#: [page]room +msgid "Room" +msgstr "" + +#: [error]error +msgid "Error: %s" +msgstr "" + +#: [error]cannot_load_file +msgid "Cannot load file '%s'" +msgstr "" + +#: [error]route +msgid "Route error, please set all the parameters for the page %s" +msgstr "" + +#: [error]widget_load_error +msgid "Requested widget '%s' doesn't exist." +msgstr "" + +#: [error]widget_call_error +msgid "Requested event '%s' not registered." +msgstr "" + +#: [error]whoops +msgid "Whoops!" +msgstr "" + +#: [error]media_not_found +msgid "It seem that you don't have any pictures here?" +msgstr "" + +#: [error]media_ask_upload +msgid "You can try to upload a couple by going to the Media page" +msgstr "" + +#: [title]about +msgid "%s - About" +msgstr "" + +#: [title]account +msgid "%s - Account" +msgstr "" + +#: [title]administration +msgid "%s - Administration Panel" +msgstr "" + +#: [title]blog +msgid "%s - Blog" +msgstr "" + +#: [title]configuration +msgid "%s - Configuration" +msgstr "" + +#: [title]discover +msgid "%s - Discover" +msgstr "" + +#: [title]explore +msgid "%s - Explore" +msgstr "" + +#: [title]help +msgid "%s - Help Page" +msgstr "" + +#: [title]login +msgid "%s - Login to Movim" +msgstr "" + +#: [title]main +msgid "%s - Welcome to Movim" +msgstr "" + +#: [title]media +msgid "%s - Media" +msgstr "" + +#: [title]news +msgid "%s - News" +msgstr "" + +#: [title]node_configuration +msgid "%s - Group Configuration" +msgstr "" + +#: [title]node +msgid "%s - Group" +msgstr "" + +#: [title]not_found +msgid "%s - 404" +msgstr "" + +#: [title]profile +msgid "%s - Profile" +msgstr "" + +#: [title]server +msgid "%s - Server" +msgstr "" + +#: [button]validate +msgid "Validate" +msgstr "" + +#: [button]refresh +msgid "Refresh" +msgstr "" + +#: [button]add +msgid "Add" +msgstr "" + +#: [button]delete +msgid "Delete" +msgstr "" + +#: [button]cancel +msgid "Cancel" +msgstr "" + +#: [button]close +msgid "Close" +msgstr "" + +#: [button]update +msgid "Update" +msgstr "" + +#: [button]updating +msgid "Updating" +msgstr "" + +#: [button]submitting +msgid "Submitting" +msgstr "" + +#: [button]register msgid "Register" msgstr "" -#: ../cache/locales.php:525 +#: [button]unregister msgid "Unregister" msgstr "" -#: ../cache/locales.php:526 +#: [button]save msgid "Save" msgstr "" -#: ../cache/locales.php:527 +#: [button]clear msgid "Clear" msgstr "" -#: ../cache/locales.php:528 +#: [button]upload msgid "Upload" msgstr "" -#: ../cache/locales.php:529 +#: [button]come_in msgid "Come in!" msgstr "" -#: ../cache/locales.php:530 +#: [button]connecting msgid "Connecting" msgstr "" -#: ../cache/locales.php:531 +#: [button]bool_yes msgid "Yes" msgstr "" -#: ../cache/locales.php:532 +#: [button]bool_no msgid "No" msgstr "" -#: ../cache/locales.php:534 +#: [button]return msgid "Return" msgstr "" -#: ../cache/locales.php:535 +#: [button]accept msgid "Accept" msgstr "" -#: ../cache/locales.php:536 +#: [button]refuse msgid "Refuse" msgstr "" -#: ../cache/locales.php:537 +#: [button]next msgid "Next" msgstr "" -#: ../cache/locales.php:538 +#: [button]previous msgid "Previous" msgstr "" -#: ../cache/locales.php:539 -#, php-format +#: [step]step msgid "Step %s" msgstr "" -#: ../cache/locales.php:542 +#: [day]title msgid "Day" msgstr "" -#: ../cache/locales.php:543 +#: [day]monday msgid "Monday" msgstr "" -#: ../cache/locales.php:544 +#: [day]tuesday msgid "Tuesday" msgstr "" -#: ../cache/locales.php:545 +#: [day]wednesday msgid "Wednesday" msgstr "" -#: ../cache/locales.php:546 +#: [day]thursday msgid "Thursday" msgstr "" -#: ../cache/locales.php:547 +#: [day]friday msgid "Friday" msgstr "" -#: ../cache/locales.php:548 +#: [day]saturday msgid "Saturday" msgstr "" -#: ../cache/locales.php:549 +#: [day]sunday msgid "Sunday" msgstr "" -#: ../cache/locales.php:550 ../cache/locales.php:559 +#: [gender]nil +msgctxt "[gender]nil" msgid "None" msgstr "" -#: ../cache/locales.php:551 +#: [gender]male msgid "Male" msgstr "" -#: ../cache/locales.php:552 +#: [gender]female msgid "Female" msgstr "" -#: ../cache/locales.php:553 +#: [gender]other msgid "Other" msgstr "" -#: ../cache/locales.php:554 +#: [client]bot msgid "Bot" msgstr "" -#: ../cache/locales.php:555 +#: [client]desktop msgid "Desktop" msgstr "" -#: ../cache/locales.php:556 +#: [client]phone msgid "Phone" msgstr "" -#: ../cache/locales.php:557 +#: [client]web msgid "Web" msgstr "" -#: ../cache/locales.php:558 +#: [client]registered msgid "Registered" msgstr "" -#: ../cache/locales.php:560 +#: [marital]nil +msgctxt "[marital]nil" +msgid "None" +msgstr "" + +#: [marital]single msgid "Single" msgstr "" -#: ../cache/locales.php:561 +#: [marital]relationship msgid "In a relationship" msgstr "" -#: ../cache/locales.php:562 +#: [marital]married msgid "Married" msgstr "" -#: ../cache/locales.php:563 +#: [marital]divorced msgid "Divorced" msgstr "" -#: ../cache/locales.php:564 +#: [marital]widowed msgid "Widowed" msgstr "" -#: ../cache/locales.php:565 +#: [marital]cohabiting msgid "Cohabiting" msgstr "" -#: ../cache/locales.php:566 +#: [marital]union msgid "Civil Union" msgstr "" -#: ../cache/locales.php:567 +#: [flag]white msgid "Not shared" msgstr "" -#: ../cache/locales.php:568 +#: [flag]green msgid "Shared with one contact" msgstr "" -#: ../cache/locales.php:569 +#: [flag]orange msgid "Shared with all contacts" msgstr "" -#: ../cache/locales.php:570 +#: [flag]red msgid "Shared with the XMPP network" msgstr "" -#: ../cache/locales.php:571 +#: [flag]black msgid "Shared with the whole Internet" msgstr "" -#: ../cache/locales.php:572 +#: [presence]online msgid "Online" msgstr "" -#: ../cache/locales.php:573 +#: [presence]away msgid "Away" msgstr "" -#: ../cache/locales.php:574 +#: [presence]dnd msgid "Do Not Disturb" msgstr "" -#: ../cache/locales.php:575 +#: [presence]xa msgid "Extended Away" msgstr "" -#: ../cache/locales.php:576 +#: [presence]offline msgid "Offline" msgstr "" -#: ../cache/locales.php:577 +#: [presence]error msgid "Error" msgstr "" -#: ../cache/locales.php:578 +#: [mood]afraid msgid "afraid" msgstr "" -#: ../cache/locales.php:579 +#: [mood]amazed msgid "amazed" msgstr "" -#: ../cache/locales.php:580 +#: [mood]amorous msgid "amorous" msgstr "" -#: ../cache/locales.php:581 +#: [mood]angry msgid "angry" msgstr "" -#: ../cache/locales.php:582 +#: [mood]annoyed msgid "annoyed" msgstr "" -#: ../cache/locales.php:583 +#: [mood]anxious msgid "anxious" msgstr "" -#: ../cache/locales.php:584 +#: [mood]aroused msgid "aroused" msgstr "" -#: ../cache/locales.php:585 +#: [mood]ashamed msgid "ashamed" msgstr "" -#: ../cache/locales.php:586 +#: [mood]bored msgid "bored" msgstr "" -#: ../cache/locales.php:587 +#: [mood]brave msgid "brave" msgstr "" -#: ../cache/locales.php:588 +#: [mood]calm msgid "calm" msgstr "" -#: ../cache/locales.php:589 +#: [mood]cautious msgid "cautious" msgstr "" -#: ../cache/locales.php:590 +#: [mood]cold msgid "cold" msgstr "" -#: ../cache/locales.php:591 +#: [mood]confident msgid "confident" msgstr "" -#: ../cache/locales.php:592 +#: [mood]confused msgid "confused" msgstr "" -#: ../cache/locales.php:593 +#: [mood]contemplative msgid "contemplative" msgstr "" -#: ../cache/locales.php:594 +#: [mood]contented msgid "contented" msgstr "" -#: ../cache/locales.php:595 +#: [mood]cranky msgid "cranky" msgstr "" -#: ../cache/locales.php:596 +#: [mood]crazy msgid "crazy" msgstr "" -#: ../cache/locales.php:597 +#: [mood]creative msgid "creative" msgstr "" -#: ../cache/locales.php:598 +#: [mood]curious msgid "curious" msgstr "" -#: ../cache/locales.php:599 +#: [mood]dejected msgid "dejected" msgstr "" -#: ../cache/locales.php:600 +#: [mood]depressed msgid "depressed" msgstr "" -#: ../cache/locales.php:601 +#: [mood]disappointed msgid "disappointed" msgstr "" -#: ../cache/locales.php:602 +#: [mood]disgusted msgid "disgusted" msgstr "" -#: ../cache/locales.php:603 +#: [mood]dismayed msgid "dismayed" msgstr "" -#: ../cache/locales.php:604 +#: [mood]distracted msgid "distracted" msgstr "" -#: ../cache/locales.php:605 +#: [mood]embarrassed msgid "embarrassed" msgstr "" -#: ../cache/locales.php:606 +#: [mood]envious msgid "envious" msgstr "" -#: ../cache/locales.php:607 +#: [mood]excited msgid "excited" msgstr "" -#: ../cache/locales.php:608 +#: [mood]flirtatious msgid "flirtatious" msgstr "" -#: ../cache/locales.php:609 +#: [mood]frustated msgid "frustated" msgstr "" -#: ../cache/locales.php:610 +#: [mood]grateful msgid "grateful" msgstr "" -#: ../cache/locales.php:611 +#: [mood]grieving msgid "grieving" msgstr "" -#: ../cache/locales.php:612 +#: [mood]grumpy msgid "grumpy" msgstr "" -#: ../cache/locales.php:613 +#: [mood]guilty msgid "guilty" msgstr "" -#: ../cache/locales.php:614 +#: [mood]happy msgid "happy" msgstr "" -#: ../cache/locales.php:615 +#: [mood]hopeful msgid "hopeful" msgstr "" -#: ../cache/locales.php:616 +#: [mood]hot msgid "hot" msgstr "" -#: ../cache/locales.php:617 +#: [mood]humbled msgid "humbled" msgstr "" -#: ../cache/locales.php:618 +#: [mood]humiliated msgid "humiliated" msgstr "" -#: ../cache/locales.php:619 +#: [mood]hungry msgid "hungry" msgstr "" -#: ../cache/locales.php:620 +#: [mood]hurt msgid "hurt" msgstr "" -#: ../cache/locales.php:621 +#: [mood]impressed msgid "impressed" msgstr "" -#: ../cache/locales.php:622 +#: [mood]in_awe msgid "in awe" msgstr "" -#: ../cache/locales.php:623 +#: [mood]in_love msgid "in love" msgstr "" -#: ../cache/locales.php:624 +#: [mood]indignant msgid "indignant" msgstr "" -#: ../cache/locales.php:625 +#: [mood]interested msgid "interested" msgstr "" -#: ../cache/locales.php:626 +#: [mood]intoxicated msgid "intoxicated" msgstr "" -#: ../cache/locales.php:627 +#: [mood]invincible msgid "invincible" msgstr "" -#: ../cache/locales.php:628 +#: [mood]jealous msgid "jealous" msgstr "" -#: ../cache/locales.php:629 +#: [mood]lonely msgid "lonely" msgstr "" -#: ../cache/locales.php:630 +#: [mood]lost msgid "lost" msgstr "" -#: ../cache/locales.php:631 +#: [mood]lucky msgid "lucky" msgstr "" -#: ../cache/locales.php:632 +#: [mood]mean msgid "mean" msgstr "" -#: ../cache/locales.php:633 +#: [mood]moody msgid "moody" msgstr "" -#: ../cache/locales.php:634 +#: [mood]nervous msgid "nervous" msgstr "" -#: ../cache/locales.php:635 +#: [mood]neutral msgid "neutral" msgstr "" -#: ../cache/locales.php:636 +#: [mood]offended msgid "offended" msgstr "" -#: ../cache/locales.php:637 +#: [mood]outraged msgid "outraged" msgstr "" -#: ../cache/locales.php:638 +#: [mood]playful msgid "playful" msgstr "" -#: ../cache/locales.php:639 +#: [mood]proud msgid "proud" msgstr "" -#: ../cache/locales.php:640 +#: [mood]relaxed msgid "relaxed" msgstr "" -#: ../cache/locales.php:641 +#: [mood]relieved msgid "relieved" msgstr "" -#: ../cache/locales.php:642 -msgid "remorseful" -msgstr "" - -#: ../cache/locales.php:643 +#: [mood]restless msgid "restless" msgstr "" -#: ../cache/locales.php:644 +#: [mood]sad msgid "sad" msgstr "" -#: ../cache/locales.php:645 +#: [mood]sarcastic msgid "sarcastic" msgstr "" -#: ../cache/locales.php:646 +#: [mood]satisfied msgid "satisfied" msgstr "" -#: ../cache/locales.php:647 +#: [mood]serious msgid "serious" msgstr "" -#: ../cache/locales.php:648 +#: [mood]shocked msgid "shocked" msgstr "" -#: ../cache/locales.php:649 +#: [mood]shy msgid "shy" msgstr "" -#: ../cache/locales.php:650 +#: [mood]sick msgid "sick" msgstr "" -#: ../cache/locales.php:651 +#: [mood]sleepy msgid "sleepy" msgstr "" -#: ../cache/locales.php:652 +#: [mood]spontaneous msgid "spontaneous" msgstr "" -#: ../cache/locales.php:653 +#: [mood]stressed msgid "stressed" msgstr "" -#: ../cache/locales.php:654 +#: [mood]strong msgid "strong" msgstr "" -#: ../cache/locales.php:655 +#: [mood]surprised msgid "surprised" msgstr "" -#: ../cache/locales.php:656 +#: [mood]thankful msgid "thankful" msgstr "" -#: ../cache/locales.php:657 +#: [mood]thirsty msgid "thirsty" msgstr "" -#: ../cache/locales.php:658 +#: [mood]tired msgid "tired" msgstr "" -#: ../cache/locales.php:659 +#: [mood]undefined msgid "undefined" msgstr "" -#: ../cache/locales.php:660 +#: [mood]weak msgid "weak" msgstr "" -#: ../cache/locales.php:661 +#: [mood]worried msgid "worried" msgstr "" -#: ../cache/locales.php:662 +#: [month]title msgid "Month" msgstr "" -#: ../cache/locales.php:663 +#: [month]january msgid "January" msgstr "" -#: ../cache/locales.php:664 +#: [month]february msgid "February" msgstr "" -#: ../cache/locales.php:665 +#: [month]march msgid "March" msgstr "" -#: ../cache/locales.php:666 +#: [month]april msgid "April" msgstr "" -#: ../cache/locales.php:667 +#: [month]may msgid "May" msgstr "" -#: ../cache/locales.php:668 +#: [month]june msgid "June" msgstr "" -#: ../cache/locales.php:669 +#: [month]july msgid "July" msgstr "" -#: ../cache/locales.php:670 +#: [month]august msgid "August" msgstr "" -#: ../cache/locales.php:671 +#: [month]september msgid "September" msgstr "" -#: ../cache/locales.php:672 +#: [month]october msgid "October" msgstr "" -#: ../cache/locales.php:673 +#: [month]november msgid "November" msgstr "" -#: ../cache/locales.php:674 +#: [month]december msgid "December" msgstr "" -#: ../cache/locales.php:675 +#: [year]title msgid "Year" msgstr "" -#: ../cache/locales.php:676 +#: [date]today msgid "Today" msgstr "" -#: ../cache/locales.php:677 +#: [date]tomorrow msgid "Tomorrow" msgstr "" -#: ../cache/locales.php:678 +#: [date]yesterday msgid "Yesterday" msgstr "" -#: ../cache/locales.php:679 -#, php-format -msgid " %d days ago" +#: [date]ago +msgid "%d days ago" msgstr "" -#: ../cache/locales.php:680 +#: [date]day msgid "day" msgstr "" -#: ../cache/locales.php:682 +#: [post]whats_new msgid "What's new ?" msgstr "" -#: ../cache/locales.php:683 +#: [post]place msgid "Place" msgstr "" -#: ../cache/locales.php:684 +#: [post]by msgid "by" msgstr "" -#: ../cache/locales.php:685 +#: [post]geolocalisation msgid "Geolocalisation" msgstr "" -#: ../cache/locales.php:686 +#: [post]email msgid "email" msgstr "" -#: ../cache/locales.php:688 +#: [post]no_comments msgid "No comments yet" msgstr "" -#: ../cache/locales.php:689 +#: [post]no_comments_stream msgid "No comments stream" msgstr "" -#: ../cache/locales.php:690 +#: [post]no_load msgid "Your feed cannot be loaded." msgstr "" -#: ../cache/locales.php:691 +#: [post]older msgid "Get older posts" msgstr "" -#: ../cache/locales.php:692 -#, php-format +#: [post]new_items msgid "%s new items" msgstr "" -#: ../cache/locales.php:693 +#: [post]comment_error msgid "Comment publication error" msgstr "" -#: ../cache/locales.php:694 +#: [post]comments_older msgid "Show the older comments" msgstr "" -#: ../cache/locales.php:695 -msgid "Loading comments ..." +#: [post]comments_loading +msgid "Loading comments..." msgstr "" -#: ../cache/locales.php:696 +#: [post]comments_get msgid "Get the comments" msgstr "" -#: ../cache/locales.php:697 +#: [post]comment_add msgid "Add a comment" msgstr "" -#: ../cache/locales.php:698 +#: [post]share msgid "Share with" msgstr "" -#: ../cache/locales.php:699 +#: [post]share_everyone msgid "Everyone" msgstr "" -#: ../cache/locales.php:700 +#: [post]share_your_contacts msgid "Your contacts" msgstr "" -#: ../cache/locales.php:702 +#: [post]updated msgid "Updated" msgstr "" -#: ../cache/locales.php:703 +#: [post]content_not_found msgid "Content not found" msgstr "" -#: ../cache/locales.php:704 +#: [post]default_title msgid "Contact publication" msgstr "" -#: ../cache/locales.php:705 +#: [post]comments msgid "Comments" msgstr "" -#: ../cache/locales.php:706 +#: [api]error msgid "The API is not reachable, try again later" msgstr "" -#: ../cache/locales.php:707 +#: [field]type_here msgid "Type here" msgstr "" diff --git a/sources/locales/lv.po b/sources/locales/lv.po index 36d63e7..e6e3571 100644 --- a/sources/locales/lv.po +++ b/sources/locales/lv.po @@ -3,2588 +3,2722 @@ # This file is distributed under the same license as the movim package. # FIRST AUTHOR , 2014. # +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/About/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Account/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AccountNext/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AdHoc/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AdminDB/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AdminMain/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AdminTest/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Api/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Avatar/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Blog/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Bookmark/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Chat/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Chats/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/ConfigData/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Config/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Contact/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Group/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Groups/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Header/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Hello/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Help/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Init/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Location/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/LoginAnonymous/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Login/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Menu/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/NodeAffiliations/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/NodeSubscriptions/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Notifs/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Post/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Presence/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Publish/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/PubsubSubscriptionConfig/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Rooms/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Roster/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Share/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Statistics/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Subscribe/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Syndication/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Upload/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Vcard4/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/VisioExt/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Visio/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../locales/locales.ini msgid "" msgstr "" "Project-Id-Version: movim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-06-08 22:06+0200\n" +"POT-Creation-Date: 2015-08-20 15:17+0200\n" "PO-Revision-Date: 2015-06-09 12:19+0000\n" "Last-Translator: Jānis Marks Gailis \n" "Language-Team: Latvian \n" +"Language: lv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2015-06-18 21:08+0000\n" "X-Generator: Launchpad (build 17570)\n" -"Language: lv\n" -#: ../cache/locales.php:2 +#: [about]thanks msgid "Thanks" msgstr "Paldies" -#: ../cache/locales.php:3 +#: [about]developers msgid "Developers" msgstr "Izstrādātāji" -#: ../cache/locales.php:4 +#: [about]translators msgid "Translators" msgstr "Tulkotāji" -#: ../cache/locales.php:5 +#: [about]software msgid "Software" msgstr "Programmatūra" -#: ../cache/locales.php:6 +#: [about]resources msgid "Resources" msgstr "Resursi" -#: ../cache/locales.php:7 ../cache/locales.php:83 ../cache/locales.php:85 +#: [about]api [schema]api [api]title msgid "API" msgstr "API" -#: ../cache/locales.php:8 -msgid "" -"Movim is an XMPP-based communication platform. All the project, except the " -"following software and resources, is under" +#: [about]info +msgid "Movim is an XMPP-based communication platform. All the project, except the following software and resources, is under" msgstr "" -#: ../cache/locales.php:9 +#: [account]title msgid "Account" msgstr "" -#: ../cache/locales.php:10 -msgid "The password has been updated" -msgstr "" +#: [account]password_change_title +#, fuzzy +msgid "Change my password" +msgstr "Nepareiza parole" -#: ../cache/locales.php:11 -msgid "Please provide a valid password (6 characters minimum)" -msgstr "" - -#: ../cache/locales.php:12 -msgid "The provided passwords are not the same" -msgstr "" - -#: ../cache/locales.php:13 -msgid "Delete my account" -msgstr "" - -#: ../cache/locales.php:14 -msgid "" -"You will delete your XMPP account and all the relative information linked to " -"it (profile, contacts and publications)." -msgstr "" - -#: ../cache/locales.php:15 -msgid "Are you sure that you want to delete it ?" -msgstr "" - -#: ../cache/locales.php:16 ../cache/locales.php:411 -msgid "Create a new account" -msgstr "Izveidot jaunu kontu" - -#: ../cache/locales.php:17 -msgid "No account creation form found on the server" -msgstr "" - -#: ../cache/locales.php:18 ../cache/locales.php:172 -msgid "on" -msgstr "šajā datumā" - -#: ../cache/locales.php:19 -msgid "Your acccount has been successfully registered" -msgstr "" - -#: ../cache/locales.php:20 -msgid "Loading" -msgstr "Ielādē" - -#: ../cache/locales.php:21 -msgid "Not Acceptable" -msgstr "" - -#: ../cache/locales.php:22 -msgid "The registration system of this server is currently unavailable" -msgstr "" - -#: ../cache/locales.php:23 -msgid "" -"This server use an external system for the registration, please click on the " -"following URL." -msgstr "" - -#: ../cache/locales.php:24 -msgid "Actions" -msgstr "Darbības" - -#: ../cache/locales.php:25 ../cache/locales.php:82 -msgid "Database" -msgstr "" - -#: ../cache/locales.php:26 -msgid "Modl wasn't able to connect to the database" -msgstr "Modl nevarēja pieslēgties datubāzei" - -#: ../cache/locales.php:27 -msgid "Movim is connected to the database" -msgstr "Movim ir pieslēgts datubāzei" - -#: ../cache/locales.php:28 -msgid "The database need to be updated" -msgstr "Datņu bāze ir jāatjaunina" - -#: ../cache/locales.php:29 -msgid "Movim database is up to date" -msgstr "" - -#: ../cache/locales.php:30 -msgid "Database Type" -msgstr "Datubāzes tips" - -#: ../cache/locales.php:31 ../cache/locales.php:50 ../cache/locales.php:540 -msgid "Username" -msgstr "Lietotājvārds" - -#: ../cache/locales.php:32 ../cache/locales.php:51 ../cache/locales.php:282 -#: ../cache/locales.php:541 +#: [account]password [db]password [credentials]password [form]password +#: [input]password msgid "Password" msgstr "Parole" -#: ../cache/locales.php:33 +#: [account]password_confirmation +msgid "Password confirmation" +msgstr "" + +#: [account]password_changed +msgid "The password has been updated" +msgstr "" + +#: [account]password_not_valid +msgid "Please provide a valid password (6 characters minimum)" +msgstr "" + +#: [account]password_not_same +msgid "The provided passwords are not the same" +msgstr "" + +#: [account]delete_title +msgid "Delete my account" +msgstr "" + +#: [account]delete +#, fuzzy +msgid "Delete your account" +msgstr "Izveidot jaunu kontu" + +#: [account]delete_text +msgid "You will delete your XMPP account and all the relative information linked to it (profile, contacts and publications)." +msgstr "" + +#: [account]delete_text_confirm +msgid "Are you sure that you want to delete it ?" +msgstr "" + +#: [account]gateway_title +msgid "Gateway" +msgstr "" + +#: [create]title [subscribe]title +msgid "Create a new account" +msgstr "Izveidot jaunu kontu" + +#: [create]notfound +msgid "No account creation form found on the server" +msgstr "" + +#: [create]server_on +msgid "on" +msgstr "šajā datumā" + +#: [create]successfull +msgid "Your acccount has been successfully registered" +msgstr "" + +#: [create]loading +msgid "Loading" +msgstr "Ielādē" + +#: [error]not_acceptable +msgid "Not Acceptable" +msgstr "" + +#: [error]service_unavailable +msgid "The registration system of this server is currently unavailable" +msgstr "" + +#: [oob]about +msgid "This server use an external system for the registration, please click on the following URL." +msgstr "" + +#: [adhoc]title +msgid "Actions" +msgstr "Darbības" + +#: [db]legend [schema]database +msgid "Database" +msgstr "" + +#: [db]connect_error +msgid "Modl wasn't able to connect to the database" +msgstr "Modl nevarēja pieslēgties datubāzei" + +#: [db]connect_success +msgid "Movim is connected to the database" +msgstr "Movim ir pieslēgts datubāzei" + +#: [db]update +msgid "The database need to be updated" +msgstr "Datņu bāze ir jāatjaunina" + +#: [db]up_to_date +msgid "Movim database is up to date" +msgstr "" + +#: [db]type +msgid "Database Type" +msgstr "Datubāzes tips" + +#: [db]username [credentials]username [input]username +msgid "Username" +msgstr "Lietotājvārds" + +#: [db]host msgid "Host" msgstr "Resursdators" -#: ../cache/locales.php:34 +#: [db]port msgid "Port" msgstr "Ports" -#: ../cache/locales.php:35 -msgid "Database Name" +#: [db]name +#, fuzzy +msgid "Database sName" msgstr "Datubāzes nosaukums" -#: ../cache/locales.php:36 +#: [admin]general msgid "General Settings" msgstr "Vispārīgie iestatījumi" -#: ../cache/locales.php:37 +#: [general]theme msgid "Theme" msgstr "Motīvs" -#: ../cache/locales.php:38 +#: [general]language msgid "Default language" msgstr "Noklusējuma valoda" -#: ../cache/locales.php:39 -msgid "Environment" -msgstr "Vide" - -#: ../cache/locales.php:40 +#: [general]log_verbosity msgid "Log verbosity" msgstr "" -#: ../cache/locales.php:41 +#: [general]timezone msgid "Server Timezone" msgstr "Servera laika josla" -#: ../cache/locales.php:42 +#: [general]limit msgid "User folder size limit (in bytes)" msgstr "" -#: ../cache/locales.php:43 +#: [websocket]title msgid "WebSocket Configuration" msgstr "" -#: ../cache/locales.php:44 +#: [websocket]info msgid "Enter here a valid WebSocket URI in the form" msgstr "" -#: ../cache/locales.php:45 +#: [websocket]label msgid "WebSocket URI" msgstr "" -#: ../cache/locales.php:46 -msgid "" -"If you change the URI, please restart the daemon to reload the configuration" +#: [websocket]save_info +msgid "If you change the URI, please restart the daemon to reload the configuration" msgstr "" -#: ../cache/locales.php:47 +#: [websocket]publics msgid "Public WebSockets" msgstr "" -#: ../cache/locales.php:48 +#: [credentials]title msgid "Administration Credential" msgstr "" -#: ../cache/locales.php:49 +#: [credentials]info msgid "Change the default credentials admin/password" msgstr "" -#: ../cache/locales.php:52 +#: [credentials]re_password msgid "Retype password" msgstr "Pārievadiet paroli" -#: ../cache/locales.php:53 +#: [whitelist]title msgid "Whitelist - XMPP Server" msgstr "" -#: ../cache/locales.php:54 -msgid "" -"If you want to specify a list of authorized XMPP servers on your Movim pod " -"and forbid the connection on all the others please put their domain name " -"here, with comma (ex: movim.eu,jabber.fr)" +#: [whitelist]info1 +msgid "If you want to specify a list of authorized XMPP servers on your Movim pod and forbid the connection on all the others please put their domain name here, with comma (ex: movim.eu,jabber.fr)" msgstr "" -#: ../cache/locales.php:55 -msgid "" -"Leave this field blank if you allow the access to all the XMPP accounts." +#: [whitelist]info2 +msgid "Leave this field blank if you allow the access to all the XMPP accounts." msgstr "" -#: ../cache/locales.php:56 +#: [whitelist]label msgid "List of whitelisted XMPP servers" msgstr "" -#: ../cache/locales.php:57 ../cache/locales.php:61 +#: [information]title +#, fuzzy +msgctxt "[information]title" msgid "Information Message" msgstr "Informācijas paziņojums" -#: ../cache/locales.php:58 +#: [information]description msgid "Description" msgstr "Apraksts" -#: ../cache/locales.php:59 +#: [information]info1 msgid "This message will be displayed on the login page" msgstr "" -#: ../cache/locales.php:60 -msgid "Leave this field blank if you don't want to show any message." +#: [information]info2 +msgid "Leave this field blank if you dont want to show any message." msgstr "" -#: ../cache/locales.php:62 +#: [information]label +#, fuzzy +msgctxt "[information]label" +msgid "Information Message" +msgstr "Informācijas paziņojums" + +#: [log]empty msgid "Empty" msgstr "" -#: ../cache/locales.php:63 +#: [log]syslog msgid "Syslog" msgstr "" -#: ../cache/locales.php:64 +#: [log]syslog_files msgid "Syslog and files" msgstr "" -#: ../cache/locales.php:65 +#: [rewrite]title msgid "URL Rewriting" msgstr "" -#: ../cache/locales.php:66 +#: [rewrite]info msgid "The URL Rewriting can be enabled" msgstr "" -#: ../cache/locales.php:67 +#: [admin]compatibility msgid "General Overview" msgstr "" -#: ../cache/locales.php:68 -msgid "" -"Movim has found some issues or things that need to be fixed or improved" +#: [compatibility]info +msgid "Movim has found some issues or things that need to be fixed or improved" msgstr "" -#: ../cache/locales.php:69 -#, php-format +#: [compatibility]php1 msgid "Update your PHP-Version: %s" msgstr "" -#: ../cache/locales.php:70 +#: [compatibility]php2 msgid "Required: 5.3.0" msgstr "" -#: ../cache/locales.php:71 +#: [compatibility]curl msgid "Install the php5-curl library" msgstr "" -#: ../cache/locales.php:72 +#: [compatibility]imagick msgid "Install the php5-imagick library" msgstr "" -#: ../cache/locales.php:73 +#: [compatibility]gd msgid "Install the php5-gd library" msgstr "" -#: ../cache/locales.php:74 -msgid "Read and write rights for the webserver in Movim's root directory" +#: [compatibility]rights +msgid "Read and write rights for the webserver in Movims root directory" msgstr "" -#: ../cache/locales.php:75 +#: [compatibility]rewrite msgid "The URL Rewriting support is currently disabled" msgstr "" -#: ../cache/locales.php:76 +#: [compatibility]db msgid "The database need to be updated, go to the database panel to fix this" msgstr "" -#: ../cache/locales.php:77 -msgid "" -"WebSocket connection error, check if the Movim Daemon is running and is " -"reacheable" +#: [compatibility]websocket +msgid "WebSocket connection error, check if the Movim Daemon is running and is reachable" msgstr "" -#: ../cache/locales.php:78 -msgid "" -"XMPP Websocket connection error, please check the validity of the URL given " -"in the General Configuration" +#: [compatibility]xmpp_websocket +msgid "XMPP Websocket connection error, please check the validity of the URL given in the General Configuration" msgstr "" -#: ../cache/locales.php:79 +#: [schema]browser msgid "Browser" msgstr "" -#: ../cache/locales.php:80 +#: [schema]movim msgid "Movim Core" msgstr "" -#: ../cache/locales.php:81 +#: [schema]daemon msgid "Movim Daemon" msgstr "" -#: ../cache/locales.php:84 +#: [schema]xmpp msgid "XMPP" msgstr "" -#: ../cache/locales.php:86 -#, php-format -msgid "" -"Here you can register your pod on the official %sMovim API%s and be listed " -"on %sthe pods page%s." +#: [api]info +msgid "Here you can register your pod on the official %sMovim API%s and be listed on %sthe pods page%s." msgstr "" -#: ../cache/locales.php:87 +#: [api]register msgid "Your pod is not registered on the API" msgstr "" -#: ../cache/locales.php:88 +#: [api]registered msgid "Your pod is registered on the API" msgstr "" -#: ../cache/locales.php:89 +#: [api]wait msgid "Your pod is not yet validated" msgstr "" -#: ../cache/locales.php:90 +#: [api]validated msgid "Your pod is validated" msgstr "" -#: ../cache/locales.php:91 -msgid "" -"You asked to be removed from the API, this request will be processed in a " -"couple of hours" +#: [api]unregister +msgid "You asked to be removed from the API, this request will be processed in a couple of hours" msgstr "" -#: ../cache/locales.php:92 ../cache/locales.php:147 +#: [api]conf_updated [config]updated msgid "Configuration updated" msgstr "Atjaunināta konfigurācija" -#: ../cache/locales.php:93 +#: [avatar]file msgid "File" msgstr "" -#: ../cache/locales.php:94 +#: [avatar]use_it msgid "Use it" msgstr "" -#: ../cache/locales.php:95 +#: [avatar]webcam msgid "Webcam" msgstr "" -#: ../cache/locales.php:96 +#: [avatar]cheese msgid "Cheese !" msgstr "" -#: ../cache/locales.php:97 +#: [avatar]snapshot msgid "Take a webcam snapshot" msgstr "" -#: ../cache/locales.php:98 +#: [avatar]updated msgid "Avatar Updated" msgstr "" -#: ../cache/locales.php:99 +#: [avatar]not_updated msgid "Avatar Not Updated" msgstr "" -#: ../cache/locales.php:100 ../cache/locales.php:415 -#, php-format +#: [blog]title [feed]title msgid "%s's feed" msgstr "" -#: ../cache/locales.php:101 +#: [blog]empty msgid "This user has not posted anything right now" msgstr "" -#: ../cache/locales.php:102 +#: [title]conferences msgid "Conferences" msgstr "Konferences" -#: ../cache/locales.php:103 ../cache/locales.php:193 ../cache/locales.php:217 -#: ../cache/locales.php:468 +#: [title]groups [group]empty_title [menu]groups [page]groups msgid "Groups" msgstr "Grupas" -#: ../cache/locales.php:104 +#: [chatroom]add msgid "Add a new Chat Room" msgstr "" -#: ../cache/locales.php:105 ../cache/locales.php:368 +#: [chatroom]id [chatrooms]id msgid "Chat Room ID" msgstr "" -#: ../cache/locales.php:106 ../cache/locales.php:116 ../cache/locales.php:156 -#: ../cache/locales.php:361 ../cache/locales.php:369 ../cache/locales.php:424 +#: [chatroom]name +#, fuzzy +msgctxt "[chatroom]name" msgid "Name" msgstr "Nosaukums" -#: ../cache/locales.php:107 ../cache/locales.php:157 ../cache/locales.php:371 -#: ../cache/locales.php:425 +#: [chatroom]nickname [general]nickname [chatrooms]nickname msgid "Nickname" msgstr "Segvārds" -#: ../cache/locales.php:108 +#: [chatroom]autojoin_label msgid "Do you want do join automaticaly this Chat Room ?" msgstr "" -#: ../cache/locales.php:109 ../cache/locales.php:372 +#: [chatroom]bad_id [chatrooms]bad_id msgid "Bad Chatroom ID" msgstr "" -#: ../cache/locales.php:110 ../cache/locales.php:373 +#: [chatroom]empty_name [chatrooms]empty_name msgid "Empty name" msgstr "Tukšs vārds" -#: ../cache/locales.php:111 ../cache/locales.php:380 +#: [bookmarks]updated msgid "Bookmarks updated" msgstr "" -#: ../cache/locales.php:112 -msgid "An error occured : " +#: [bookmarks]error +#, fuzzy +msgid "An error occured :" msgstr "Kļūda notika: " -#: ../cache/locales.php:113 +#: [bookmarks]configure msgid "Configure" msgstr "" -#: ../cache/locales.php:114 +#: [url]add msgid "Add a new URL" msgstr "" -#: ../cache/locales.php:115 +#: [url]url msgid "URL" msgstr "" -#: ../cache/locales.php:117 +#: [url]name +#, fuzzy +msgctxt "[url]name" +msgid "Name" +msgstr "Nosaukums" + +#: [message]published msgid "Message Published" msgstr "" -#: ../cache/locales.php:118 ../cache/locales.php:138 +#: [message]encrypted msgid "Encrypted message" msgstr "Šifrēta vēstule" -#: ../cache/locales.php:119 +#: [message]composing [chats]composing msgid "Composing..." msgstr "" -#: ../cache/locales.php:120 +#: [message]paused [chats]paused msgid "Paused..." msgstr "" -#: ../cache/locales.php:121 +#: [message]gone msgid "Contact gone" msgstr "" -#: ../cache/locales.php:122 -#, php-format +#: [chat]attention msgid "%s needs your attention" msgstr "%s pieprasa jūsu uzmanību" -#: ../cache/locales.php:123 +#: [chat]placeholder msgid "Your message here..." msgstr "" -#: ../cache/locales.php:124 +#: [chat]smileys msgid "Smileys" msgstr "" -#: ../cache/locales.php:125 ../cache/locales.php:139 +#: [chat]empty_title [button]chat msgid "Chat" msgstr "Tērzēšana" -#: ../cache/locales.php:126 +#: [chat]empty_text msgid "Discuss with your contacts" msgstr "" -#: ../cache/locales.php:127 -msgid "Members" -msgstr "" - -#: ../cache/locales.php:128 ../cache/locales.php:376 -msgid "Connected to the chatroom" -msgstr "" - -#: ../cache/locales.php:129 ../cache/locales.php:377 -msgid "Disconnected from the chatroom" -msgstr "" - -#: ../cache/locales.php:130 ../cache/locales.php:200 ../cache/locales.php:469 -msgid "Configuration" -msgstr "" - -#: ../cache/locales.php:131 -msgid "Configuration saved" -msgstr "" - -#: ../cache/locales.php:132 -msgid "Subject" -msgstr "" - -#: ../cache/locales.php:133 -msgid "Subject changed" -msgstr "" - -#: ../cache/locales.php:134 -msgid "Open a new conversation by clicking on the plus button bellow" -msgstr "" - -#: ../cache/locales.php:135 -msgid "Chat with a contact" -msgstr "" - -#: ../cache/locales.php:136 +#: [chat]frequent [chats]frequent msgid "Frequent contacts" msgstr "" -#: ../cache/locales.php:137 +#: [chatroom]members +msgid "Members" +msgstr "" + +#: [chatroom]connected [chatrooms]connected +msgid "Connected to the chatroom" +msgstr "" + +#: [chatroom]disconnected [chatrooms]disconnected +msgid "Disconnected from the chatroom" +msgstr "" + +#: [chatroom]config [group]configuration [page]configuration +msgid "Configuration" +msgstr "" + +#: [chatroom]config_saved +msgid "Configuration saved" +msgstr "" + +#: [chatroom]subject +msgid "Subject" +msgstr "" + +#: [chatroom]subject_changed +msgid "Subject changed" +msgstr "" + +#: [chats]empty_title +msgid "No chats yet..." +msgstr "" + +#: [chats]empty +msgid "Open a new conversation by clicking on the plus button bellow or visit the Contacts page." +msgstr "" + +#: [chats]add +msgid "Chat with a contact" +msgstr "" + +#: [chats]more msgid "Load more contacts" msgstr "" -#: ../cache/locales.php:140 -msgid "General" -msgstr "Vispārīgi" - -#: ../cache/locales.php:141 -msgid "Language" -msgstr "Valoda" - -#: ../cache/locales.php:142 -msgid "Roster display" -msgstr "" - -#: ../cache/locales.php:143 -msgid "Show the offline contacts" -msgstr "" - -#: ../cache/locales.php:144 -msgid "Hide the offline contacts" -msgstr "" - -#: ../cache/locales.php:145 -msgid "Appearence" -msgstr "Izskats" - -#: ../cache/locales.php:146 -msgid "This configuration is shared wherever you are connected !" -msgstr "" - -#: ../cache/locales.php:148 -msgid "Notify on incoming message" -msgstr "" - -#: ../cache/locales.php:149 -msgid "Use desktop notifications" -msgstr "" - -#: ../cache/locales.php:150 +#: [title]data msgid "Data" msgstr "Dati" -#: ../cache/locales.php:151 +#: [title]cache msgid "Cache" msgstr "Kešatmiņa" -#: ../cache/locales.php:152 ../cache/locales.php:218 ../cache/locales.php:466 +#: [title]contacts [menu]contacts [page]contacts msgid "Contacts" msgstr "Kontakti" -#: ../cache/locales.php:153 ../cache/locales.php:480 +#: [title]posts [page]posts msgid "Posts" msgstr "Ieraksti" -#: ../cache/locales.php:154 +#: [title]messages msgid "Messages" msgstr "Ziņojumi" -#: ../cache/locales.php:155 ../cache/locales.php:423 +#: [config]general +msgid "General" +msgstr "Vispārīgi" + +#: [config]language +msgid "Language" +msgstr "Valoda" + +#: [config]roster +msgid "Roster display" +msgstr "" + +#: [config]roster_show +msgid "Show the offline contacts" +msgstr "" + +#: [config]roster_hide +msgid "Hide the offline contacts" +msgstr "" + +#: [config]appearence +msgid "Appearence" +msgstr "Izskats" + +#: [config]info +msgid "This configuration is shared wherever you are connected" +msgstr "" + +#: [notifications]message +msgid "Notify on incoming message" +msgstr "" + +#: [notifications]desktop +msgid "Use desktop notifications" +msgstr "" + +#: [general]legend [general]general_title msgid "General Informations" msgstr "Vispārīgā Informācija" -#: ../cache/locales.php:158 ../cache/locales.php:427 +#: [general]name [public_groups]name [chatrooms]name +msgid "Name" +msgstr "Nosaukums" + +#: [general]date_of_birth msgid "Date of Birth" msgstr "Dzimšanas datums" -#: ../cache/locales.php:159 ../cache/locales.php:428 +#: [general]gender msgid "Gender" msgstr "Dzimums" -#: ../cache/locales.php:160 ../cache/locales.php:429 +#: [general]marital msgid "Marital Status" msgstr "Ģimenes stāvoklis" -#: ../cache/locales.php:161 ../cache/locales.php:426 +#: [general]email msgid "Email" msgstr "E-pasts" -#: ../cache/locales.php:162 ../cache/locales.php:430 +#: [general]website msgid "Website" msgstr "Tīmekļa vietne" -#: ../cache/locales.php:163 ../cache/locales.php:431 +#: [general]about msgid "About Me" msgstr "Par mani" -#: ../cache/locales.php:164 +#: [general]accounts msgid "Other Accounts" msgstr "" -#: ../cache/locales.php:165 +#: [general]tune msgid "Is Listening" msgstr "" -#: ../cache/locales.php:166 ../cache/locales.php:432 +#: [position]legend [position]position_title msgid "Geographic Position" msgstr "Ģeogrāfiskais novietojums" -#: ../cache/locales.php:167 ../cache/locales.php:433 +#: [position]locality msgid "Locality" msgstr "Apvidus" -#: ../cache/locales.php:168 ../cache/locales.php:434 +#: [position]country msgid "Country" msgstr "Valsts" -#: ../cache/locales.php:169 +#: [mood]title msgid "Mood" msgstr "Noskaņojums" -#: ../cache/locales.php:170 +#: [mood]im msgid "I'm " msgstr "Esmu " -#: ../cache/locales.php:171 +#: [listen]title msgid "Listening" msgstr "Klausās" -#: ../cache/locales.php:173 +#: [last]title msgid "Last seen" msgstr "" -#: ../cache/locales.php:174 +#: [client]title msgid "Client Informations" msgstr "" -#: ../cache/locales.php:175 +#: [explore]last_registered msgid "Last registered" msgstr "" -#: ../cache/locales.php:176 +#: [explore]explore msgid "Find some new friends" msgstr "" -#: ../cache/locales.php:177 ../cache/locales.php:533 +#: [edit]title [button]edit msgid "Edit" msgstr "" -#: ../cache/locales.php:178 +#: [edit]alias msgid "Alias" msgstr "Pseidonīms" -#: ../cache/locales.php:179 +#: [edit]group msgid "Group" msgstr "Grupa" -#: ../cache/locales.php:180 ../cache/locales.php:400 +#: [edit]updated [roster]updated msgid "Contact updated" msgstr "Kontakts atjaunināts" -#: ../cache/locales.php:181 +#: [delete]title msgid "Are you sure?" msgstr "" -#: ../cache/locales.php:182 -msgid "" -"You are going to delete one of your contacts, please confirm your action" +#: [delete]text +msgid "You are going to delete one of your contacts, please confirm your action" msgstr "" -#: ../cache/locales.php:183 -#, php-format +#: [age]years msgid "%s years" msgstr "" -#: ../cache/locales.php:184 +#: [blog]last msgid "Last public post" msgstr "" -#: ../cache/locales.php:185 +#: [subscription]to +msgid "You can see this contact status" +msgstr "" + +#: [subscription]to_button +msgid "Share my status" +msgstr "" + +#: [subscription]to_text +msgid "But this contact cannot see yours" +msgstr "" + +#: [subscription]from +msgid "You are not subscribed to this contact" +msgstr "" + +#: [subscription]from_button +#, fuzzy +msgid "Ask to subscribe" +msgstr "Atrakstīties" + +#: [subscription]from_text +msgid "But this contact can still see if you are online" +msgstr "" + +#: [subscription]nil +#, fuzzy +msgid "No subscriptions" +msgstr "Apraksts" + +#: [subscription]nil_button +msgid "Invite" +msgstr "" + +#: [subscription]nil_text +msgid "This contact is in your contact list but there is no subscriptions between the two accounts" +msgstr "" + +#: [group]subscribe msgid "Subscribe" msgstr "Pierakstīties" -#: ../cache/locales.php:186 +#: [group]subscribed msgid "Subscribed" msgstr "Pierakstīts" -#: ../cache/locales.php:187 +#: [group]unsubscribe msgid "Unsubscribe" msgstr "Atrakstīties" -#: ../cache/locales.php:188 +#: [group]unsubscribe_text msgid "You are going to unsubscribe from this Group" msgstr "" -#: ../cache/locales.php:189 +#: [group]unsubscribed msgid "Unsubscribed" msgstr "" -#: ../cache/locales.php:190 +#: [group]share_label msgid "Make your membership to this group public to your friends" msgstr "" -#: ../cache/locales.php:191 +#: [group]label_label msgid "Give a label for this group" msgstr "" -#: ../cache/locales.php:192 +#: [group]sure msgid "Are you sure ?" msgstr "Vai esat pārliecināts(a)?" -#: ../cache/locales.php:194 +#: [group]empty_text msgid "Discover, follow and share" msgstr "" -#: ../cache/locales.php:195 +#: [group]empty msgid "Something bad happened to this group" msgstr "" -#: ../cache/locales.php:196 +#: [group]config_saved msgid "Group configuration saved" msgstr "" -#: ../cache/locales.php:197 +#: [group]delete_title msgid "Delete the group" msgstr "" -#: ../cache/locales.php:198 -msgid "" -"You are going to delete the following group. Please confirm your action." +#: [group]delete_text +msgid "You are going to delete the following group. Please confirm your action." msgstr "" -#: ../cache/locales.php:199 -msgid "" -"It seems that this group doesn't exists anymore. Do you want to remove it " -"from your subscriptions?" +#: [group]delete_clean_text +msgid "It seems that this group doesn't exists anymore. Do you want to remove it from your subscriptions?" msgstr "" -#: ../cache/locales.php:201 ../cache/locales.php:408 +#: [group]counter +msgid "%s groups on this server" +msgstr "" + +#: [group]subscriptions [statistics]subscriptions msgid "Subscriptions" msgstr "" -#: ../cache/locales.php:202 ../cache/locales.php:290 +#: [group]servers +#, fuzzy +msgid "Groups servers" +msgstr "Grupas" + +#: [group]search_server +msgid "Search for a new server" +msgstr "" + +#: [group]help_info1 +msgid "Groups are the perfect way to share posts about topics that you like with all the other Movim's users." +msgstr "" + +#: [group]help_info2 +msgid "Choose a server and a Group and subscribe to it using the %s button in the header. You can also create a new one using the %s button." +msgstr "" + +#: [group]help_info3 +msgid "Done? You can now publish a new post in the Group by using the %s button." +msgstr "" + +#: [group]help_info4 +msgid "You will find a list of all your subscribed Groups in My Subscriptions and receive instantly all the new incoming posts in the %sNews%s page." +msgstr "" + +#: [groups]empty_title msgid "Hello" msgstr "" -#: ../cache/locales.php:203 ../cache/locales.php:225 ../cache/locales.php:291 +#: [groups]contact_post [hello]contact_post [menu]contact_post msgid "Contact post" msgstr "" -#: ../cache/locales.php:204 -msgid "" -"You don't have any subscriptions yet, select a group server above to start " -"exploring." +#: [groups]empty_text1 +msgid "You don't have any subscriptions yet, select a group server above to start exploring." msgstr "" -#: ../cache/locales.php:205 +#: [groups]empty_text2 msgid "Subscribe to your favorite feeds by bookmarking them." msgstr "" -#: ../cache/locales.php:206 +#: [groups]subscriptions msgid "My Subscriptions" msgstr "" -#: ../cache/locales.php:207 +#: [groups]add msgid "Create a new Group" msgstr "" -#: ../cache/locales.php:208 +#: [groups]name msgid "Group name" msgstr "" -#: ../cache/locales.php:209 +#: [groups]name_example msgid "My Little Pony - Fan Club" msgstr "" -#: ../cache/locales.php:210 +#: [groups]created msgid "Group created successfully" msgstr "" -#: ../cache/locales.php:211 +#: [groups]deleted msgid "Group deleted successfully" msgstr "" -#: ../cache/locales.php:212 +#: [groups]name_error msgid "Please provide a valid group name (4 characters minimum)" msgstr "" -#: ../cache/locales.php:213 +#: [groups]no_creation msgid "You cannot create a new Group on this server" msgstr "" -#: ../cache/locales.php:214 -#, php-format +#: [groups]sub msgid "%s subscribers" msgstr "" -#: ../cache/locales.php:215 -#, php-format +#: [groups]num msgid "%s posts" msgstr "" -#: ../cache/locales.php:216 +#: [groups]disco_error +msgid "This server doesn't exists" +msgstr "" + +#: [menu]all msgid "All" msgstr "" -#: ../cache/locales.php:219 +#: [menu]refresh msgid "Refresh all the streams" msgstr "" -#: ../cache/locales.php:220 ../cache/locales.php:402 -msgid "Search" -msgstr "Meklēt" +#: [roster]search +#, fuzzy +msgid "Search in your contacts" +msgstr "Jūsu kontakti" -#: ../cache/locales.php:221 +#: [hello]active_contacts +#, fuzzy +msgid "Active contacts" +msgstr "Jūsu kontakti" + +#: [hello]chat msgid "Go on the Chat page" msgstr "" -#: ../cache/locales.php:222 -msgid "Read all theses articles on the News page" -msgstr "" - -#: ../cache/locales.php:223 -msgid "Visit your public blog" -msgstr "" - -#: ../cache/locales.php:224 -msgid "See your public posts and share them with all your contacts" -msgstr "" - -#: ../cache/locales.php:226 -msgid "Universal share button" -msgstr "" - -#: ../cache/locales.php:227 -msgid "" -"Bookmark or drag and drop the following button in your toolbar and use it on " -"all the pages you want to share on Movim" -msgstr "" - -#: ../cache/locales.php:228 -msgid "Share on Movim" -msgstr "" - -#: ../cache/locales.php:229 -msgid "Frequently Asked Questions" -msgstr "" - -#: ../cache/locales.php:230 -msgid "What do the little banners refer to ?" -msgstr "" - -#: ../cache/locales.php:231 -msgid "" -"Thanks to these five little banners, you can quickly identitfy the level of " -"confdentiality applied to the information you provide." -msgstr "" - -#: ../cache/locales.php:232 -msgid "White, only you can see the information" -msgstr "" - -#: ../cache/locales.php:233 -msgid "Green, you have chosen some contacts who can see your information" -msgstr "" - -#: ../cache/locales.php:234 -msgid "Orange, all your contact list can see your information" -msgstr "" - -#: ../cache/locales.php:235 -msgid "Red, everybody in the XMPP network can see your information" -msgstr "" - -#: ../cache/locales.php:236 -msgid "Black, the whole Internet can see your information" -msgstr "" - -#: ../cache/locales.php:237 -msgid "Looking for some documentation ?" -msgstr "" - -#: ../cache/locales.php:238 -msgid "Read the Wiki" -msgstr "" - -#: ../cache/locales.php:239 -msgid "Talk with us by email ?" -msgstr "" - -#: ../cache/locales.php:240 -msgid "Join the Mailing List" -msgstr "" - -#: ../cache/locales.php:241 -msgid "Chat with the team ?" -msgstr "" - -#: ../cache/locales.php:242 -msgid "Join the Chatroom" -msgstr "" - -#: ../cache/locales.php:243 -msgid "Location node created" -msgstr "" - -#: ../cache/locales.php:244 -msgid "Bookmark node created" -msgstr "" - -#: ../cache/locales.php:245 -msgid "Profile node created" -msgstr "" - -#: ../cache/locales.php:246 -msgid "Avatar node created" -msgstr "" - -#: ../cache/locales.php:247 -msgid "Subscriptions node created" -msgstr "" - -#: ../cache/locales.php:248 -msgid "Microblog node created" -msgstr "" - -#: ../cache/locales.php:249 -msgid "Location" -msgstr "Atrašanās vieta" - -#: ../cache/locales.php:250 -msgid "Wrong position" -msgstr "" - -#: ../cache/locales.php:251 -msgid "Location updated" -msgstr "" - -#: ../cache/locales.php:252 -msgid "Update my position" -msgstr "" - -#: ../cache/locales.php:253 -msgid "Wrong username" -msgstr "Nepareizs lietotājvārds" - -#: ../cache/locales.php:254 -msgid "Invalid JID" -msgstr "Nederīgs JID" - -#: ../cache/locales.php:255 -msgid "Empty Challenge from the server" -msgstr "" - -#: ../cache/locales.php:256 -msgid "XMPP Domain error, your account is not a correct Jabber ID" -msgstr "" - -#: ../cache/locales.php:257 -msgid "Some data are missing !" -msgstr "Dažas datnes trūkst !" - -#: ../cache/locales.php:258 -msgid "Wrong password" -msgstr "Nepareiza parole" - -#: ../cache/locales.php:259 -msgid "Internal server error" -msgstr "Servera iekšēja kļūda" - -#: ../cache/locales.php:260 -msgid "Session error" -msgstr "" - -#: ../cache/locales.php:261 -msgid "Account successfully created" -msgstr "Konts veiksmīgi izveidots" - -#: ../cache/locales.php:262 ../cache/locales.php:271 -msgid "Your XMPP server is unauthorized" -msgstr "Jūsu XMPP serveris nav atļauts" - -#: ../cache/locales.php:263 -msgid "The server takes too much time to respond" -msgstr "" - -#: ../cache/locales.php:264 -msgid "Your web browser is too old to use with Movim." -msgstr "Jūsu interneta pārlūks ir pārāk vecs lai lietot to ar Movim" - -#: ../cache/locales.php:265 -msgid "" -"Movim cannot talk with the server, please try again later (Websocket " -"connection error)" -msgstr "" - -#: ../cache/locales.php:266 -msgid "Impossible login" -msgstr "" - -#: ../cache/locales.php:267 -msgid "Oops!" -msgstr "" - -#: ../cache/locales.php:268 ../cache/locales.php:449 ../cache/locales.php:455 -msgid "Unknown error" -msgstr "Nezināma kļūda" - -#: ../cache/locales.php:269 -msgid "Invalid username format" -msgstr "" - -#: ../cache/locales.php:270 -msgid "Invalid password format" -msgstr "" - -#: ../cache/locales.php:272 -msgid "A Movim session is already open on an other device" -msgstr "" - -#: ../cache/locales.php:273 -msgid "Movim failed to authenticate. You entered wrong data" -msgstr "" - -#: ../cache/locales.php:274 -msgid "Authentication mechanism not supported by Movim" -msgstr "" - -#: ../cache/locales.php:275 -msgid "The XMPP authentification failed" -msgstr "XMPP autentifikācija neizdevās" - -#: ../cache/locales.php:276 -#, php-format -msgid "" -"You can login with Facebook (chat only) using %syour.id@chat.facebook.com%s " -"and your password" -msgstr "" - -#: ../cache/locales.php:277 -#, php-format -msgid "%sGmail accounts are also compatible%s but are not fully supported" -msgstr "" - -#: ../cache/locales.php:278 -msgid "You can login using your favorite Jabber account" -msgstr "" - -#: ../cache/locales.php:279 -msgid "or with our demonstration account" -msgstr "" - -#: ../cache/locales.php:280 ../cache/locales.php:435 -msgid "Accounts" -msgstr "Konti" - -#: ../cache/locales.php:281 -msgid "My address" -msgstr "" - -#: ../cache/locales.php:283 -msgid "Create one !" -msgstr "Izveidot vienu !" - -#: ../cache/locales.php:284 -msgid "No account yet ?" -msgstr "Vēl nav konts ?" - -#: ../cache/locales.php:285 -msgid "Another account" -msgstr "" - -#: ../cache/locales.php:286 -msgid "You can login with accounts from theses servers" -msgstr "" - -#: ../cache/locales.php:287 -msgid "Connected" -msgstr "Savienots" - -#: ../cache/locales.php:288 -msgid "Population" -msgstr "" - -#: ../cache/locales.php:289 -msgid "Bad nickname (between 4 and 40 characters)" -msgstr "" - -#: ../cache/locales.php:292 -msgid "" -"Welcome on your news feed, here you will see all the posts published in the " -"groups you have subscribed." -msgstr "" - -#: ../cache/locales.php:293 -msgid "Refreshing all the streams" -msgstr "" - -#: ../cache/locales.php:294 -msgid "This post is public" -msgstr "" - -#: ../cache/locales.php:295 -msgid "Manage your members" -msgstr "" - -#: ../cache/locales.php:296 -msgid "Get the members" -msgstr "" - -#: ../cache/locales.php:297 -msgid "Affiliations saved" -msgstr "" - -#: ../cache/locales.php:298 -msgid "Manage your subscriptions" -msgstr "" - -#: ../cache/locales.php:299 -msgid "Manage the subscriptions" -msgstr "" - -#: ../cache/locales.php:300 -msgid "Get the subscriptions" -msgstr "" - -#: ../cache/locales.php:301 -msgid "Subscriptions saved" -msgstr "" - -#: ../cache/locales.php:302 -msgid "Pending Invitations" -msgstr "" - -#: ../cache/locales.php:303 -#, php-format -msgid "%s wants to talk with you" -msgstr "%s grib ar jums sazināties" - -#: ../cache/locales.php:304 -msgid "Manage" -msgstr "Pārvaldīt" - -#: ../cache/locales.php:305 ../cache/locales.php:338 -msgid "News Feed" -msgstr "" - -#: ../cache/locales.php:306 ../cache/locales.php:339 -msgid "Discover and register to the groups you are interested in" -msgstr "" - -#: ../cache/locales.php:307 ../cache/locales.php:340 ../cache/locales.php:482 -msgid "Preview" -msgstr "" - -#: ../cache/locales.php:308 ../cache/locales.php:341 ../cache/locales.php:478 -msgid "Help" -msgstr "" - -#: ../cache/locales.php:309 ../cache/locales.php:342 -msgid "More help" -msgstr "" - -#: ../cache/locales.php:310 ../cache/locales.php:343 -msgid "Markdown syntax manual" -msgstr "" - -#: ../cache/locales.php:311 ../cache/locales.php:344 ../cache/locales.php:681 -msgid "Title" -msgstr "" - -#: ../cache/locales.php:312 ../cache/locales.php:345 -msgid "Content" -msgstr "" - -#: ../cache/locales.php:313 ../cache/locales.php:346 -msgid "Link" -msgstr "Saite" - -#: ../cache/locales.php:314 ../cache/locales.php:347 -msgid "Tags" -msgstr "" - -#: ../cache/locales.php:315 ../cache/locales.php:348 -msgid "Please enter a valid url" -msgstr "" - -#: ../cache/locales.php:316 ../cache/locales.php:349 -msgid "No content to preview" -msgstr "" - -#: ../cache/locales.php:317 ../cache/locales.php:350 ../cache/locales.php:687 -msgid "No content" -msgstr "" - -#: ../cache/locales.php:318 ../cache/locales.php:351 -msgid "Post published" -msgstr "" - -#: ../cache/locales.php:319 ../cache/locales.php:352 -msgid "Post deleted" -msgstr "" - -#: ../cache/locales.php:320 ../cache/locales.php:353 -msgid "This picture will be added to your gallery" -msgstr "" - -#: ../cache/locales.php:321 ../cache/locales.php:354 -msgid "What's Hot" -msgstr "" - -#: ../cache/locales.php:322 ../cache/locales.php:355 -msgid "New post" -msgstr "" - -#: ../cache/locales.php:323 ../cache/locales.php:357 -msgid "" -"You can also use services like Imgur or Flickr to host your picture and " -"paste the link here." -msgstr "" - -#: ../cache/locales.php:324 -#, php-format -msgid "This is a re-post from %s" -msgstr "" - -#: ../cache/locales.php:325 -#, php-format -msgid "See %s profile" -msgstr "" - -#: ../cache/locales.php:326 -msgid "Publish this post on your public feed?" -msgstr "" - -#: ../cache/locales.php:327 -msgid "Post published on your blog" -msgstr "" - -#: ../cache/locales.php:328 -msgid "Post removed from your blog" -msgstr "" - -#: ../cache/locales.php:329 ../cache/locales.php:701 -msgid "Delete this post" -msgstr "" - -#: ../cache/locales.php:330 -msgid "You are going to delete this post, please confirm your action" -msgstr "" - -#: ../cache/locales.php:331 -msgid "Comments disabled" -msgstr "" - -#: ../cache/locales.php:332 -msgid "Comment published" -msgstr "" - -#: ../cache/locales.php:333 -msgid "Disconnect" -msgstr "Atvienoties" - -#: ../cache/locales.php:334 -msgid "Your status here !" -msgstr "" - -#: ../cache/locales.php:335 -msgid "Status updated" -msgstr "" - -#: ../cache/locales.php:336 -msgid "Status" -msgstr "" - -#: ../cache/locales.php:337 -msgid "Presence" -msgstr "" - -#: ../cache/locales.php:356 -msgid "Publish" -msgstr "" - -#: ../cache/locales.php:358 -msgid "You cannot publish a post on this Group" -msgstr "" - -#: ../cache/locales.php:359 -msgid "" -"Some fields have been filled in. Do you still want to go back and loose " -"their content?" -msgstr "" - -#: ../cache/locales.php:360 -msgid "Shared" -msgstr "Koplietots" - -#: ../cache/locales.php:362 -#, php-format -msgid "%s has been added to your public groups" -msgstr "" - -#: ../cache/locales.php:363 -#, php-format -msgid "%s has been removed from your public groups" -msgstr "" - -#: ../cache/locales.php:364 -msgid "Add a chatroom" -msgstr "" - -#: ../cache/locales.php:365 -msgid "You don't have any chatroom yet." -msgstr "" - -#: ../cache/locales.php:366 -msgid "Add one by clicking on the add button in the header." -msgstr "" - -#: ../cache/locales.php:367 -msgid "Chatrooms" -msgstr "" - -#: ../cache/locales.php:370 -msgid "My Favorite Room" -msgstr "" - -#: ../cache/locales.php:374 -msgid "Remove a chatroom" -msgstr "" - -#: ../cache/locales.php:375 -msgid "" -"You are going to remove the following chatroom. Please confirm your action." -msgstr "" - -#: ../cache/locales.php:378 -msgid "Users in the room" -msgstr "" - -#: ../cache/locales.php:379 -msgid "Please enter a correct nickname (6 to 40 characters)" -msgstr "" - -#: ../cache/locales.php:381 -msgid "Public chatroom" -msgstr "" - -#: ../cache/locales.php:382 -msgid "Please provide a room address" -msgstr "" - -#: ../cache/locales.php:383 -msgid "You are currently logued as an anonymous user." -msgstr "" - -#: ../cache/locales.php:384 -msgid "" -"You can join using your own account or create one on the login page by " -"loging out using the cross in the top-right corner." -msgstr "" - -#: ../cache/locales.php:385 -#, php-format -msgid "Login on %s" -msgstr "" - -#: ../cache/locales.php:386 -msgid "Your nickname" -msgstr "" - -#: ../cache/locales.php:387 -msgid "Ungrouped" -msgstr "Negrupēts" - -#: ../cache/locales.php:388 -msgid "Show disconnected contacts" -msgstr "" - -#: ../cache/locales.php:389 -msgid "Hide disconnected contacts" -msgstr "" - -#: ../cache/locales.php:390 -#, php-format -msgid "Show group %s" -msgstr "Radīt %s grupu" - -#: ../cache/locales.php:391 -#, php-format -msgid "Hide group %s" -msgstr "Slēpt %s grupu" - -#: ../cache/locales.php:392 -msgid "Please enter a valid Jabber ID" -msgstr "" - -#: ../cache/locales.php:393 -msgid "" -"No contacts ? You can add one using the + button bellow or going to the " -"Explore page" -msgstr "" - -#: ../cache/locales.php:394 -msgid "Show/Hide" -msgstr "Rādīt/slēpt" - -#: ../cache/locales.php:395 -msgid "Enter the Jabber ID of your contact." -msgstr "" - -#: ../cache/locales.php:396 -msgid "Press enter to validate." -msgstr "Spiest enter lai apstiprināt." - -#: ../cache/locales.php:397 -msgid "JID" -msgstr "JID" - -#: ../cache/locales.php:398 -msgid "Results" -msgstr "" - -#: ../cache/locales.php:399 -msgid "Contact added" -msgstr "" - -#: ../cache/locales.php:401 -msgid "Contact deleted" -msgstr "" - -#: ../cache/locales.php:403 -msgid "This is not a valid url" -msgstr "" - -#: ../cache/locales.php:404 -msgid "Sharing the URL" -msgstr "" - -#: ../cache/locales.php:405 -msgid "Statistics" -msgstr "Statistika" - -#: ../cache/locales.php:406 -msgid "Since" -msgstr "Kopš" - -#: ../cache/locales.php:407 -msgid "Sessions" -msgstr "Sesijas" - -#: ../cache/locales.php:409 -msgid "Monthly Subscriptions" -msgstr "" - -#: ../cache/locales.php:410 -msgid "Monthly Subscriptions Cumulated" -msgstr "" - -#: ../cache/locales.php:412 -msgid "" -"Movim is a decentralized social network, before creating a new account you " -"need to choose a server to register." -msgstr "" - -#: ../cache/locales.php:413 -msgid "Your server here ?" -msgstr "Jūsu serveris šeit ?" - -#: ../cache/locales.php:414 -msgid "Contact us to add yours to the officially supported servers list" -msgstr "" -"Sazināties ar mums lai pievienot jūsu oficiāli atbalstīto serveru sarakstam" - -#: ../cache/locales.php:416 -msgid "No public feed for this contact" -msgstr "" - -#: ../cache/locales.php:417 -msgid "No contact specified" -msgstr "" - -#: ../cache/locales.php:418 ../cache/locales.php:473 -msgid "Profile" -msgstr "" - -#: ../cache/locales.php:419 -msgid "Profile Updated" -msgstr "Profils atjaunināts" - -#: ../cache/locales.php:420 -msgid "Profile Not Updated" -msgstr "" - -#: ../cache/locales.php:421 -msgid "Your profile is now public" -msgstr "" - -#: ../cache/locales.php:422 -msgid "Your profile is now restricted" -msgstr "" - -#: ../cache/locales.php:436 -msgid "Twitter" -msgstr "Twitter" - -#: ../cache/locales.php:437 -msgid "Skype" -msgstr "Skype" - -#: ../cache/locales.php:438 -msgid "Yahoo" -msgstr "Yahoo" - -#: ../cache/locales.php:439 -msgid "Privacy Level" -msgstr "Privātuma līmenis" - -#: ../cache/locales.php:440 -msgid "Is this profile public ?" -msgstr "" - -#: ../cache/locales.php:441 -msgid "" -"Please pay attention ! By making your profile public, all the information " -"listed above will be available for all the Movim users and on the whole " -"Internet." -msgstr "" - -#: ../cache/locales.php:442 -msgid "Call" -msgstr "" - -#: ../cache/locales.php:443 -msgid "Hang up" -msgstr "" - -#: ../cache/locales.php:444 -msgid "Connection" -msgstr "" - -#: ../cache/locales.php:445 ../cache/locales.php:451 -msgid "Hung up" -msgstr "" - -#: ../cache/locales.php:446 ../cache/locales.php:452 -msgid "Your contact is busy" -msgstr "" - -#: ../cache/locales.php:447 ../cache/locales.php:453 -msgid "Declined" -msgstr "" - -#: ../cache/locales.php:448 ../cache/locales.php:454 -msgid "Remote application incompatible" -msgstr "" - -#: ../cache/locales.php:450 ../cache/locales.php:456 -msgid "Is calling you" -msgstr "" - -#: ../cache/locales.php:457 -msgid "You don't have javascript enabled. Good luck with that." -msgstr "" - -#: ../cache/locales.php:458 -msgid "" -"Movim is a kickass distributed social networking platform that protect your " -"privacy an comes with a set of awesome features." -msgstr "" - -#: ../cache/locales.php:459 -msgid "Administration" -msgstr "Administrācija" - -#: ../cache/locales.php:460 -msgid "Home" -msgstr "Sākumvieta" - -#: ../cache/locales.php:461 -msgid "Discover" -msgstr "Atklāt" - -#: ../cache/locales.php:462 -msgid "Explore" -msgstr "Izpētīt" - -#: ../cache/locales.php:463 -msgid "Account Creation" -msgstr "" - -#: ../cache/locales.php:464 +#: [hello]news [page]news msgid "News" msgstr "" -#: ../cache/locales.php:465 -msgid "Avatar" +#: [hello]news_page +msgid "Read all theses articles on the News page" msgstr "" -#: ../cache/locales.php:467 -msgid "Chats" +#: [hello]blog_title +msgid "Visit your public blog" msgstr "" -#: ../cache/locales.php:470 -msgid "Server" +#: [hello]blog_text +msgid "See your public posts and share them with all your contacts" msgstr "" -#: ../cache/locales.php:471 -msgid "Public Groups" +#: [hello]share_title +msgid "Universal share button" msgstr "" -#: ../cache/locales.php:472 -msgid "Viewer" -msgstr "Skatītājs" - -#: ../cache/locales.php:474 -msgid "Media" -msgstr "Multivide" - -#: ../cache/locales.php:475 -msgid "Blog" -msgstr "Emuārs" - -#: ../cache/locales.php:476 -msgid "About" +#: [hello]share_text +msgid "Bookmark or drag and drop the following button in your toolbar and use it on all the pages you want to share on Movim" msgstr "" -#: ../cache/locales.php:477 -msgid "Login" +#: [hello]share_button +msgid "Share on Movim" msgstr "" -#: ../cache/locales.php:479 -msgid "Feed" -msgstr "Plūsma" - -#: ../cache/locales.php:481 -msgid "Gallery" +#: [help]faq +msgid "Frequently Asked Questions" msgstr "" -#: ../cache/locales.php:483 -msgid "Visio-conference" +#: [banner]title +msgid "What do the little banners refer to ?" msgstr "" -#: ../cache/locales.php:484 -msgid "Pods" +#: [banner]info1 +msgid "Thanks to these five little banners, you can quickly identitfy the level of confdentiality applied to the information you provide." msgstr "" -#: ../cache/locales.php:485 -msgid "Share" +#: [banner]white +msgid "White, only you can see the information" msgstr "" -#: ../cache/locales.php:486 -msgid "Room" +#: [banner]green +msgid "Green, you have chosen some contacts who can see your information" msgstr "" -#: ../cache/locales.php:487 -#, php-format -msgid "Error: %s" +#: [banner]orange +msgid "Orange, all your contact list can see your information" msgstr "" -#: ../cache/locales.php:488 -#, php-format -msgid "Cannot load file '%s'" +#: [banner]red +msgid "Red, everybody in the XMPP network can see your information" msgstr "" -#: ../cache/locales.php:489 -#, php-format -msgid "Route error, please set all the parameters for the page %s" +#: [banner]black +msgid "Black, the whole Internet can see your information" msgstr "" -#: ../cache/locales.php:490 -#, php-format -msgid "Requested widget '%s' doesn't exist." +#: [wiki]question +msgid "Looking for some documentation ?" msgstr "" -#: ../cache/locales.php:491 -#, php-format -msgid "Requested event '%s' not registered." +#: [wiki]button +msgid "Read the Wiki" msgstr "" -#: ../cache/locales.php:492 -msgid "Whoops!" +#: [ml]question +msgid "Talk with us by email ?" msgstr "" -#: ../cache/locales.php:493 -msgid "It seem that you don't have any pictures here?" +#: [ml]button +msgid "Join the Mailing List" msgstr "" -#: ../cache/locales.php:494 -msgid "You can try to upload a couple by going to the Media page" +#: [chatroom]question +msgid "Chat with the team ?" msgstr "" -#: ../cache/locales.php:495 -#, php-format -msgid "%s - About" +#: [chatroom]button +msgid "Join the Chatroom" msgstr "" -#: ../cache/locales.php:496 -#, php-format -msgid "%s - Account" +#: [init]location +msgid "Location node created" msgstr "" -#: ../cache/locales.php:497 -#, php-format -msgid "%s - Administration Panel" +#: [init]bookmark +msgid "Bookmark node created" msgstr "" -#: ../cache/locales.php:498 -#, php-format -msgid "%s - Blog" +#: [init]vcard4 +msgid "Profile node created" msgstr "" -#: ../cache/locales.php:499 -#, php-format -msgid "%s - Configuration" +#: [init]avatar +msgid "Avatar node created" msgstr "" -#: ../cache/locales.php:500 -#, php-format -msgid "%s - Discover" +#: [init]subscriptions +msgid "Subscriptions node created" msgstr "" -#: ../cache/locales.php:501 -#, php-format -msgid "%s - Explore" +#: [init]microblog +msgid "Microblog node created" msgstr "" -#: ../cache/locales.php:502 -#, php-format -msgid "%s - Help Page" +#: [location]title +msgid "Location" +msgstr "Atrašanās vieta" + +#: [location]wrong_postition +msgid "Wrong position" msgstr "" -#: ../cache/locales.php:503 -#, php-format -msgid "%s - Login to Movim" +#: [location]updated +msgid "Location updated" msgstr "" -#: ../cache/locales.php:504 -#, php-format -msgid "%s - Welcome to Movim" +#: [location]update +msgid "Update my position" msgstr "" -#: ../cache/locales.php:505 -#, php-format -msgid "%s - Media" +#: [login_anonymous]bad_username +msgid "Bad nickname (between 4 and 40 characters)" msgstr "" -#: ../cache/locales.php:506 -#, php-format -msgid "%s - News" +#: [error]username +msgid "Wrong username" +msgstr "Nepareizs lietotājvārds" + +#: [error]jid +msgid "Invalid JID" +msgstr "Nederīgs JID" + +#: [error]empty_challenge +msgid "Empty Challenge from the server" msgstr "" -#: ../cache/locales.php:507 -#, php-format -msgid "%s - Group Configuration" +#: [error]dns +msgid "XMPP Domain error, your account is not a correct Jabber ID" msgstr "" -#: ../cache/locales.php:508 -#, php-format -msgid "%s - Group" +#: [error]data_missings +msgid "Some data are missing !" +msgstr "Dažas datnes trūkst !" + +#: [error]wrong_password +msgid "Wrong password" +msgstr "Nepareiza parole" + +#: [error]internal +msgid "Internal server error" +msgstr "Servera iekšēja kļūda" + +#: [error]session +msgid "Session error" msgstr "" -#: ../cache/locales.php:509 -#, php-format -msgid "%s - 404" +#: [error]account_created +msgid "Account successfully created" +msgstr "Konts veiksmīgi izveidots" + +#: [error]xmpp_unauthorized +#, fuzzy +msgctxt "[error]xmpp_unauthorized" +msgid "Your XMPP server is unauthorized" +msgstr "Jūsu XMPP serveris nav atļauts" + +#: [error]mec_error +msgid "The server takes too much time to respond" msgstr "" -#: ../cache/locales.php:510 -#, php-format -msgid "%s - Profile" +#: [error]too_old +msgid "Your web browser is too old to use with Movim." +msgstr "Jūsu interneta pārlūks ir pārāk vecs lai lietot to ar Movim" + +#: [error]websocket +msgid "Movim cannot talk with the server, please try again later (Websocket connection error)" msgstr "" -#: ../cache/locales.php:511 -#, php-format -msgid "%s - Server" +#: [error]impossible +msgid "Impossible login" msgstr "" -#: ../cache/locales.php:512 -msgid "Validate" +#: [error]title +msgid "Oops!" msgstr "" -#: ../cache/locales.php:513 -msgid "Refresh" +#: [error]default [visio]unknown_error +msgid "Unknown error" +msgstr "Nezināma kļūda" + +#: [error]login_format +msgid "Invalid username format" msgstr "" -#: ../cache/locales.php:514 -msgid "Add" -msgstr "Pievienot" - -#: ../cache/locales.php:515 -msgid "Delete" +#: [error]password_format +msgid "Invalid password format" msgstr "" -#: ../cache/locales.php:516 -msgid "Remove" +#: [error]unauthorized +#, fuzzy +msgctxt "[error]unauthorized" +msgid "Your XMPP server is unauthorized" +msgstr "Jūsu XMPP serveris nav atļauts" + +#: [error]conflict +msgid "A Movim session is already open on an other device" msgstr "" -#: ../cache/locales.php:517 -msgid "Cancel" +#: [error]wrong_account +msgid "Movim failed to authenticate. You entered wrong data" msgstr "" -#: ../cache/locales.php:518 -msgid "Close" -msgstr "Aizvērt" - -#: ../cache/locales.php:519 -msgid "Update" +#: [error]mechanism +msgid "Authentication mechanism not supported by Movim" msgstr "" -#: ../cache/locales.php:520 -msgid "Updating" +#: [error]fail_auth +msgid "The XMPP authentification failed" +msgstr "XMPP autentifikācija neizdevās" + +#: [account]title [accounts]accounts_title +msgid "Accounts" +msgstr "Konti" + +#: [form]username +msgid "My address" msgstr "" -#: ../cache/locales.php:521 +#: [form]create_one +msgid "Create one !" +msgstr "Izveidot vienu !" + +#: [form]another_account +msgid "Another account" +msgstr "" + +#: [form]no_account +msgid "No account yet ?" +msgstr "Vēl nav konts ?" + +#: [form]whitelist.info +msgid "You can login with accounts from theses servers" +msgstr "" + +#: [form]connected +msgid "Connected" +msgstr "Savienots" + +#: [form]population +msgid "Population" +msgstr "" + +#: [menu]empty_title +msgid "No news yet..." +msgstr "" + +#: [menu]empty +msgid "Welcome on your news feed, here you will see all the posts published by your contacts and in the groups you have subscribed." +msgstr "" + +#: [menu]refresh +msgid "Refreshing all the streams" +msgstr "" + +#: [menu]public +msgid "This post is public" +msgstr "" + +#: [affiliations]title +msgid "Manage your members" +msgstr "" + +#: [affiliations]get +msgid "Get the members" +msgstr "" + +#: [affiliations]saved +msgid "Affiliations saved" +msgstr "" + +#: [subscriptions]title +msgid "Manage your subscriptions" +msgstr "" + +#: [subscriptions]info +msgid "Manage the subscriptions" +msgstr "" + +#: [subscriptions]get +msgid "Get the subscriptions" +msgstr "" + +#: [subscriptions]saved +msgid "Subscriptions saved" +msgstr "" + +#: [notifs]title +msgid "Pending Invitations" +msgstr "" + +#: [notifs]wants_to_talk +msgid "%s wants to talk with you" +msgstr "%s grib ar jums sazināties" + +#: [notifs]manage +msgid "Manage" +msgstr "Pārvaldīt" + +#: [post]news_feed +msgid "News Feed" +msgstr "" + +#: [post]placeholder +msgid "Discover and register to the groups you are interested in" +msgstr "" + +#: [post]preview [page]preview +msgid "Preview" +msgstr "" + +#: [post]help [page]help +msgid "Help" +msgstr "" + +#: [post]help_more +msgid "More help" +msgstr "" + +#: [post]help_manual +msgid "Markdown syntax manual" +msgstr "" + +#: [post]title +msgid "Title" +msgstr "" + +#: [post]content +msgid "Content" +msgstr "" + +#: [post]link +msgid "Link" +msgstr "Saite" + +#: [post]tags +msgid "Tags" +msgstr "" + +#: [post]valid_url [publish]valid_url +msgid "Please enter a valid url" +msgstr "" + +#: [post]no_content_preview [publish]no_content_preview +msgid "No content to preview" +msgstr "" + +#: [post]no_content [publish]no_content [post]empty +msgid "No content" +msgstr "" + +#: [post]published +msgid "Post published" +msgstr "" + +#: [post]deleted +msgid "Post deleted" +msgstr "" + +#: [post]gallery +msgid "This picture will be added to your gallery" +msgstr "" + +#: [post]hot +msgid "What's Hot" +msgstr "" + +#: [post]hot_text +msgid "Posts recently published in Groups that you are not subscribed (yet)" +msgstr "" + +#: [post]new [publish]new +msgid "New post" +msgstr "" + +#: [post]embed_tip +msgid "You can also use services like Imgur or Flickr to host your picture and paste the link here." +msgstr "" + +#: [post]repost +msgid "This is a re-post from %s" +msgstr "" + +#: [post]repost_profile +msgid "See %s profile" +msgstr "" + +#: [post]public +msgid "Publish this post publicly?" +msgstr "" + +#: [post]blog_add +msgid "Post published on your blog" +msgstr "" + +#: [post]blog_remove +msgid "Post removed from your blog" +msgstr "" + +#: [post]delete_title [post]delete +msgid "Delete this post" +msgstr "" + +#: [post]delete_text +msgid "You are going to delete this post, please confirm your action" +msgstr "" + +#: [post]comments_disabled +msgid "Comments disabled" +msgstr "" + +#: [post]comment_published +msgid "Comment published" +msgstr "" + +#: [status]disconnect +msgid "Disconnect" +msgstr "Atvienoties" + +#: [status]here +msgid "Your status here !" +msgstr "" + +#: [status]updated +msgid "Status updated" +msgstr "" + +#: [status]status +msgid "Status" +msgstr "" + +#: [status]presence +msgid "Presence" +msgstr "" + +#: [status]online +msgid "Online with Movim" +msgstr "" + +#: [publish]title +msgid "Publish" +msgstr "" + +#: [publish]attach +msgid "Add a file or a picture to your post" +msgstr "" + +#: [publish]no_publication +msgid "You cannot publish a post on this Group" +msgstr "" + +#: [publish]form_filled +msgid "Some fields have been filled in. Do you still want to go back and loose their content?" +msgstr "" + +#: [public_groups]shared +msgid "Shared" +msgstr "Koplietots" + +#: [public_groups]added +msgid "%s has been added to your public groups" +msgstr "" + +#: [rooms]add +msgid "Add a chatroom" +msgstr "" + +#: [rooms]empty_text1 +msgid "You don't have any chatroom yet." +msgstr "" + +#: [rooms]empty_text2 +msgid "Add one by clicking on the add button in the header." +msgstr "" + +#: [chatrooms]title +msgid "Chatrooms" +msgstr "" + +#: [chatrooms]name_placeholder +msgid "My Favorite Room" +msgstr "" + +#: [chatrooms]users +msgid "Users in the room" +msgstr "" + +#: [chatrooms]bad_nickname +msgid "Please enter a correct nickname (2 to 40 characters)" +msgstr "" + +#: [room]anonymous_title +msgid "Public chatroom" +msgstr "" + +#: [room]no_room +msgid "Please provide a room address" +msgstr "" + +#: [room]anonymous_text1 +msgid "You are currently logued as an anonymous user." +msgstr "" + +#: [room]anonymous_text2 +msgid "You can join using your own account or create one on the login page by loging out using the cross in the top-right corner." +msgstr "" + +#: [room]anonymous_login +msgid "Login on %s" +msgstr "" + +#: [room]nick +msgid "Your nickname" +msgstr "" + +#: [roster]ungrouped +msgid "Ungrouped" +msgstr "Negrupēts" + +#: [roster]show_disconnected +msgid "Show disconnected contacts" +msgstr "" + +#: [roster]hide_disconnected +msgid "Hide disconnected contacts" +msgstr "" + +#: [roster]show_group +msgid "Show group %s" +msgstr "Radīt %s grupu" + +#: [roster]hide_group +msgid "Hide group %s" +msgstr "Slēpt %s grupu" + +#: [roster]jid_error +msgid "Please enter a valid Jabber ID" +msgstr "" + +#: [roster]no_contacts_title +#, fuzzy +msgid "No contacts ?" +msgstr "Jūsu kontakti" + +#: [roster]no_contacts_text +msgid "You can add one using the + button bellow" +msgstr "" + +#: [roster]show_hide +msgid "Show/Hide" +msgstr "Rādīt/slēpt" + +#: [roster]add_contact_info1 +msgid "Enter the Jabber ID of your contact." +msgstr "" + +#: [roster]add_contact_info2 +msgid "Press enter to validate." +msgstr "Spiest enter lai apstiprināt." + +#: [roster]jid +msgid "JID" +msgstr "JID" + +#: [roster]results +msgid "Results" +msgstr "" + +#: [roster]added +msgid "Contact added" +msgstr "" + +#: [roster]deleted +msgid "Contact deleted" +msgstr "" + +#: [roster]search +msgid "Search" +msgstr "Meklēt" + +#: [share]error +msgid "This is not a valid url" +msgstr "" + +#: [share]success +msgid "Sharing the URL" +msgstr "" + +#: [statistics]title +msgid "Statistics" +msgstr "Statistika" + +#: [statistics]since +msgid "Since" +msgstr "Kopš" + +#: [statistics]sessions +msgid "Sessions" +msgstr "Sesijas" + +#: [statistics]monthly_sub +msgid "Monthly Subscriptions" +msgstr "" + +#: [statistics]monthly_sub_cum +msgid "Monthly Subscriptions Cumulated" +msgstr "" + +#: [subscribe]info +msgid "Movim is a decentralized social network, before creating a new account you need to choose a server to register." +msgstr "" + +#: [subscribe]server_question +msgid "Your server here ?" +msgstr "Jūsu serveris šeit ?" + +#: [subscribe]server_contact +msgid "Contact us to add yours to the officially supported servers list" +msgstr "Sazināties ar mums lai pievienot jūsu oficiāli atbalstīto serveru sarakstam" + +#: [feed]nope +msgid "No public feed for this contact" +msgstr "" + +#: [feed]nope_contact +msgid "No contact specified" +msgstr "" + +#: [upload]title +msgid "Upload a file" +msgstr "" + +#: [upload]choose +msgid "Choose a file to upload" +msgstr "" + +#: [vcard]title [page]profile +msgid "Profile" +msgstr "" + +#: [vcard]updated +msgid "Profile Updated" +msgstr "Profils atjaunināts" + +#: [vcard]not_updated +msgid "Profile Not Updated" +msgstr "" + +#: [vcard]public +msgid "Your profile is now public" +msgstr "" + +#: [vcard]restricted +msgid "Your profile is now restricted" +msgstr "" + +#: [general]nickname +#, fuzzy +msgctxt "[general]nickname" +msgid "Nickname" +msgstr "Segvārds" + +#: [accounts]twitter +msgid "Twitter" +msgstr "Twitter" + +#: [accounts]skype +msgid "Skype" +msgstr "Skype" + +#: [accounts]yahoo +msgid "Yahoo" +msgstr "Yahoo" + +#: [accounts]accounts_nickname +#, fuzzy +msgctxt "[accounts]accounts_nickname" +msgid "Nickname" +msgstr "Segvārds" + +#: [accounts]accounts_yahoo +#, fuzzy +msgid "Yahoo Account" +msgstr "Konti" + +#: [privacy]privacy_title +msgid "Privacy Level" +msgstr "Privātuma līmenis" + +#: [privacy]privacy_question +msgid "Is this profile public ?" +msgstr "" + +#: [privacy]privacy_info +msgid "Please pay attention ! By making your profile public, all the information listed above will be available for all the Movim users and on the whole Internet." +msgstr "" + +#: [save]submit [button]submit msgid "Submit" msgstr "" -#: ../cache/locales.php:522 -msgid "Submitting" -msgstr "" - -#: ../cache/locales.php:523 +#: [save]reset [button]reset msgid "Reset" msgstr "" -#: ../cache/locales.php:524 +#: [visio]hung_up +msgid "Hung up" +msgstr "" + +#: [visio]busy +msgid "Your contact is busy" +msgstr "" + +#: [visio]declined +msgid "Declined" +msgstr "" + +#: [visio]calling +msgid "Is calling you" +msgstr "" + +#: [visio]call +msgid "Call" +msgstr "" + +#: [visio]hang_up +msgid "Hang up" +msgstr "" + +#: [visio]connection +msgid "Connection" +msgstr "" + +#: [global]no_js +msgid "You don't have javascript enabled. Good luck with that." +msgstr "" + +#: [global]description +msgid "Movim is a kickass distributed social networking platform that protect your privacy an comes with a set of awesome features." +msgstr "" + +#: [page]administration +msgid "Administration" +msgstr "Administrācija" + +#: [page]home +msgid "Home" +msgstr "Sākumvieta" + +#: [page]discover +msgid "Discover" +msgstr "Atklāt" + +#: [page]explore +msgid "Explore" +msgstr "Izpētīt" + +#: [page]account_creation +msgid "Account Creation" +msgstr "" + +#: [page]avatar +msgid "Avatar" +msgstr "" + +#: [page]chats +msgid "Chats" +msgstr "" + +#: [page]server +msgid "Server" +msgstr "" + +#: [page]public_groups +msgid "Public Groups" +msgstr "" + +#: [page]viewer +msgid "Viewer" +msgstr "Skatītājs" + +#: [page]media +msgid "Media" +msgstr "Multivide" + +#: [page]blog +msgid "Blog" +msgstr "Emuārs" + +#: [page]about +msgid "About" +msgstr "" + +#: [page]login +msgid "Login" +msgstr "" + +#: [page]feed +msgid "Feed" +msgstr "Plūsma" + +#: [page]gallery +msgid "Gallery" +msgstr "" + +#: [page]visio +msgid "Visio-conference" +msgstr "" + +#: [page]pods +msgid "Pods" +msgstr "" + +#: [page]share +msgid "Share" +msgstr "" + +#: [page]room +msgid "Room" +msgstr "" + +#: [error]error +msgid "Error: %s" +msgstr "" + +#: [error]cannot_load_file +msgid "Cannot load file '%s'" +msgstr "" + +#: [error]route +msgid "Route error, please set all the parameters for the page %s" +msgstr "" + +#: [error]widget_load_error +msgid "Requested widget '%s' doesn't exist." +msgstr "" + +#: [error]widget_call_error +msgid "Requested event '%s' not registered." +msgstr "" + +#: [error]whoops +msgid "Whoops!" +msgstr "" + +#: [error]media_not_found +msgid "It seem that you don't have any pictures here?" +msgstr "" + +#: [error]media_ask_upload +msgid "You can try to upload a couple by going to the Media page" +msgstr "" + +#: [title]about +msgid "%s - About" +msgstr "" + +#: [title]account +msgid "%s - Account" +msgstr "" + +#: [title]administration +msgid "%s - Administration Panel" +msgstr "" + +#: [title]blog +msgid "%s - Blog" +msgstr "" + +#: [title]configuration +msgid "%s - Configuration" +msgstr "" + +#: [title]discover +msgid "%s - Discover" +msgstr "" + +#: [title]explore +msgid "%s - Explore" +msgstr "" + +#: [title]help +msgid "%s - Help Page" +msgstr "" + +#: [title]login +msgid "%s - Login to Movim" +msgstr "" + +#: [title]main +msgid "%s - Welcome to Movim" +msgstr "" + +#: [title]media +msgid "%s - Media" +msgstr "" + +#: [title]news +msgid "%s - News" +msgstr "" + +#: [title]node_configuration +msgid "%s - Group Configuration" +msgstr "" + +#: [title]node +msgid "%s - Group" +msgstr "" + +#: [title]not_found +msgid "%s - 404" +msgstr "" + +#: [title]profile +msgid "%s - Profile" +msgstr "" + +#: [title]server +msgid "%s - Server" +msgstr "" + +#: [button]validate +msgid "Validate" +msgstr "" + +#: [button]refresh +msgid "Refresh" +msgstr "" + +#: [button]add +msgid "Add" +msgstr "Pievienot" + +#: [button]delete +msgid "Delete" +msgstr "" + +#: [button]cancel +msgid "Cancel" +msgstr "" + +#: [button]close +msgid "Close" +msgstr "Aizvērt" + +#: [button]update +msgid "Update" +msgstr "" + +#: [button]updating +msgid "Updating" +msgstr "" + +#: [button]submitting +msgid "Submitting" +msgstr "" + +#: [button]register msgid "Register" msgstr "" -#: ../cache/locales.php:525 +#: [button]unregister msgid "Unregister" msgstr "" -#: ../cache/locales.php:526 +#: [button]save msgid "Save" msgstr "Saglabāt" -#: ../cache/locales.php:527 +#: [button]clear msgid "Clear" msgstr "" -#: ../cache/locales.php:528 +#: [button]upload msgid "Upload" msgstr "" -#: ../cache/locales.php:529 +#: [button]come_in msgid "Come in!" msgstr "" -#: ../cache/locales.php:530 +#: [button]connecting msgid "Connecting" msgstr "" -#: ../cache/locales.php:531 +#: [button]bool_yes msgid "Yes" msgstr "" -#: ../cache/locales.php:532 +#: [button]bool_no msgid "No" msgstr "" -#: ../cache/locales.php:534 +#: [button]return msgid "Return" msgstr "" -#: ../cache/locales.php:535 +#: [button]accept msgid "Accept" msgstr "" -#: ../cache/locales.php:536 +#: [button]refuse msgid "Refuse" msgstr "" -#: ../cache/locales.php:537 +#: [button]next msgid "Next" msgstr "" -#: ../cache/locales.php:538 +#: [button]previous msgid "Previous" msgstr "" -#: ../cache/locales.php:539 -#, php-format +#: [step]step msgid "Step %s" msgstr "" -#: ../cache/locales.php:542 +#: [day]title msgid "Day" msgstr "" -#: ../cache/locales.php:543 +#: [day]monday msgid "Monday" msgstr "" -#: ../cache/locales.php:544 +#: [day]tuesday msgid "Tuesday" msgstr "" -#: ../cache/locales.php:545 +#: [day]wednesday msgid "Wednesday" msgstr "" -#: ../cache/locales.php:546 +#: [day]thursday msgid "Thursday" msgstr "" -#: ../cache/locales.php:547 +#: [day]friday msgid "Friday" msgstr "" -#: ../cache/locales.php:548 +#: [day]saturday msgid "Saturday" msgstr "" -#: ../cache/locales.php:549 +#: [day]sunday msgid "Sunday" msgstr "" -#: ../cache/locales.php:550 ../cache/locales.php:559 +#: [gender]nil +msgctxt "[gender]nil" msgid "None" msgstr "" -#: ../cache/locales.php:551 +#: [gender]male msgid "Male" msgstr "" -#: ../cache/locales.php:552 +#: [gender]female msgid "Female" msgstr "" -#: ../cache/locales.php:553 +#: [gender]other msgid "Other" msgstr "" -#: ../cache/locales.php:554 +#: [client]bot msgid "Bot" msgstr "" -#: ../cache/locales.php:555 +#: [client]desktop msgid "Desktop" msgstr "" -#: ../cache/locales.php:556 +#: [client]phone msgid "Phone" msgstr "" -#: ../cache/locales.php:557 +#: [client]web msgid "Web" msgstr "" -#: ../cache/locales.php:558 +#: [client]registered msgid "Registered" msgstr "" -#: ../cache/locales.php:560 +#: [marital]nil +msgctxt "[marital]nil" +msgid "None" +msgstr "" + +#: [marital]single msgid "Single" msgstr "" -#: ../cache/locales.php:561 +#: [marital]relationship msgid "In a relationship" msgstr "" -#: ../cache/locales.php:562 +#: [marital]married msgid "Married" msgstr "" -#: ../cache/locales.php:563 +#: [marital]divorced msgid "Divorced" msgstr "" -#: ../cache/locales.php:564 +#: [marital]widowed msgid "Widowed" msgstr "" -#: ../cache/locales.php:565 +#: [marital]cohabiting msgid "Cohabiting" msgstr "" -#: ../cache/locales.php:566 +#: [marital]union msgid "Civil Union" msgstr "" -#: ../cache/locales.php:567 +#: [flag]white msgid "Not shared" msgstr "" -#: ../cache/locales.php:568 +#: [flag]green msgid "Shared with one contact" msgstr "" -#: ../cache/locales.php:569 +#: [flag]orange msgid "Shared with all contacts" msgstr "" -#: ../cache/locales.php:570 +#: [flag]red msgid "Shared with the XMPP network" msgstr "" -#: ../cache/locales.php:571 +#: [flag]black msgid "Shared with the whole Internet" msgstr "" -#: ../cache/locales.php:572 +#: [presence]online msgid "Online" msgstr "" -#: ../cache/locales.php:573 +#: [presence]away msgid "Away" msgstr "" -#: ../cache/locales.php:574 +#: [presence]dnd msgid "Do Not Disturb" msgstr "" -#: ../cache/locales.php:575 +#: [presence]xa msgid "Extended Away" msgstr "" -#: ../cache/locales.php:576 +#: [presence]offline msgid "Offline" msgstr "" -#: ../cache/locales.php:577 +#: [presence]error msgid "Error" msgstr "Kļūda" -#: ../cache/locales.php:578 +#: [mood]afraid msgid "afraid" msgstr "" -#: ../cache/locales.php:579 +#: [mood]amazed msgid "amazed" msgstr "" -#: ../cache/locales.php:580 +#: [mood]amorous msgid "amorous" msgstr "" -#: ../cache/locales.php:581 +#: [mood]angry msgid "angry" msgstr "" -#: ../cache/locales.php:582 +#: [mood]annoyed msgid "annoyed" msgstr "" -#: ../cache/locales.php:583 +#: [mood]anxious msgid "anxious" msgstr "" -#: ../cache/locales.php:584 +#: [mood]aroused msgid "aroused" msgstr "" -#: ../cache/locales.php:585 +#: [mood]ashamed msgid "ashamed" msgstr "" -#: ../cache/locales.php:586 +#: [mood]bored msgid "bored" msgstr "" -#: ../cache/locales.php:587 +#: [mood]brave msgid "brave" msgstr "" -#: ../cache/locales.php:588 +#: [mood]calm msgid "calm" msgstr "" -#: ../cache/locales.php:589 +#: [mood]cautious msgid "cautious" msgstr "" -#: ../cache/locales.php:590 +#: [mood]cold msgid "cold" msgstr "" -#: ../cache/locales.php:591 +#: [mood]confident msgid "confident" msgstr "" -#: ../cache/locales.php:592 +#: [mood]confused msgid "confused" msgstr "" -#: ../cache/locales.php:593 +#: [mood]contemplative msgid "contemplative" msgstr "" -#: ../cache/locales.php:594 +#: [mood]contented msgid "contented" msgstr "" -#: ../cache/locales.php:595 +#: [mood]cranky msgid "cranky" msgstr "" -#: ../cache/locales.php:596 +#: [mood]crazy msgid "crazy" msgstr "" -#: ../cache/locales.php:597 +#: [mood]creative msgid "creative" msgstr "" -#: ../cache/locales.php:598 +#: [mood]curious msgid "curious" msgstr "" -#: ../cache/locales.php:599 +#: [mood]dejected msgid "dejected" msgstr "" -#: ../cache/locales.php:600 +#: [mood]depressed msgid "depressed" msgstr "" -#: ../cache/locales.php:601 +#: [mood]disappointed msgid "disappointed" msgstr "" -#: ../cache/locales.php:602 +#: [mood]disgusted msgid "disgusted" msgstr "" -#: ../cache/locales.php:603 +#: [mood]dismayed msgid "dismayed" msgstr "" -#: ../cache/locales.php:604 +#: [mood]distracted msgid "distracted" msgstr "" -#: ../cache/locales.php:605 +#: [mood]embarrassed msgid "embarrassed" msgstr "" -#: ../cache/locales.php:606 +#: [mood]envious msgid "envious" msgstr "" -#: ../cache/locales.php:607 +#: [mood]excited msgid "excited" msgstr "" -#: ../cache/locales.php:608 +#: [mood]flirtatious msgid "flirtatious" msgstr "" -#: ../cache/locales.php:609 +#: [mood]frustated msgid "frustated" msgstr "" -#: ../cache/locales.php:610 +#: [mood]grateful msgid "grateful" msgstr "" -#: ../cache/locales.php:611 +#: [mood]grieving msgid "grieving" msgstr "" -#: ../cache/locales.php:612 +#: [mood]grumpy msgid "grumpy" msgstr "" -#: ../cache/locales.php:613 +#: [mood]guilty msgid "guilty" msgstr "" -#: ../cache/locales.php:614 +#: [mood]happy msgid "happy" msgstr "" -#: ../cache/locales.php:615 +#: [mood]hopeful msgid "hopeful" msgstr "" -#: ../cache/locales.php:616 +#: [mood]hot msgid "hot" msgstr "" -#: ../cache/locales.php:617 +#: [mood]humbled msgid "humbled" msgstr "" -#: ../cache/locales.php:618 +#: [mood]humiliated msgid "humiliated" msgstr "" -#: ../cache/locales.php:619 +#: [mood]hungry msgid "hungry" msgstr "" -#: ../cache/locales.php:620 +#: [mood]hurt msgid "hurt" msgstr "" -#: ../cache/locales.php:621 +#: [mood]impressed msgid "impressed" msgstr "" -#: ../cache/locales.php:622 +#: [mood]in_awe msgid "in awe" msgstr "" -#: ../cache/locales.php:623 +#: [mood]in_love msgid "in love" msgstr "" -#: ../cache/locales.php:624 +#: [mood]indignant msgid "indignant" msgstr "" -#: ../cache/locales.php:625 +#: [mood]interested msgid "interested" msgstr "" -#: ../cache/locales.php:626 +#: [mood]intoxicated msgid "intoxicated" msgstr "" -#: ../cache/locales.php:627 +#: [mood]invincible msgid "invincible" msgstr "" -#: ../cache/locales.php:628 +#: [mood]jealous msgid "jealous" msgstr "" -#: ../cache/locales.php:629 +#: [mood]lonely msgid "lonely" msgstr "" -#: ../cache/locales.php:630 +#: [mood]lost msgid "lost" msgstr "" -#: ../cache/locales.php:631 +#: [mood]lucky msgid "lucky" msgstr "" -#: ../cache/locales.php:632 +#: [mood]mean msgid "mean" msgstr "" -#: ../cache/locales.php:633 +#: [mood]moody msgid "moody" msgstr "" -#: ../cache/locales.php:634 +#: [mood]nervous msgid "nervous" msgstr "" -#: ../cache/locales.php:635 +#: [mood]neutral msgid "neutral" msgstr "" -#: ../cache/locales.php:636 +#: [mood]offended msgid "offended" msgstr "" -#: ../cache/locales.php:637 +#: [mood]outraged msgid "outraged" msgstr "" -#: ../cache/locales.php:638 +#: [mood]playful msgid "playful" msgstr "" -#: ../cache/locales.php:639 +#: [mood]proud msgid "proud" msgstr "" -#: ../cache/locales.php:640 +#: [mood]relaxed msgid "relaxed" msgstr "" -#: ../cache/locales.php:641 +#: [mood]relieved msgid "relieved" msgstr "" -#: ../cache/locales.php:642 -msgid "remorseful" -msgstr "" - -#: ../cache/locales.php:643 +#: [mood]restless msgid "restless" msgstr "" -#: ../cache/locales.php:644 +#: [mood]sad msgid "sad" msgstr "" -#: ../cache/locales.php:645 +#: [mood]sarcastic msgid "sarcastic" msgstr "" -#: ../cache/locales.php:646 +#: [mood]satisfied msgid "satisfied" msgstr "" -#: ../cache/locales.php:647 +#: [mood]serious msgid "serious" msgstr "" -#: ../cache/locales.php:648 +#: [mood]shocked msgid "shocked" msgstr "" -#: ../cache/locales.php:649 +#: [mood]shy msgid "shy" msgstr "" -#: ../cache/locales.php:650 +#: [mood]sick msgid "sick" msgstr "" -#: ../cache/locales.php:651 +#: [mood]sleepy msgid "sleepy" msgstr "" -#: ../cache/locales.php:652 +#: [mood]spontaneous msgid "spontaneous" msgstr "" -#: ../cache/locales.php:653 +#: [mood]stressed msgid "stressed" msgstr "" -#: ../cache/locales.php:654 +#: [mood]strong msgid "strong" msgstr "" -#: ../cache/locales.php:655 +#: [mood]surprised msgid "surprised" msgstr "" -#: ../cache/locales.php:656 +#: [mood]thankful msgid "thankful" msgstr "" -#: ../cache/locales.php:657 +#: [mood]thirsty msgid "thirsty" msgstr "" -#: ../cache/locales.php:658 +#: [mood]tired msgid "tired" msgstr "" -#: ../cache/locales.php:659 +#: [mood]undefined msgid "undefined" msgstr "" -#: ../cache/locales.php:660 +#: [mood]weak msgid "weak" msgstr "" -#: ../cache/locales.php:661 +#: [mood]worried msgid "worried" msgstr "" -#: ../cache/locales.php:662 +#: [month]title msgid "Month" msgstr "" -#: ../cache/locales.php:663 +#: [month]january msgid "January" msgstr "" -#: ../cache/locales.php:664 +#: [month]february msgid "February" msgstr "" -#: ../cache/locales.php:665 +#: [month]march msgid "March" msgstr "" -#: ../cache/locales.php:666 +#: [month]april msgid "April" msgstr "" -#: ../cache/locales.php:667 +#: [month]may msgid "May" msgstr "" -#: ../cache/locales.php:668 +#: [month]june msgid "June" msgstr "" -#: ../cache/locales.php:669 +#: [month]july msgid "July" msgstr "" -#: ../cache/locales.php:670 +#: [month]august msgid "August" msgstr "" -#: ../cache/locales.php:671 +#: [month]september msgid "September" msgstr "" -#: ../cache/locales.php:672 +#: [month]october msgid "October" msgstr "" -#: ../cache/locales.php:673 +#: [month]november msgid "November" msgstr "" -#: ../cache/locales.php:674 +#: [month]december msgid "December" msgstr "" -#: ../cache/locales.php:675 +#: [year]title msgid "Year" msgstr "" -#: ../cache/locales.php:676 +#: [date]today msgid "Today" msgstr "" -#: ../cache/locales.php:677 +#: [date]tomorrow msgid "Tomorrow" msgstr "" -#: ../cache/locales.php:678 +#: [date]yesterday msgid "Yesterday" msgstr "" -#: ../cache/locales.php:679 -#, php-format -msgid " %d days ago" +#: [date]ago +msgid "%d days ago" msgstr "" -#: ../cache/locales.php:680 +#: [date]day msgid "day" msgstr "" -#: ../cache/locales.php:682 +#: [post]whats_new msgid "What's new ?" msgstr "" -#: ../cache/locales.php:683 +#: [post]place msgid "Place" msgstr "" -#: ../cache/locales.php:684 +#: [post]by msgid "by" msgstr "" -#: ../cache/locales.php:685 +#: [post]geolocalisation msgid "Geolocalisation" msgstr "" -#: ../cache/locales.php:686 +#: [post]email msgid "email" msgstr "" -#: ../cache/locales.php:688 +#: [post]no_comments msgid "No comments yet" msgstr "" -#: ../cache/locales.php:689 +#: [post]no_comments_stream msgid "No comments stream" msgstr "" -#: ../cache/locales.php:690 +#: [post]no_load msgid "Your feed cannot be loaded." msgstr "" -#: ../cache/locales.php:691 +#: [post]older msgid "Get older posts" msgstr "" -#: ../cache/locales.php:692 -#, php-format +#: [post]new_items msgid "%s new items" msgstr "" -#: ../cache/locales.php:693 +#: [post]comment_error msgid "Comment publication error" msgstr "" -#: ../cache/locales.php:694 +#: [post]comments_older msgid "Show the older comments" msgstr "" -#: ../cache/locales.php:695 -msgid "Loading comments ..." +#: [post]comments_loading +msgid "Loading comments..." msgstr "" -#: ../cache/locales.php:696 +#: [post]comments_get msgid "Get the comments" msgstr "" -#: ../cache/locales.php:697 +#: [post]comment_add msgid "Add a comment" msgstr "Pievienot komentāru" -#: ../cache/locales.php:698 +#: [post]share msgid "Share with" msgstr "Dalīt ar" -#: ../cache/locales.php:699 +#: [post]share_everyone msgid "Everyone" msgstr "Ikviens" -#: ../cache/locales.php:700 +#: [post]share_your_contacts msgid "Your contacts" msgstr "Jūsu kontakti" -#: ../cache/locales.php:702 +#: [post]updated msgid "Updated" msgstr "" -#: ../cache/locales.php:703 +#: [post]content_not_found msgid "Content not found" msgstr "" -#: ../cache/locales.php:704 +#: [post]default_title msgid "Contact publication" msgstr "" -#: ../cache/locales.php:705 +#: [post]comments msgid "Comments" msgstr "" -#: ../cache/locales.php:706 +#: [api]error msgid "The API is not reachable, try again later" msgstr "" -#: ../cache/locales.php:707 +#: [field]type_here msgid "Type here" msgstr "" +#~ msgid "Environment" +#~ msgstr "Vide" + #~ msgid "Invalid name" #~ msgstr "Nederīgs vārds" diff --git a/sources/locales/messages.pot b/sources/locales/messages.pot index a3de479..1b7cf72 100644 --- a/sources/locales/messages.pot +++ b/sources/locales/messages.pot @@ -25,10 +25,10 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Chats/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Config/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/ConfigData/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Config/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Contact/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Group/locales.ini @@ -45,10 +45,10 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Location/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Login/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/LoginAnonymous/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Login/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Menu/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/NodeAffiliations/locales.ini @@ -81,17 +81,17 @@ #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/Vcard4/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# -#. extracted from ../app/widgets/Visio/locales.ini -#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../app/widgets/VisioExt/locales.ini #. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Visio/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# #. extracted from ../locales/locales.ini #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-08-16 15:40+0200\n" +"POT-Creation-Date: 2015-08-20 15:17+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -584,11 +584,11 @@ msgstr "" msgid "Encrypted message" msgstr "" -#: [message]composing +#: [message]composing [chats]composing msgid "Composing..." msgstr "" -#: [message]paused +#: [message]paused [chats]paused msgid "Paused..." msgstr "" @@ -666,6 +666,26 @@ msgstr "" msgid "Load more contacts" msgstr "" +#: [title]data +msgid "Data" +msgstr "" + +#: [title]cache +msgid "Cache" +msgstr "" + +#: [title]contacts [menu]contacts [page]contacts +msgid "Contacts" +msgstr "" + +#: [title]posts [page]posts +msgid "Posts" +msgstr "" + +#: [title]messages +msgid "Messages" +msgstr "" + #: [config]general msgid "General" msgstr "" @@ -702,26 +722,6 @@ msgstr "" msgid "Use desktop notifications" msgstr "" -#: [title]data -msgid "Data" -msgstr "" - -#: [title]cache -msgid "Cache" -msgstr "" - -#: [title]contacts [menu]contacts [page]contacts -msgid "Contacts" -msgstr "" - -#: [title]posts [page]posts -msgid "Posts" -msgstr "" - -#: [title]messages -msgid "Messages" -msgstr "" - #: [general]legend [general]general_title msgid "General Informations" msgstr "" @@ -957,7 +957,7 @@ msgstr "" #: [group]help_info2 msgid "" "Choose a server and a Group and subscribe to it using the %s button in the " -"header. You can alse create a new one using the %s button." +"header. You can also create a new one using the %s button." msgstr "" #: [group]help_info3 @@ -1181,6 +1181,10 @@ msgstr "" msgid "Update my position" msgstr "" +#: [login_anonymous]bad_username +msgid "Bad nickname (between 4 and 40 characters)" +msgstr "" + #: [error]username msgid "Wrong username" msgstr "" @@ -1309,10 +1313,6 @@ msgstr "" msgid "Population" msgstr "" -#: [login_anonymous]bad_username -msgid "Bad nickname (between 4 and 40 characters)" -msgstr "" - #: [menu]empty_title msgid "No news yet..." msgstr "" @@ -1784,18 +1784,6 @@ msgstr "" msgid "Reset" msgstr "" -#: [visio]call -msgid "Call" -msgstr "" - -#: [visio]hang_up -msgid "Hang up" -msgstr "" - -#: [visio]connection -msgid "Connection" -msgstr "" - #: [visio]hung_up msgid "Hung up" msgstr "" @@ -1812,6 +1800,18 @@ msgstr "" msgid "Is calling you" msgstr "" +#: [visio]call +msgid "Call" +msgstr "" + +#: [visio]hang_up +msgid "Hang up" +msgstr "" + +#: [visio]connection +msgid "Connection" +msgstr "" + #: [global]no_js msgid "You don't have javascript enabled. Good luck with that." msgstr "" diff --git a/sources/locales/nl.po b/sources/locales/nl.po index d8d5187..3a809b3 100644 --- a/sources/locales/nl.po +++ b/sources/locales/nl.po @@ -1,2600 +1,2733 @@ # Dutch translations for Movim package. # This file is distributed under the same license as the Movim package. # This file was translated from CodingTeam at . +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/About/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Account/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AccountNext/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AdHoc/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AdminDB/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AdminMain/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AdminTest/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Api/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Avatar/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Blog/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Bookmark/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Chat/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Chats/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/ConfigData/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Config/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Contact/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Group/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Groups/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Header/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Hello/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Help/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Init/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Location/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/LoginAnonymous/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Login/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Menu/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/NodeAffiliations/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/NodeSubscriptions/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Notifs/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Post/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Presence/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Publish/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/PubsubSubscriptionConfig/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Rooms/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Roster/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Share/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Statistics/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Subscribe/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Syndication/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Upload/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Vcard4/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/VisioExt/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Visio/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../locales/locales.ini msgid "" msgstr "" "Project-Id-Version: Movim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-06-08 22:06+0200\n" +"POT-Creation-Date: 2015-08-20 15:17+0200\n" "PO-Revision-Date: 2015-06-09 12:20+0000\n" "Last-Translator: Aivin \n" "Language-Team: LANGUAGE \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2015-06-18 21:08+0000\n" "X-Generator: Launchpad (build 17570)\n" -"Language: \n" -#: ../cache/locales.php:2 +#: [about]thanks msgid "Thanks" msgstr "Bedankt" -#: ../cache/locales.php:3 +#: [about]developers msgid "Developers" msgstr "Ontwikkelaars" -#: ../cache/locales.php:4 +#: [about]translators msgid "Translators" msgstr "Vertalers" -#: ../cache/locales.php:5 +#: [about]software msgid "Software" msgstr "Software" -#: ../cache/locales.php:6 +#: [about]resources msgid "Resources" msgstr "Hulpmiddelen" -#: ../cache/locales.php:7 ../cache/locales.php:83 ../cache/locales.php:85 +#: [about]api [schema]api [api]title msgid "API" msgstr "API" -#: ../cache/locales.php:8 -msgid "" -"Movim is an XMPP-based communication platform. All the project, except the " -"following software and resources, is under" -msgstr "" -"Movim is een XMPP-gebaseerd communicatieplatform. Alles van het project, met " -"uitzondering van de volgende software en hulpmiddelen, is onder" +#: [about]info +msgid "Movim is an XMPP-based communication platform. All the project, except the following software and resources, is under" +msgstr "Movim is een XMPP-gebaseerd communicatieplatform. Alles van het project, met uitzondering van de volgende software en hulpmiddelen, is onder" -#: ../cache/locales.php:9 +#: [account]title msgid "Account" msgstr "Account" -#: ../cache/locales.php:10 -msgid "The password has been updated" -msgstr "Je wachtwoord is vernieuwd" +#: [account]password_change_title +#, fuzzy +msgid "Change my password" +msgstr "Foutief wachtwoord" -#: ../cache/locales.php:11 -msgid "Please provide a valid password (6 characters minimum)" -msgstr "Geef een geldig wachtwoord" - -#: ../cache/locales.php:12 -msgid "The provided passwords are not the same" -msgstr "De gegeven wachtwoorden zijn niet gelijk" - -#: ../cache/locales.php:13 -msgid "Delete my account" -msgstr "" - -#: ../cache/locales.php:14 -msgid "" -"You will delete your XMPP account and all the relative information linked to " -"it (profile, contacts and publications)." -msgstr "" -"Je verwijdert je XMPP account en alle hieraan gerelateerde informatie " -"(profiel, contacten, publicaties)" - -#: ../cache/locales.php:15 -msgid "Are you sure that you want to delete it ?" -msgstr "Weet je zeker dat je het wilt verwijderen?" - -#: ../cache/locales.php:16 ../cache/locales.php:411 -msgid "Create a new account" -msgstr "Maak een nieuw account aan" - -#: ../cache/locales.php:17 -msgid "No account creation form found on the server" -msgstr "Geen vorm van gecreëerd account gevonden in de server" - -#: ../cache/locales.php:18 ../cache/locales.php:172 -msgid "on" -msgstr "op" - -#: ../cache/locales.php:19 -msgid "Your acccount has been successfully registered" -msgstr "Je account is geregistreerd" - -#: ../cache/locales.php:20 -msgid "Loading" -msgstr "" - -#: ../cache/locales.php:21 -msgid "Not Acceptable" -msgstr "" - -#: ../cache/locales.php:22 -msgid "The registration system of this server is currently unavailable" -msgstr "" - -#: ../cache/locales.php:23 -msgid "" -"This server use an external system for the registration, please click on the " -"following URL." -msgstr "" - -#: ../cache/locales.php:24 -msgid "Actions" -msgstr "Acties" - -#: ../cache/locales.php:25 ../cache/locales.php:82 -msgid "Database" -msgstr "" - -#: ../cache/locales.php:26 -msgid "Modl wasn't able to connect to the database" -msgstr "Modl was niet in staat om met de database verbonden te worden" - -#: ../cache/locales.php:27 -msgid "Movim is connected to the database" -msgstr "Movim is verbonden met de database" - -#: ../cache/locales.php:28 -msgid "The database need to be updated" -msgstr "De database vergt een update" - -#: ../cache/locales.php:29 -msgid "Movim database is up to date" -msgstr "" - -#: ../cache/locales.php:30 -msgid "Database Type" -msgstr "Databasetype" - -#: ../cache/locales.php:31 ../cache/locales.php:50 ../cache/locales.php:540 -msgid "Username" -msgstr "Gebruikersnaam" - -#: ../cache/locales.php:32 ../cache/locales.php:51 ../cache/locales.php:282 -#: ../cache/locales.php:541 +#: [account]password [db]password [credentials]password [form]password +#: [input]password msgid "Password" msgstr "Wachtwoord" -#: ../cache/locales.php:33 +#: [account]password_confirmation +#, fuzzy +msgid "Password confirmation" +msgstr "%s - Configuratie" + +#: [account]password_changed +msgid "The password has been updated" +msgstr "Je wachtwoord is vernieuwd" + +#: [account]password_not_valid +msgid "Please provide a valid password (6 characters minimum)" +msgstr "Geef een geldig wachtwoord" + +#: [account]password_not_same +msgid "The provided passwords are not the same" +msgstr "De gegeven wachtwoorden zijn niet gelijk" + +#: [account]delete_title +msgid "Delete my account" +msgstr "" + +#: [account]delete +#, fuzzy +msgid "Delete your account" +msgstr "Maak een nieuw account aan" + +#: [account]delete_text +msgid "You will delete your XMPP account and all the relative information linked to it (profile, contacts and publications)." +msgstr "Je verwijdert je XMPP account en alle hieraan gerelateerde informatie (profiel, contacten, publicaties)" + +#: [account]delete_text_confirm +msgid "Are you sure that you want to delete it ?" +msgstr "Weet je zeker dat je het wilt verwijderen?" + +#: [account]gateway_title +msgid "Gateway" +msgstr "" + +#: [create]title [subscribe]title +msgid "Create a new account" +msgstr "Maak een nieuw account aan" + +#: [create]notfound +msgid "No account creation form found on the server" +msgstr "Geen vorm van gecreëerd account gevonden in de server" + +#: [create]server_on +msgid "on" +msgstr "op" + +#: [create]successfull +msgid "Your acccount has been successfully registered" +msgstr "Je account is geregistreerd" + +#: [create]loading +msgid "Loading" +msgstr "" + +#: [error]not_acceptable +msgid "Not Acceptable" +msgstr "" + +#: [error]service_unavailable +msgid "The registration system of this server is currently unavailable" +msgstr "" + +#: [oob]about +msgid "This server use an external system for the registration, please click on the following URL." +msgstr "" + +#: [adhoc]title +msgid "Actions" +msgstr "Acties" + +#: [db]legend [schema]database +msgid "Database" +msgstr "" + +#: [db]connect_error +msgid "Modl wasn't able to connect to the database" +msgstr "Modl was niet in staat om met de database verbonden te worden" + +#: [db]connect_success +msgid "Movim is connected to the database" +msgstr "Movim is verbonden met de database" + +#: [db]update +msgid "The database need to be updated" +msgstr "De database vergt een update" + +#: [db]up_to_date +msgid "Movim database is up to date" +msgstr "" + +#: [db]type +msgid "Database Type" +msgstr "Databasetype" + +#: [db]username [credentials]username [input]username +msgid "Username" +msgstr "Gebruikersnaam" + +#: [db]host msgid "Host" msgstr "" -#: ../cache/locales.php:34 +#: [db]port msgid "Port" msgstr "" -#: ../cache/locales.php:35 -msgid "Database Name" -msgstr "" +#: [db]name +#, fuzzy +msgid "Database sName" +msgstr "Databasetype" -#: ../cache/locales.php:36 +#: [admin]general msgid "General Settings" msgstr "" -#: ../cache/locales.php:37 +#: [general]theme msgid "Theme" msgstr "" -#: ../cache/locales.php:38 +#: [general]language msgid "Default language" msgstr "" -#: ../cache/locales.php:39 -msgid "Environment" -msgstr "" - -#: ../cache/locales.php:40 +#: [general]log_verbosity msgid "Log verbosity" msgstr "" -#: ../cache/locales.php:41 +#: [general]timezone msgid "Server Timezone" msgstr "Server tijdzone" -#: ../cache/locales.php:42 +#: [general]limit msgid "User folder size limit (in bytes)" msgstr "" -#: ../cache/locales.php:43 +#: [websocket]title msgid "WebSocket Configuration" msgstr "" -#: ../cache/locales.php:44 +#: [websocket]info msgid "Enter here a valid WebSocket URI in the form" msgstr "" -#: ../cache/locales.php:45 +#: [websocket]label msgid "WebSocket URI" msgstr "" -#: ../cache/locales.php:46 -msgid "" -"If you change the URI, please restart the daemon to reload the configuration" +#: [websocket]save_info +msgid "If you change the URI, please restart the daemon to reload the configuration" msgstr "" -#: ../cache/locales.php:47 +#: [websocket]publics msgid "Public WebSockets" msgstr "" -#: ../cache/locales.php:48 +#: [credentials]title msgid "Administration Credential" msgstr "" -#: ../cache/locales.php:49 +#: [credentials]info msgid "Change the default credentials admin/password" msgstr "" -#: ../cache/locales.php:52 +#: [credentials]re_password msgid "Retype password" msgstr "" -#: ../cache/locales.php:53 +#: [whitelist]title msgid "Whitelist - XMPP Server" msgstr "" -#: ../cache/locales.php:54 -msgid "" -"If you want to specify a list of authorized XMPP servers on your Movim pod " -"and forbid the connection on all the others please put their domain name " -"here, with comma (ex: movim.eu,jabber.fr)" +#: [whitelist]info1 +msgid "If you want to specify a list of authorized XMPP servers on your Movim pod and forbid the connection on all the others please put their domain name here, with comma (ex: movim.eu,jabber.fr)" msgstr "" -#: ../cache/locales.php:55 -msgid "" -"Leave this field blank if you allow the access to all the XMPP accounts." -msgstr "" -"Verlaat dit onbeschreven veld als u de toegang tot alle XMPP-accounts " -"toestaat." +#: [whitelist]info2 +msgid "Leave this field blank if you allow the access to all the XMPP accounts." +msgstr "Verlaat dit onbeschreven veld als u de toegang tot alle XMPP-accounts toestaat." -#: ../cache/locales.php:56 +#: [whitelist]label msgid "List of whitelisted XMPP servers" msgstr "" -#: ../cache/locales.php:57 ../cache/locales.php:61 +#: [information]title +#, fuzzy +msgctxt "[information]title" msgid "Information Message" -msgstr "" +msgstr "Informatie over verbonden computer" -#: ../cache/locales.php:58 +#: [information]description msgid "Description" msgstr "" -#: ../cache/locales.php:59 +#: [information]info1 msgid "This message will be displayed on the login page" msgstr "Dit bericht zal worden vertoond op de loginpagina." -#: ../cache/locales.php:60 -msgid "Leave this field blank if you don't want to show any message." +#: [information]info2 +#, fuzzy +msgid "Leave this field blank if you dont want to show any message." msgstr "Verlaat dit onbeschreven veld als u geen enkel bericht wil tonen." -#: ../cache/locales.php:62 +#: [information]label +#, fuzzy +msgctxt "[information]label" +msgid "Information Message" +msgstr "Informatie over verbonden computer" + +#: [log]empty msgid "Empty" msgstr "" -#: ../cache/locales.php:63 +#: [log]syslog msgid "Syslog" msgstr "" -#: ../cache/locales.php:64 +#: [log]syslog_files msgid "Syslog and files" msgstr "" -#: ../cache/locales.php:65 +#: [rewrite]title msgid "URL Rewriting" msgstr "" -#: ../cache/locales.php:66 +#: [rewrite]info msgid "The URL Rewriting can be enabled" msgstr "" -#: ../cache/locales.php:67 +#: [admin]compatibility msgid "General Overview" msgstr "" -#: ../cache/locales.php:68 -msgid "" -"Movim has found some issues or things that need to be fixed or improved" +#: [compatibility]info +msgid "Movim has found some issues or things that need to be fixed or improved" msgstr "" -#: ../cache/locales.php:69 -#, php-format +#: [compatibility]php1 msgid "Update your PHP-Version: %s" msgstr "" -#: ../cache/locales.php:70 +#: [compatibility]php2 msgid "Required: 5.3.0" msgstr "" -#: ../cache/locales.php:71 +#: [compatibility]curl msgid "Install the php5-curl library" msgstr "" -#: ../cache/locales.php:72 +#: [compatibility]imagick msgid "Install the php5-imagick library" msgstr "" -#: ../cache/locales.php:73 +#: [compatibility]gd msgid "Install the php5-gd library" msgstr "" -#: ../cache/locales.php:74 -msgid "Read and write rights for the webserver in Movim's root directory" -msgstr "" +#: [compatibility]rights +#, fuzzy +msgid "Read and write rights for the webserver in Movims root directory" +msgstr "Enable de lees en schrijfrechten in Movim`s root folder" -#: ../cache/locales.php:75 +#: [compatibility]rewrite msgid "The URL Rewriting support is currently disabled" msgstr "" -#: ../cache/locales.php:76 +#: [compatibility]db msgid "The database need to be updated, go to the database panel to fix this" msgstr "" -#: ../cache/locales.php:77 -msgid "" -"WebSocket connection error, check if the Movim Daemon is running and is " -"reacheable" +#: [compatibility]websocket +msgid "WebSocket connection error, check if the Movim Daemon is running and is reachable" msgstr "" -#: ../cache/locales.php:78 -msgid "" -"XMPP Websocket connection error, please check the validity of the URL given " -"in the General Configuration" +#: [compatibility]xmpp_websocket +msgid "XMPP Websocket connection error, please check the validity of the URL given in the General Configuration" msgstr "" -#: ../cache/locales.php:79 +#: [schema]browser msgid "Browser" msgstr "" -#: ../cache/locales.php:80 +#: [schema]movim msgid "Movim Core" msgstr "" -#: ../cache/locales.php:81 +#: [schema]daemon msgid "Movim Daemon" msgstr "" -#: ../cache/locales.php:84 +#: [schema]xmpp msgid "XMPP" msgstr "" -#: ../cache/locales.php:86 -#, php-format -msgid "" -"Here you can register your pod on the official %sMovim API%s and be listed " -"on %sthe pods page%s." +#: [api]info +msgid "Here you can register your pod on the official %sMovim API%s and be listed on %sthe pods page%s." msgstr "" -#: ../cache/locales.php:87 +#: [api]register msgid "Your pod is not registered on the API" msgstr "" -#: ../cache/locales.php:88 +#: [api]registered msgid "Your pod is registered on the API" msgstr "" -#: ../cache/locales.php:89 +#: [api]wait msgid "Your pod is not yet validated" msgstr "" -#: ../cache/locales.php:90 +#: [api]validated msgid "Your pod is validated" msgstr "" -#: ../cache/locales.php:91 -msgid "" -"You asked to be removed from the API, this request will be processed in a " -"couple of hours" +#: [api]unregister +msgid "You asked to be removed from the API, this request will be processed in a couple of hours" msgstr "" -#: ../cache/locales.php:92 ../cache/locales.php:147 +#: [api]conf_updated [config]updated msgid "Configuration updated" msgstr "" -#: ../cache/locales.php:93 +#: [avatar]file msgid "File" msgstr "" -#: ../cache/locales.php:94 +#: [avatar]use_it msgid "Use it" msgstr "" -#: ../cache/locales.php:95 +#: [avatar]webcam msgid "Webcam" msgstr "Webcam" -#: ../cache/locales.php:96 +#: [avatar]cheese msgid "Cheese !" msgstr "Lach !" -#: ../cache/locales.php:97 +#: [avatar]snapshot msgid "Take a webcam snapshot" msgstr "Neem een webcamfoto" -#: ../cache/locales.php:98 +#: [avatar]updated msgid "Avatar Updated" msgstr "Profielfoto geüpdated" -#: ../cache/locales.php:99 +#: [avatar]not_updated msgid "Avatar Not Updated" msgstr "Profielfoto niet geüpdated" -#: ../cache/locales.php:100 ../cache/locales.php:415 -#, php-format +#: [blog]title [feed]title msgid "%s's feed" msgstr "" -#: ../cache/locales.php:101 +#: [blog]empty msgid "This user has not posted anything right now" msgstr "" -#: ../cache/locales.php:102 +#: [title]conferences msgid "Conferences" msgstr "Conferenties" -#: ../cache/locales.php:103 ../cache/locales.php:193 ../cache/locales.php:217 -#: ../cache/locales.php:468 +#: [title]groups [group]empty_title [menu]groups [page]groups msgid "Groups" msgstr "Groepen" -#: ../cache/locales.php:104 +#: [chatroom]add msgid "Add a new Chat Room" msgstr "Voeg een nieuwe chatroom toe" -#: ../cache/locales.php:105 ../cache/locales.php:368 +#: [chatroom]id [chatrooms]id msgid "Chat Room ID" msgstr "Chatroom ID" -#: ../cache/locales.php:106 ../cache/locales.php:116 ../cache/locales.php:156 -#: ../cache/locales.php:361 ../cache/locales.php:369 ../cache/locales.php:424 +#: [chatroom]name +#, fuzzy +msgctxt "[chatroom]name" msgid "Name" msgstr "Naam" -#: ../cache/locales.php:107 ../cache/locales.php:157 ../cache/locales.php:371 -#: ../cache/locales.php:425 +#: [chatroom]nickname [general]nickname [chatrooms]nickname msgid "Nickname" msgstr "bijnaam" -#: ../cache/locales.php:108 +#: [chatroom]autojoin_label msgid "Do you want do join automaticaly this Chat Room ?" msgstr "" -#: ../cache/locales.php:109 ../cache/locales.php:372 +#: [chatroom]bad_id [chatrooms]bad_id msgid "Bad Chatroom ID" msgstr "" -#: ../cache/locales.php:110 ../cache/locales.php:373 +#: [chatroom]empty_name [chatrooms]empty_name msgid "Empty name" msgstr "Lege naam" -#: ../cache/locales.php:111 ../cache/locales.php:380 +#: [bookmarks]updated msgid "Bookmarks updated" msgstr "Favoriet bijgewerkt" -#: ../cache/locales.php:112 -msgid "An error occured : " +#: [bookmarks]error +#, fuzzy +msgid "An error occured :" msgstr "Er is een fout opgetreden : " -#: ../cache/locales.php:113 +#: [bookmarks]configure msgid "Configure" msgstr "" -#: ../cache/locales.php:114 +#: [url]add msgid "Add a new URL" msgstr "" -#: ../cache/locales.php:115 +#: [url]url msgid "URL" msgstr "" -#: ../cache/locales.php:117 +#: [url]name +#, fuzzy +msgctxt "[url]name" +msgid "Name" +msgstr "Naam" + +#: [message]published msgid "Message Published" msgstr "Bericht gepubliceerd" -#: ../cache/locales.php:118 ../cache/locales.php:138 +#: [message]encrypted msgid "Encrypted message" msgstr "" -#: ../cache/locales.php:119 +#: [message]composing [chats]composing msgid "Composing..." msgstr "Bezig met samenstellen..." -#: ../cache/locales.php:120 +#: [message]paused [chats]paused msgid "Paused..." msgstr "" -#: ../cache/locales.php:121 +#: [message]gone msgid "Contact gone" msgstr "" -#: ../cache/locales.php:122 -#, php-format +#: [chat]attention msgid "%s needs your attention" msgstr "%s heeft uw aandacht nodig" -#: ../cache/locales.php:123 +#: [chat]placeholder msgid "Your message here..." msgstr "" -#: ../cache/locales.php:124 +#: [chat]smileys msgid "Smileys" msgstr "" -#: ../cache/locales.php:125 ../cache/locales.php:139 +#: [chat]empty_title [button]chat msgid "Chat" msgstr "Chat" -#: ../cache/locales.php:126 +#: [chat]empty_text msgid "Discuss with your contacts" msgstr "" -#: ../cache/locales.php:127 -msgid "Members" -msgstr "" - -#: ../cache/locales.php:128 ../cache/locales.php:376 -msgid "Connected to the chatroom" -msgstr "Verbonden met de chatroom" - -#: ../cache/locales.php:129 ../cache/locales.php:377 -msgid "Disconnected from the chatroom" -msgstr "" - -#: ../cache/locales.php:130 ../cache/locales.php:200 ../cache/locales.php:469 -msgid "Configuration" -msgstr "Configuratie" - -#: ../cache/locales.php:131 -msgid "Configuration saved" -msgstr "" - -#: ../cache/locales.php:132 -msgid "Subject" -msgstr "" - -#: ../cache/locales.php:133 -msgid "Subject changed" -msgstr "" - -#: ../cache/locales.php:134 -msgid "Open a new conversation by clicking on the plus button bellow" -msgstr "" - -#: ../cache/locales.php:135 -msgid "Chat with a contact" -msgstr "" - -#: ../cache/locales.php:136 +#: [chat]frequent [chats]frequent msgid "Frequent contacts" msgstr "" -#: ../cache/locales.php:137 +#: [chatroom]members +msgid "Members" +msgstr "" + +#: [chatroom]connected [chatrooms]connected +msgid "Connected to the chatroom" +msgstr "Verbonden met de chatroom" + +#: [chatroom]disconnected [chatrooms]disconnected +msgid "Disconnected from the chatroom" +msgstr "" + +#: [chatroom]config [group]configuration [page]configuration +msgid "Configuration" +msgstr "Configuratie" + +#: [chatroom]config_saved +msgid "Configuration saved" +msgstr "" + +#: [chatroom]subject +msgid "Subject" +msgstr "" + +#: [chatroom]subject_changed +msgid "Subject changed" +msgstr "" + +#: [chats]empty_title +msgid "No chats yet..." +msgstr "" + +#: [chats]empty +msgid "Open a new conversation by clicking on the plus button bellow or visit the Contacts page." +msgstr "" + +#: [chats]add +msgid "Chat with a contact" +msgstr "" + +#: [chats]more msgid "Load more contacts" msgstr "" -#: ../cache/locales.php:140 -msgid "General" -msgstr "" - -#: ../cache/locales.php:141 -msgid "Language" -msgstr "Taal" - -#: ../cache/locales.php:142 -msgid "Roster display" -msgstr "" - -#: ../cache/locales.php:143 -msgid "Show the offline contacts" -msgstr "" - -#: ../cache/locales.php:144 -msgid "Hide the offline contacts" -msgstr "" - -#: ../cache/locales.php:145 -msgid "Appearence" -msgstr "" - -#: ../cache/locales.php:146 -msgid "This configuration is shared wherever you are connected !" -msgstr "Deze configuratie is overal gepubliceerd waar u verbonden kan zijn !" - -#: ../cache/locales.php:148 -msgid "Notify on incoming message" -msgstr "" - -#: ../cache/locales.php:149 -msgid "Use desktop notifications" -msgstr "" - -#: ../cache/locales.php:150 +#: [title]data msgid "Data" msgstr "" -#: ../cache/locales.php:151 +#: [title]cache msgid "Cache" msgstr "" -#: ../cache/locales.php:152 ../cache/locales.php:218 ../cache/locales.php:466 +#: [title]contacts [menu]contacts [page]contacts msgid "Contacts" msgstr "" -#: ../cache/locales.php:153 ../cache/locales.php:480 +#: [title]posts [page]posts msgid "Posts" msgstr "" -#: ../cache/locales.php:154 +#: [title]messages msgid "Messages" msgstr "" -#: ../cache/locales.php:155 ../cache/locales.php:423 +#: [config]general +msgid "General" +msgstr "" + +#: [config]language +msgid "Language" +msgstr "Taal" + +#: [config]roster +msgid "Roster display" +msgstr "" + +#: [config]roster_show +msgid "Show the offline contacts" +msgstr "" + +#: [config]roster_hide +msgid "Hide the offline contacts" +msgstr "" + +#: [config]appearence +msgid "Appearence" +msgstr "" + +#: [config]info +#, fuzzy +msgid "This configuration is shared wherever you are connected" +msgstr "Deze configuratie is overal gepubliceerd waar u verbonden kan zijn !" + +#: [notifications]message +msgid "Notify on incoming message" +msgstr "" + +#: [notifications]desktop +msgid "Use desktop notifications" +msgstr "" + +#: [general]legend [general]general_title msgid "General Informations" msgstr "Algemene informatie" -#: ../cache/locales.php:158 ../cache/locales.php:427 +#: [general]name [public_groups]name [chatrooms]name +msgid "Name" +msgstr "Naam" + +#: [general]date_of_birth msgid "Date of Birth" msgstr "Geboortedatum" -#: ../cache/locales.php:159 ../cache/locales.php:428 +#: [general]gender msgid "Gender" msgstr "Geslacht" -#: ../cache/locales.php:160 ../cache/locales.php:429 +#: [general]marital msgid "Marital Status" msgstr "Burgerlijke staat" -#: ../cache/locales.php:161 ../cache/locales.php:426 +#: [general]email msgid "Email" msgstr "E-mail" -#: ../cache/locales.php:162 ../cache/locales.php:430 +#: [general]website msgid "Website" msgstr "Website" -#: ../cache/locales.php:163 ../cache/locales.php:431 +#: [general]about msgid "About Me" msgstr "Over Mij" -#: ../cache/locales.php:164 +#: [general]accounts msgid "Other Accounts" msgstr "" -#: ../cache/locales.php:165 +#: [general]tune msgid "Is Listening" msgstr "" -#: ../cache/locales.php:166 ../cache/locales.php:432 +#: [position]legend [position]position_title msgid "Geographic Position" msgstr "Geografische Positie" -#: ../cache/locales.php:167 ../cache/locales.php:433 +#: [position]locality msgid "Locality" msgstr "Plaats" -#: ../cache/locales.php:168 ../cache/locales.php:434 +#: [position]country msgid "Country" msgstr "Land" -#: ../cache/locales.php:169 +#: [mood]title msgid "Mood" msgstr "Stemming" -#: ../cache/locales.php:170 +#: [mood]im msgid "I'm " msgstr "Ik ben " -#: ../cache/locales.php:171 +#: [listen]title msgid "Listening" msgstr "Luisteren" -#: ../cache/locales.php:173 +#: [last]title msgid "Last seen" msgstr "Laatst gezien" -#: ../cache/locales.php:174 +#: [client]title msgid "Client Informations" msgstr "Informatie over verbonden computer" -#: ../cache/locales.php:175 +#: [explore]last_registered msgid "Last registered" msgstr "Laatst geregistreerd" -#: ../cache/locales.php:176 +#: [explore]explore msgid "Find some new friends" msgstr "" -#: ../cache/locales.php:177 ../cache/locales.php:533 +#: [edit]title [button]edit msgid "Edit" msgstr "" -#: ../cache/locales.php:178 +#: [edit]alias msgid "Alias" msgstr "Alias" -#: ../cache/locales.php:179 +#: [edit]group msgid "Group" msgstr "Groep" -#: ../cache/locales.php:180 ../cache/locales.php:400 +#: [edit]updated [roster]updated msgid "Contact updated" msgstr "Contactpersoon geüpdated" -#: ../cache/locales.php:181 +#: [delete]title msgid "Are you sure?" msgstr "" -#: ../cache/locales.php:182 -msgid "" -"You are going to delete one of your contacts, please confirm your action" +#: [delete]text +msgid "You are going to delete one of your contacts, please confirm your action" msgstr "" -#: ../cache/locales.php:183 -#, php-format +#: [age]years msgid "%s years" msgstr "" -#: ../cache/locales.php:184 +#: [blog]last msgid "Last public post" msgstr "" -#: ../cache/locales.php:185 +#: [subscription]to +#, fuzzy +msgid "You can see this contact status" +msgstr "Verwijder dit contact" + +#: [subscription]to_button +msgid "Share my status" +msgstr "" + +#: [subscription]to_text +msgid "But this contact cannot see yours" +msgstr "" + +#: [subscription]from +msgid "You are not subscribed to this contact" +msgstr "" + +#: [subscription]from_button +msgid "Ask to subscribe" +msgstr "" + +#: [subscription]from_text +msgid "But this contact can still see if you are online" +msgstr "" + +#: [subscription]nil +#, fuzzy +msgid "No subscriptions" +msgstr "Haal de aanmeldingen op" + +#: [subscription]nil_button +msgid "Invite" +msgstr "" + +#: [subscription]nil_text +msgid "This contact is in your contact list but there is no subscriptions between the two accounts" +msgstr "" + +#: [group]subscribe msgid "Subscribe" msgstr "" -#: ../cache/locales.php:186 +#: [group]subscribed msgid "Subscribed" msgstr "" -#: ../cache/locales.php:187 +#: [group]unsubscribe msgid "Unsubscribe" msgstr "" -#: ../cache/locales.php:188 +#: [group]unsubscribe_text msgid "You are going to unsubscribe from this Group" msgstr "" -#: ../cache/locales.php:189 +#: [group]unsubscribed msgid "Unsubscribed" msgstr "" -#: ../cache/locales.php:190 +#: [group]share_label msgid "Make your membership to this group public to your friends" msgstr "" -#: ../cache/locales.php:191 +#: [group]label_label msgid "Give a label for this group" msgstr "" -#: ../cache/locales.php:192 +#: [group]sure msgid "Are you sure ?" msgstr "" -#: ../cache/locales.php:194 +#: [group]empty_text msgid "Discover, follow and share" msgstr "" -#: ../cache/locales.php:195 +#: [group]empty msgid "Something bad happened to this group" msgstr "" -#: ../cache/locales.php:196 +#: [group]config_saved msgid "Group configuration saved" msgstr "Groep-configuratie opgeslagen" -#: ../cache/locales.php:197 +#: [group]delete_title msgid "Delete the group" msgstr "" -#: ../cache/locales.php:198 -msgid "" -"You are going to delete the following group. Please confirm your action." +#: [group]delete_text +msgid "You are going to delete the following group. Please confirm your action." msgstr "" -#: ../cache/locales.php:199 -msgid "" -"It seems that this group doesn't exists anymore. Do you want to remove it " -"from your subscriptions?" +#: [group]delete_clean_text +msgid "It seems that this group doesn't exists anymore. Do you want to remove it from your subscriptions?" msgstr "" -#: ../cache/locales.php:201 ../cache/locales.php:408 +#: [group]counter +msgid "%s groups on this server" +msgstr "" + +#: [group]subscriptions [statistics]subscriptions msgid "Subscriptions" msgstr "" -#: ../cache/locales.php:202 ../cache/locales.php:290 +#: [group]servers +#, fuzzy +msgid "Groups servers" +msgstr "Groepen" + +#: [group]search_server +msgid "Search for a new server" +msgstr "" + +#: [group]help_info1 +msgid "Groups are the perfect way to share posts about topics that you like with all the other Movim's users." +msgstr "" + +#: [group]help_info2 +msgid "Choose a server and a Group and subscribe to it using the %s button in the header. You can also create a new one using the %s button." +msgstr "" + +#: [group]help_info3 +msgid "Done? You can now publish a new post in the Group by using the %s button." +msgstr "" + +#: [group]help_info4 +msgid "You will find a list of all your subscribed Groups in My Subscriptions and receive instantly all the new incoming posts in the %sNews%s page." +msgstr "" + +#: [groups]empty_title msgid "Hello" msgstr "" -#: ../cache/locales.php:203 ../cache/locales.php:225 ../cache/locales.php:291 +#: [groups]contact_post [hello]contact_post [menu]contact_post msgid "Contact post" msgstr "" -#: ../cache/locales.php:204 -msgid "" -"You don't have any subscriptions yet, select a group server above to start " -"exploring." +#: [groups]empty_text1 +msgid "You don't have any subscriptions yet, select a group server above to start exploring." msgstr "" -#: ../cache/locales.php:205 +#: [groups]empty_text2 msgid "Subscribe to your favorite feeds by bookmarking them." msgstr "" -#: ../cache/locales.php:206 +#: [groups]subscriptions msgid "My Subscriptions" msgstr "" -#: ../cache/locales.php:207 +#: [groups]add msgid "Create a new Group" msgstr "" -#: ../cache/locales.php:208 +#: [groups]name msgid "Group name" msgstr "" -#: ../cache/locales.php:209 +#: [groups]name_example msgid "My Little Pony - Fan Club" msgstr "My Little Pony - Fan Club" -#: ../cache/locales.php:210 +#: [groups]created msgid "Group created successfully" msgstr "" -#: ../cache/locales.php:211 +#: [groups]deleted msgid "Group deleted successfully" msgstr "" -#: ../cache/locales.php:212 +#: [groups]name_error msgid "Please provide a valid group name (4 characters minimum)" msgstr "" -#: ../cache/locales.php:213 +#: [groups]no_creation msgid "You cannot create a new Group on this server" msgstr "" -#: ../cache/locales.php:214 -#, php-format +#: [groups]sub msgid "%s subscribers" msgstr "" -#: ../cache/locales.php:215 -#, php-format +#: [groups]num msgid "%s posts" msgstr "" -#: ../cache/locales.php:216 +#: [groups]disco_error +msgid "This server doesn't exists" +msgstr "" + +#: [menu]all msgid "All" msgstr "" -#: ../cache/locales.php:219 +#: [menu]refresh msgid "Refresh all the streams" msgstr "" -#: ../cache/locales.php:220 ../cache/locales.php:402 -msgid "Search" -msgstr "Zoeken" +#: [roster]search +#, fuzzy +msgid "Search in your contacts" +msgstr "Gedeeld met één contact" -#: ../cache/locales.php:221 +#: [hello]active_contacts +#, fuzzy +msgid "Active contacts" +msgstr "Acties" + +#: [hello]chat msgid "Go on the Chat page" msgstr "" -#: ../cache/locales.php:222 -msgid "Read all theses articles on the News page" -msgstr "" - -#: ../cache/locales.php:223 -msgid "Visit your public blog" -msgstr "" - -#: ../cache/locales.php:224 -msgid "See your public posts and share them with all your contacts" -msgstr "" - -#: ../cache/locales.php:226 -msgid "Universal share button" -msgstr "" - -#: ../cache/locales.php:227 -msgid "" -"Bookmark or drag and drop the following button in your toolbar and use it on " -"all the pages you want to share on Movim" -msgstr "" - -#: ../cache/locales.php:228 -msgid "Share on Movim" -msgstr "" - -#: ../cache/locales.php:229 -msgid "Frequently Asked Questions" -msgstr "" - -#: ../cache/locales.php:230 -msgid "What do the little banners refer to ?" -msgstr "Waar verwijzen de kleine banners naar ?" - -#: ../cache/locales.php:231 -msgid "" -"Thanks to these five little banners, you can quickly identitfy the level of " -"confdentiality applied to the information you provide." -msgstr "" -"Bedankt voor deze vijf kleine banners, kun je kort toelichten wat de mate " -"van betrouwbaarheid is van de informatie die je beschikbaar stelt." - -#: ../cache/locales.php:232 -msgid "White, only you can see the information" -msgstr "Wit, alleen jij kan deze informatie zien" - -#: ../cache/locales.php:233 -msgid "Green, you have chosen some contacts who can see your information" -msgstr "" -"Groen, je hebt een aantal contacten gekozen die jouw gegevens kunnen zien" - -#: ../cache/locales.php:234 -msgid "Orange, all your contact list can see your information" -msgstr "Oranje, alle contactlijsten kunnen je informatie zien" - -#: ../cache/locales.php:235 -msgid "Red, everybody in the XMPP network can see your information" -msgstr "Rood, iedereen in het XMPP-netwerk kan je gegevens zien" - -#: ../cache/locales.php:236 -msgid "Black, the whole Internet can see your information" -msgstr "Zwart, iedereen op het internet kan je gegevens zien" - -#: ../cache/locales.php:237 -msgid "Looking for some documentation ?" -msgstr "" - -#: ../cache/locales.php:238 -msgid "Read the Wiki" -msgstr "" - -#: ../cache/locales.php:239 -msgid "Talk with us by email ?" -msgstr "" - -#: ../cache/locales.php:240 -msgid "Join the Mailing List" -msgstr "" - -#: ../cache/locales.php:241 -msgid "Chat with the team ?" -msgstr "" - -#: ../cache/locales.php:242 -msgid "Join the Chatroom" -msgstr "" - -#: ../cache/locales.php:243 -msgid "Location node created" -msgstr "" - -#: ../cache/locales.php:244 -msgid "Bookmark node created" -msgstr "" - -#: ../cache/locales.php:245 -msgid "Profile node created" -msgstr "" - -#: ../cache/locales.php:246 -msgid "Avatar node created" -msgstr "" - -#: ../cache/locales.php:247 -msgid "Subscriptions node created" -msgstr "" - -#: ../cache/locales.php:248 -msgid "Microblog node created" -msgstr "" - -#: ../cache/locales.php:249 -msgid "Location" -msgstr "Locatie" - -#: ../cache/locales.php:250 -msgid "Wrong position" -msgstr "Verkeerde positie" - -#: ../cache/locales.php:251 -msgid "Location updated" -msgstr "Locatie geüpdated" - -#: ../cache/locales.php:252 -msgid "Update my position" -msgstr "" - -#: ../cache/locales.php:253 -msgid "Wrong username" -msgstr "" - -#: ../cache/locales.php:254 -msgid "Invalid JID" -msgstr "" - -#: ../cache/locales.php:255 -msgid "Empty Challenge from the server" -msgstr "" - -#: ../cache/locales.php:256 -msgid "XMPP Domain error, your account is not a correct Jabber ID" -msgstr "" - -#: ../cache/locales.php:257 -msgid "Some data are missing !" -msgstr "Sommige gegevens zijn verloren !" - -#: ../cache/locales.php:258 -msgid "Wrong password" -msgstr "Foutief wachtwoord" - -#: ../cache/locales.php:259 -msgid "Internal server error" -msgstr "" - -#: ../cache/locales.php:260 -msgid "Session error" -msgstr "" - -#: ../cache/locales.php:261 -msgid "Account successfully created" -msgstr "Account succesvol aangemaakt" - -#: ../cache/locales.php:262 ../cache/locales.php:271 -msgid "Your XMPP server is unauthorized" -msgstr "" - -#: ../cache/locales.php:263 -msgid "The server takes too much time to respond" -msgstr "De server neemt te veel tijd om te antwoorden" - -#: ../cache/locales.php:264 -msgid "Your web browser is too old to use with Movim." -msgstr "Je browser is te oud om met Movim te gebruiken." - -#: ../cache/locales.php:265 -msgid "" -"Movim cannot talk with the server, please try again later (Websocket " -"connection error)" -msgstr "" - -#: ../cache/locales.php:266 -msgid "Impossible login" -msgstr "" - -#: ../cache/locales.php:267 -msgid "Oops!" -msgstr "" - -#: ../cache/locales.php:268 ../cache/locales.php:449 ../cache/locales.php:455 -msgid "Unknown error" -msgstr "Onbekende fout" - -#: ../cache/locales.php:269 -msgid "Invalid username format" -msgstr "" - -#: ../cache/locales.php:270 -msgid "Invalid password format" -msgstr "" - -#: ../cache/locales.php:272 -msgid "A Movim session is already open on an other device" -msgstr "" - -#: ../cache/locales.php:273 -msgid "Movim failed to authenticate. You entered wrong data" -msgstr "" - -#: ../cache/locales.php:274 -msgid "Authentication mechanism not supported by Movim" -msgstr "" - -#: ../cache/locales.php:275 -msgid "The XMPP authentification failed" -msgstr "" - -#: ../cache/locales.php:276 -#, php-format -msgid "" -"You can login with Facebook (chat only) using %syour.id@chat.facebook.com%s " -"and your password" -msgstr "" -"U kunt inloggen met Facebook (alleen chat), gebruik " -"%syour.id@chat.facebook.com%s en uw wachtwoord" - -#: ../cache/locales.php:277 -#, php-format -msgid "%sGmail accounts are also compatible%s but are not fully supported" -msgstr "" - -#: ../cache/locales.php:278 -msgid "You can login using your favorite Jabber account" -msgstr "" - -#: ../cache/locales.php:279 -msgid "or with our demonstration account" -msgstr "" - -#: ../cache/locales.php:280 ../cache/locales.php:435 -msgid "Accounts" -msgstr "" - -#: ../cache/locales.php:281 -msgid "My address" -msgstr "Mijn adres" - -#: ../cache/locales.php:283 -msgid "Create one !" -msgstr "Maak er een aan !" - -#: ../cache/locales.php:284 -msgid "No account yet ?" -msgstr "Nog geen account ?" - -#: ../cache/locales.php:285 -msgid "Another account" -msgstr "" - -#: ../cache/locales.php:286 -msgid "You can login with accounts from theses servers" -msgstr "" - -#: ../cache/locales.php:287 -msgid "Connected" -msgstr "" - -#: ../cache/locales.php:288 -msgid "Population" -msgstr "" - -#: ../cache/locales.php:289 -msgid "Bad nickname (between 4 and 40 characters)" -msgstr "" - -#: ../cache/locales.php:292 -msgid "" -"Welcome on your news feed, here you will see all the posts published in the " -"groups you have subscribed." -msgstr "" - -#: ../cache/locales.php:293 -msgid "Refreshing all the streams" -msgstr "" - -#: ../cache/locales.php:294 -msgid "This post is public" -msgstr "" - -#: ../cache/locales.php:295 -msgid "Manage your members" -msgstr "" - -#: ../cache/locales.php:296 -msgid "Get the members" -msgstr "" - -#: ../cache/locales.php:297 -msgid "Affiliations saved" -msgstr "" - -#: ../cache/locales.php:298 -msgid "Manage your subscriptions" -msgstr "Beheer je aanmeldingen" - -#: ../cache/locales.php:299 -msgid "Manage the subscriptions" -msgstr "Beheer de aanmeldingen" - -#: ../cache/locales.php:300 -msgid "Get the subscriptions" -msgstr "Haal de aanmeldingen op" - -#: ../cache/locales.php:301 -msgid "Subscriptions saved" -msgstr "" - -#: ../cache/locales.php:302 -msgid "Pending Invitations" -msgstr "" - -#: ../cache/locales.php:303 -#, php-format -msgid "%s wants to talk with you" -msgstr "" - -#: ../cache/locales.php:304 -msgid "Manage" -msgstr "Beheren" - -#: ../cache/locales.php:305 ../cache/locales.php:338 -msgid "News Feed" -msgstr "" - -#: ../cache/locales.php:306 ../cache/locales.php:339 -msgid "Discover and register to the groups you are interested in" -msgstr "" - -#: ../cache/locales.php:307 ../cache/locales.php:340 ../cache/locales.php:482 -msgid "Preview" -msgstr "" - -#: ../cache/locales.php:308 ../cache/locales.php:341 ../cache/locales.php:478 -msgid "Help" -msgstr "Help" - -#: ../cache/locales.php:309 ../cache/locales.php:342 -msgid "More help" -msgstr "" - -#: ../cache/locales.php:310 ../cache/locales.php:343 -msgid "Markdown syntax manual" -msgstr "" - -#: ../cache/locales.php:311 ../cache/locales.php:344 ../cache/locales.php:681 -msgid "Title" -msgstr "" - -#: ../cache/locales.php:312 ../cache/locales.php:345 -msgid "Content" -msgstr "" - -#: ../cache/locales.php:313 ../cache/locales.php:346 -msgid "Link" -msgstr "Link" - -#: ../cache/locales.php:314 ../cache/locales.php:347 -msgid "Tags" -msgstr "" - -#: ../cache/locales.php:315 ../cache/locales.php:348 -msgid "Please enter a valid url" -msgstr "" - -#: ../cache/locales.php:316 ../cache/locales.php:349 -msgid "No content to preview" -msgstr "" - -#: ../cache/locales.php:317 ../cache/locales.php:350 ../cache/locales.php:687 -msgid "No content" -msgstr "Geen inhoud" - -#: ../cache/locales.php:318 ../cache/locales.php:351 -msgid "Post published" -msgstr "" - -#: ../cache/locales.php:319 ../cache/locales.php:352 -msgid "Post deleted" -msgstr "" - -#: ../cache/locales.php:320 ../cache/locales.php:353 -msgid "This picture will be added to your gallery" -msgstr "" - -#: ../cache/locales.php:321 ../cache/locales.php:354 -msgid "What's Hot" -msgstr "" - -#: ../cache/locales.php:322 ../cache/locales.php:355 -msgid "New post" -msgstr "" - -#: ../cache/locales.php:323 ../cache/locales.php:357 -msgid "" -"You can also use services like Imgur or Flickr to host your picture and " -"paste the link here." -msgstr "" - -#: ../cache/locales.php:324 -#, php-format -msgid "This is a re-post from %s" -msgstr "" - -#: ../cache/locales.php:325 -#, php-format -msgid "See %s profile" -msgstr "" - -#: ../cache/locales.php:326 -msgid "Publish this post on your public feed?" -msgstr "" - -#: ../cache/locales.php:327 -msgid "Post published on your blog" -msgstr "" - -#: ../cache/locales.php:328 -msgid "Post removed from your blog" -msgstr "" - -#: ../cache/locales.php:329 ../cache/locales.php:701 -msgid "Delete this post" -msgstr "" - -#: ../cache/locales.php:330 -msgid "You are going to delete this post, please confirm your action" -msgstr "" - -#: ../cache/locales.php:331 -msgid "Comments disabled" -msgstr "" - -#: ../cache/locales.php:332 -msgid "Comment published" -msgstr "" - -#: ../cache/locales.php:333 -msgid "Disconnect" -msgstr "" - -#: ../cache/locales.php:334 -msgid "Your status here !" -msgstr "" - -#: ../cache/locales.php:335 -msgid "Status updated" -msgstr "" - -#: ../cache/locales.php:336 -msgid "Status" -msgstr "" - -#: ../cache/locales.php:337 -msgid "Presence" -msgstr "" - -#: ../cache/locales.php:356 -msgid "Publish" -msgstr "" - -#: ../cache/locales.php:358 -msgid "You cannot publish a post on this Group" -msgstr "" - -#: ../cache/locales.php:359 -msgid "" -"Some fields have been filled in. Do you still want to go back and loose " -"their content?" -msgstr "" - -#: ../cache/locales.php:360 -msgid "Shared" -msgstr "" - -#: ../cache/locales.php:362 -#, php-format -msgid "%s has been added to your public groups" -msgstr "" - -#: ../cache/locales.php:363 -#, php-format -msgid "%s has been removed from your public groups" -msgstr "" - -#: ../cache/locales.php:364 -msgid "Add a chatroom" -msgstr "" - -#: ../cache/locales.php:365 -msgid "You don't have any chatroom yet." -msgstr "" - -#: ../cache/locales.php:366 -msgid "Add one by clicking on the add button in the header." -msgstr "" - -#: ../cache/locales.php:367 -msgid "Chatrooms" -msgstr "" - -#: ../cache/locales.php:370 -msgid "My Favorite Room" -msgstr "" - -#: ../cache/locales.php:374 -msgid "Remove a chatroom" -msgstr "" - -#: ../cache/locales.php:375 -msgid "" -"You are going to remove the following chatroom. Please confirm your action." -msgstr "" - -#: ../cache/locales.php:378 -msgid "Users in the room" -msgstr "" - -#: ../cache/locales.php:379 -msgid "Please enter a correct nickname (6 to 40 characters)" -msgstr "" - -#: ../cache/locales.php:381 -msgid "Public chatroom" -msgstr "" - -#: ../cache/locales.php:382 -msgid "Please provide a room address" -msgstr "" - -#: ../cache/locales.php:383 -msgid "You are currently logued as an anonymous user." -msgstr "" - -#: ../cache/locales.php:384 -msgid "" -"You can join using your own account or create one on the login page by " -"loging out using the cross in the top-right corner." -msgstr "" - -#: ../cache/locales.php:385 -#, php-format -msgid "Login on %s" -msgstr "" - -#: ../cache/locales.php:386 -msgid "Your nickname" -msgstr "" - -#: ../cache/locales.php:387 -msgid "Ungrouped" -msgstr "Groep opgeheven" - -#: ../cache/locales.php:388 -msgid "Show disconnected contacts" -msgstr "" - -#: ../cache/locales.php:389 -msgid "Hide disconnected contacts" -msgstr "" - -#: ../cache/locales.php:390 -#, php-format -msgid "Show group %s" -msgstr "" - -#: ../cache/locales.php:391 -#, php-format -msgid "Hide group %s" -msgstr "" - -#: ../cache/locales.php:392 -msgid "Please enter a valid Jabber ID" -msgstr "Vul een geldig Jabber ID in" - -#: ../cache/locales.php:393 -msgid "" -"No contacts ? You can add one using the + button bellow or going to the " -"Explore page" -msgstr "" - -#: ../cache/locales.php:394 -msgid "Show/Hide" -msgstr "" - -#: ../cache/locales.php:395 -msgid "Enter the Jabber ID of your contact." -msgstr "" - -#: ../cache/locales.php:396 -msgid "Press enter to validate." -msgstr "" - -#: ../cache/locales.php:397 -msgid "JID" -msgstr "" - -#: ../cache/locales.php:398 -msgid "Results" -msgstr "" - -#: ../cache/locales.php:399 -msgid "Contact added" -msgstr "" - -#: ../cache/locales.php:401 -msgid "Contact deleted" -msgstr "" - -#: ../cache/locales.php:403 -msgid "This is not a valid url" -msgstr "" - -#: ../cache/locales.php:404 -msgid "Sharing the URL" -msgstr "" - -#: ../cache/locales.php:405 -msgid "Statistics" -msgstr "" - -#: ../cache/locales.php:406 -msgid "Since" -msgstr "" - -#: ../cache/locales.php:407 -msgid "Sessions" -msgstr "" - -#: ../cache/locales.php:409 -msgid "Monthly Subscriptions" -msgstr "" - -#: ../cache/locales.php:410 -msgid "Monthly Subscriptions Cumulated" -msgstr "" - -#: ../cache/locales.php:412 -msgid "" -"Movim is a decentralized social network, before creating a new account you " -"need to choose a server to register." -msgstr "" - -#: ../cache/locales.php:413 -msgid "Your server here ?" -msgstr "" - -#: ../cache/locales.php:414 -msgid "Contact us to add yours to the officially supported servers list" -msgstr "" - -#: ../cache/locales.php:416 -msgid "No public feed for this contact" -msgstr "" - -#: ../cache/locales.php:417 -msgid "No contact specified" -msgstr "" - -#: ../cache/locales.php:418 ../cache/locales.php:473 -msgid "Profile" -msgstr "Profiel" - -#: ../cache/locales.php:419 -msgid "Profile Updated" -msgstr "Profiel bijgewerkt" - -#: ../cache/locales.php:420 -msgid "Profile Not Updated" -msgstr "" - -#: ../cache/locales.php:421 -msgid "Your profile is now public" -msgstr "" - -#: ../cache/locales.php:422 -msgid "Your profile is now restricted" -msgstr "" - -#: ../cache/locales.php:436 -msgid "Twitter" -msgstr "" - -#: ../cache/locales.php:437 -msgid "Skype" -msgstr "" - -#: ../cache/locales.php:438 -msgid "Yahoo" -msgstr "" - -#: ../cache/locales.php:439 -msgid "Privacy Level" -msgstr "Privacy-Niveau" - -#: ../cache/locales.php:440 -msgid "Is this profile public ?" -msgstr "Is dit profiel publiekelijk?" - -#: ../cache/locales.php:441 -msgid "" -"Please pay attention ! By making your profile public, all the information " -"listed above will be available for all the Movim users and on the whole " -"Internet." -msgstr "" -"Let op! Door je profiel publiek te maken zal alle bovenstaande informatie " -"beschikbaar zijn voor alle Movim-gebruikers and het hele internet." - -#: ../cache/locales.php:442 -msgid "Call" -msgstr "" - -#: ../cache/locales.php:443 -msgid "Hang up" -msgstr "" - -#: ../cache/locales.php:444 -msgid "Connection" -msgstr "" - -#: ../cache/locales.php:445 ../cache/locales.php:451 -msgid "Hung up" -msgstr "" - -#: ../cache/locales.php:446 ../cache/locales.php:452 -msgid "Your contact is busy" -msgstr "" - -#: ../cache/locales.php:447 ../cache/locales.php:453 -msgid "Declined" -msgstr "" - -#: ../cache/locales.php:448 ../cache/locales.php:454 -msgid "Remote application incompatible" -msgstr "" - -#: ../cache/locales.php:450 ../cache/locales.php:456 -msgid "Is calling you" -msgstr "" - -#: ../cache/locales.php:457 -msgid "You don't have javascript enabled. Good luck with that." -msgstr "" - -#: ../cache/locales.php:458 -msgid "" -"Movim is a kickass distributed social networking platform that protect your " -"privacy an comes with a set of awesome features." -msgstr "" - -#: ../cache/locales.php:459 -msgid "Administration" -msgstr "Beheer" - -#: ../cache/locales.php:460 -msgid "Home" -msgstr "Home" - -#: ../cache/locales.php:461 -msgid "Discover" -msgstr "" - -#: ../cache/locales.php:462 -msgid "Explore" -msgstr "Verkennen" - -#: ../cache/locales.php:463 -msgid "Account Creation" -msgstr "Account aanmaken" - -#: ../cache/locales.php:464 +#: [hello]news [page]news msgid "News" msgstr "Nieuws" -#: ../cache/locales.php:465 -msgid "Avatar" -msgstr "Avatar" - -#: ../cache/locales.php:467 -msgid "Chats" +#: [hello]news_page +msgid "Read all theses articles on the News page" msgstr "" -#: ../cache/locales.php:470 -msgid "Server" -msgstr "Server" - -#: ../cache/locales.php:471 -msgid "Public Groups" +#: [hello]blog_title +msgid "Visit your public blog" msgstr "" -#: ../cache/locales.php:472 -msgid "Viewer" -msgstr "Viewer" - -#: ../cache/locales.php:474 -msgid "Media" -msgstr "Media" - -#: ../cache/locales.php:475 -msgid "Blog" -msgstr "Blog" - -#: ../cache/locales.php:476 -msgid "About" +#: [hello]blog_text +msgid "See your public posts and share them with all your contacts" msgstr "" -#: ../cache/locales.php:477 -msgid "Login" +#: [hello]share_title +msgid "Universal share button" msgstr "" -#: ../cache/locales.php:479 -msgid "Feed" -msgstr "Feed" - -#: ../cache/locales.php:481 -msgid "Gallery" +#: [hello]share_text +msgid "Bookmark or drag and drop the following button in your toolbar and use it on all the pages you want to share on Movim" msgstr "" -#: ../cache/locales.php:483 -msgid "Visio-conference" +#: [hello]share_button +msgid "Share on Movim" msgstr "" -#: ../cache/locales.php:484 -msgid "Pods" +#: [help]faq +msgid "Frequently Asked Questions" msgstr "" -#: ../cache/locales.php:485 -msgid "Share" +#: [banner]title +msgid "What do the little banners refer to ?" +msgstr "Waar verwijzen de kleine banners naar ?" + +#: [banner]info1 +msgid "Thanks to these five little banners, you can quickly identitfy the level of confdentiality applied to the information you provide." +msgstr "Bedankt voor deze vijf kleine banners, kun je kort toelichten wat de mate van betrouwbaarheid is van de informatie die je beschikbaar stelt." + +#: [banner]white +msgid "White, only you can see the information" +msgstr "Wit, alleen jij kan deze informatie zien" + +#: [banner]green +msgid "Green, you have chosen some contacts who can see your information" +msgstr "Groen, je hebt een aantal contacten gekozen die jouw gegevens kunnen zien" + +#: [banner]orange +msgid "Orange, all your contact list can see your information" +msgstr "Oranje, alle contactlijsten kunnen je informatie zien" + +#: [banner]red +msgid "Red, everybody in the XMPP network can see your information" +msgstr "Rood, iedereen in het XMPP-netwerk kan je gegevens zien" + +#: [banner]black +msgid "Black, the whole Internet can see your information" +msgstr "Zwart, iedereen op het internet kan je gegevens zien" + +#: [wiki]question +msgid "Looking for some documentation ?" msgstr "" -#: ../cache/locales.php:486 -msgid "Room" +#: [wiki]button +msgid "Read the Wiki" msgstr "" -#: ../cache/locales.php:487 -#, php-format -msgid "Error: %s" -msgstr "Error: %s" - -#: ../cache/locales.php:488 -#, php-format -msgid "Cannot load file '%s'" -msgstr "Kan bestand %s niet laden" - -#: ../cache/locales.php:489 -#, php-format -msgid "Route error, please set all the parameters for the page %s" -msgstr "Routeerfout, plaats alle argumenten voor de pagina %s" - -#: ../cache/locales.php:490 -#, php-format -msgid "Requested widget '%s' doesn't exist." +#: [ml]question +msgid "Talk with us by email ?" msgstr "" -#: ../cache/locales.php:491 -#, php-format -msgid "Requested event '%s' not registered." +#: [ml]button +msgid "Join the Mailing List" msgstr "" -#: ../cache/locales.php:492 -msgid "Whoops!" +#: [chatroom]question +msgid "Chat with the team ?" msgstr "" -#: ../cache/locales.php:493 -msgid "It seem that you don't have any pictures here?" +#: [chatroom]button +msgid "Join the Chatroom" msgstr "" -#: ../cache/locales.php:494 -msgid "You can try to upload a couple by going to the Media page" +#: [init]location +msgid "Location node created" msgstr "" -#: ../cache/locales.php:495 -#, php-format -msgid "%s - About" +#: [init]bookmark +msgid "Bookmark node created" msgstr "" -#: ../cache/locales.php:496 -#, php-format -msgid "%s - Account" +#: [init]vcard4 +msgid "Profile node created" msgstr "" -#: ../cache/locales.php:497 -#, php-format -msgid "%s - Administration Panel" +#: [init]avatar +msgid "Avatar node created" msgstr "" -#: ../cache/locales.php:498 -#, php-format -msgid "%s - Blog" +#: [init]subscriptions +msgid "Subscriptions node created" msgstr "" -#: ../cache/locales.php:499 -#, php-format -msgid "%s - Configuration" -msgstr "%s - Configuratie" - -#: ../cache/locales.php:500 -#, php-format -msgid "%s - Discover" +#: [init]microblog +msgid "Microblog node created" msgstr "" -#: ../cache/locales.php:501 -#, php-format -msgid "%s - Explore" +#: [location]title +msgid "Location" +msgstr "Locatie" + +#: [location]wrong_postition +msgid "Wrong position" +msgstr "Verkeerde positie" + +#: [location]updated +msgid "Location updated" +msgstr "Locatie geüpdated" + +#: [location]update +msgid "Update my position" msgstr "" -#: ../cache/locales.php:502 -#, php-format -msgid "%s - Help Page" +#: [login_anonymous]bad_username +msgid "Bad nickname (between 4 and 40 characters)" msgstr "" -#: ../cache/locales.php:503 -#, php-format -msgid "%s - Login to Movim" -msgstr "%s - Inlogging bij Movim" - -#: ../cache/locales.php:504 -#, php-format -msgid "%s - Welcome to Movim" -msgstr "%s - Welkom bij Movim" - -#: ../cache/locales.php:505 -#, php-format -msgid "%s - Media" +#: [error]username +msgid "Wrong username" msgstr "" -#: ../cache/locales.php:506 -#, php-format -msgid "%s - News" +#: [error]jid +msgid "Invalid JID" msgstr "" -#: ../cache/locales.php:507 -#, php-format -msgid "%s - Group Configuration" +#: [error]empty_challenge +msgid "Empty Challenge from the server" msgstr "" -#: ../cache/locales.php:508 -#, php-format -msgid "%s - Group" +#: [error]dns +msgid "XMPP Domain error, your account is not a correct Jabber ID" msgstr "" -#: ../cache/locales.php:509 -#, php-format -msgid "%s - 404" +#: [error]data_missings +msgid "Some data are missing !" +msgstr "Sommige gegevens zijn verloren !" + +#: [error]wrong_password +msgid "Wrong password" +msgstr "Foutief wachtwoord" + +#: [error]internal +msgid "Internal server error" msgstr "" -#: ../cache/locales.php:510 -#, php-format -msgid "%s - Profile" +#: [error]session +msgid "Session error" msgstr "" -#: ../cache/locales.php:511 -#, php-format -msgid "%s - Server" +#: [error]account_created +msgid "Account successfully created" +msgstr "Account succesvol aangemaakt" + +#: [error]xmpp_unauthorized +msgctxt "[error]xmpp_unauthorized" +msgid "Your XMPP server is unauthorized" msgstr "" -#: ../cache/locales.php:512 -msgid "Validate" -msgstr "Bevestig" +#: [error]mec_error +msgid "The server takes too much time to respond" +msgstr "De server neemt te veel tijd om te antwoorden" -#: ../cache/locales.php:513 -msgid "Refresh" -msgstr "Vernieuwen" +#: [error]too_old +msgid "Your web browser is too old to use with Movim." +msgstr "Je browser is te oud om met Movim te gebruiken." -#: ../cache/locales.php:514 -msgid "Add" -msgstr "Toevoegen" - -#: ../cache/locales.php:515 -msgid "Delete" +#: [error]websocket +msgid "Movim cannot talk with the server, please try again later (Websocket connection error)" msgstr "" -#: ../cache/locales.php:516 -msgid "Remove" +#: [error]impossible +msgid "Impossible login" msgstr "" -#: ../cache/locales.php:517 -msgid "Cancel" +#: [error]title +msgid "Oops!" msgstr "" -#: ../cache/locales.php:518 -msgid "Close" -msgstr "Sluit" +#: [error]default [visio]unknown_error +msgid "Unknown error" +msgstr "Onbekende fout" -#: ../cache/locales.php:519 -msgid "Update" +#: [error]login_format +msgid "Invalid username format" msgstr "" -#: ../cache/locales.php:520 -msgid "Updating" +#: [error]password_format +msgid "Invalid password format" msgstr "" -#: ../cache/locales.php:521 +#: [error]unauthorized +msgctxt "[error]unauthorized" +msgid "Your XMPP server is unauthorized" +msgstr "" + +#: [error]conflict +msgid "A Movim session is already open on an other device" +msgstr "" + +#: [error]wrong_account +msgid "Movim failed to authenticate. You entered wrong data" +msgstr "" + +#: [error]mechanism +msgid "Authentication mechanism not supported by Movim" +msgstr "" + +#: [error]fail_auth +msgid "The XMPP authentification failed" +msgstr "" + +#: [account]title [accounts]accounts_title +msgid "Accounts" +msgstr "" + +#: [form]username +msgid "My address" +msgstr "Mijn adres" + +#: [form]create_one +msgid "Create one !" +msgstr "Maak er een aan !" + +#: [form]another_account +msgid "Another account" +msgstr "" + +#: [form]no_account +msgid "No account yet ?" +msgstr "Nog geen account ?" + +#: [form]whitelist.info +msgid "You can login with accounts from theses servers" +msgstr "" + +#: [form]connected +msgid "Connected" +msgstr "" + +#: [form]population +msgid "Population" +msgstr "" + +#: [menu]empty_title +msgid "No news yet..." +msgstr "" + +#: [menu]empty +msgid "Welcome on your news feed, here you will see all the posts published by your contacts and in the groups you have subscribed." +msgstr "" + +#: [menu]refresh +msgid "Refreshing all the streams" +msgstr "" + +#: [menu]public +msgid "This post is public" +msgstr "" + +#: [affiliations]title +msgid "Manage your members" +msgstr "" + +#: [affiliations]get +msgid "Get the members" +msgstr "" + +#: [affiliations]saved +msgid "Affiliations saved" +msgstr "" + +#: [subscriptions]title +msgid "Manage your subscriptions" +msgstr "Beheer je aanmeldingen" + +#: [subscriptions]info +msgid "Manage the subscriptions" +msgstr "Beheer de aanmeldingen" + +#: [subscriptions]get +msgid "Get the subscriptions" +msgstr "Haal de aanmeldingen op" + +#: [subscriptions]saved +msgid "Subscriptions saved" +msgstr "" + +#: [notifs]title +msgid "Pending Invitations" +msgstr "" + +#: [notifs]wants_to_talk +msgid "%s wants to talk with you" +msgstr "" + +#: [notifs]manage +msgid "Manage" +msgstr "Beheren" + +#: [post]news_feed +msgid "News Feed" +msgstr "" + +#: [post]placeholder +msgid "Discover and register to the groups you are interested in" +msgstr "" + +#: [post]preview [page]preview +msgid "Preview" +msgstr "" + +#: [post]help [page]help +msgid "Help" +msgstr "Help" + +#: [post]help_more +msgid "More help" +msgstr "" + +#: [post]help_manual +msgid "Markdown syntax manual" +msgstr "" + +#: [post]title +msgid "Title" +msgstr "" + +#: [post]content +msgid "Content" +msgstr "" + +#: [post]link +msgid "Link" +msgstr "Link" + +#: [post]tags +msgid "Tags" +msgstr "" + +#: [post]valid_url [publish]valid_url +msgid "Please enter a valid url" +msgstr "" + +#: [post]no_content_preview [publish]no_content_preview +msgid "No content to preview" +msgstr "" + +#: [post]no_content [publish]no_content [post]empty +msgid "No content" +msgstr "Geen inhoud" + +#: [post]published +msgid "Post published" +msgstr "" + +#: [post]deleted +msgid "Post deleted" +msgstr "" + +#: [post]gallery +msgid "This picture will be added to your gallery" +msgstr "" + +#: [post]hot +msgid "What's Hot" +msgstr "" + +#: [post]hot_text +msgid "Posts recently published in Groups that you are not subscribed (yet)" +msgstr "" + +#: [post]new [publish]new +msgid "New post" +msgstr "" + +#: [post]embed_tip +msgid "You can also use services like Imgur or Flickr to host your picture and paste the link here." +msgstr "" + +#: [post]repost +msgid "This is a re-post from %s" +msgstr "" + +#: [post]repost_profile +msgid "See %s profile" +msgstr "" + +#: [post]public +#, fuzzy +msgid "Publish this post publicly?" +msgstr "Is dit profiel publiekelijk?" + +#: [post]blog_add +msgid "Post published on your blog" +msgstr "" + +#: [post]blog_remove +msgid "Post removed from your blog" +msgstr "" + +#: [post]delete_title [post]delete +msgid "Delete this post" +msgstr "" + +#: [post]delete_text +msgid "You are going to delete this post, please confirm your action" +msgstr "" + +#: [post]comments_disabled +msgid "Comments disabled" +msgstr "" + +#: [post]comment_published +msgid "Comment published" +msgstr "" + +#: [status]disconnect +msgid "Disconnect" +msgstr "" + +#: [status]here +msgid "Your status here !" +msgstr "" + +#: [status]updated +msgid "Status updated" +msgstr "" + +#: [status]status +msgid "Status" +msgstr "" + +#: [status]presence +msgid "Presence" +msgstr "" + +#: [status]online +msgid "Online with Movim" +msgstr "" + +#: [publish]title +msgid "Publish" +msgstr "" + +#: [publish]attach +msgid "Add a file or a picture to your post" +msgstr "" + +#: [publish]no_publication +msgid "You cannot publish a post on this Group" +msgstr "" + +#: [publish]form_filled +msgid "Some fields have been filled in. Do you still want to go back and loose their content?" +msgstr "" + +#: [public_groups]shared +msgid "Shared" +msgstr "" + +#: [public_groups]added +msgid "%s has been added to your public groups" +msgstr "" + +#: [rooms]add +msgid "Add a chatroom" +msgstr "" + +#: [rooms]empty_text1 +msgid "You don't have any chatroom yet." +msgstr "" + +#: [rooms]empty_text2 +msgid "Add one by clicking on the add button in the header." +msgstr "" + +#: [chatrooms]title +msgid "Chatrooms" +msgstr "" + +#: [chatrooms]name_placeholder +msgid "My Favorite Room" +msgstr "" + +#: [chatrooms]users +msgid "Users in the room" +msgstr "" + +#: [chatrooms]bad_nickname +msgid "Please enter a correct nickname (2 to 40 characters)" +msgstr "" + +#: [room]anonymous_title +msgid "Public chatroom" +msgstr "" + +#: [room]no_room +msgid "Please provide a room address" +msgstr "" + +#: [room]anonymous_text1 +msgid "You are currently logued as an anonymous user." +msgstr "" + +#: [room]anonymous_text2 +msgid "You can join using your own account or create one on the login page by loging out using the cross in the top-right corner." +msgstr "" + +#: [room]anonymous_login +msgid "Login on %s" +msgstr "" + +#: [room]nick +msgid "Your nickname" +msgstr "" + +#: [roster]ungrouped +msgid "Ungrouped" +msgstr "Groep opgeheven" + +#: [roster]show_disconnected +msgid "Show disconnected contacts" +msgstr "" + +#: [roster]hide_disconnected +msgid "Hide disconnected contacts" +msgstr "" + +#: [roster]show_group +msgid "Show group %s" +msgstr "" + +#: [roster]hide_group +msgid "Hide group %s" +msgstr "" + +#: [roster]jid_error +msgid "Please enter a valid Jabber ID" +msgstr "Vul een geldig Jabber ID in" + +#: [roster]no_contacts_title +#, fuzzy +msgid "No contacts ?" +msgstr "Geen inhoud" + +#: [roster]no_contacts_text +msgid "You can add one using the + button bellow" +msgstr "" + +#: [roster]show_hide +msgid "Show/Hide" +msgstr "" + +#: [roster]add_contact_info1 +msgid "Enter the Jabber ID of your contact." +msgstr "" + +#: [roster]add_contact_info2 +msgid "Press enter to validate." +msgstr "" + +#: [roster]jid +msgid "JID" +msgstr "" + +#: [roster]results +msgid "Results" +msgstr "" + +#: [roster]added +msgid "Contact added" +msgstr "" + +#: [roster]deleted +msgid "Contact deleted" +msgstr "" + +#: [roster]search +msgid "Search" +msgstr "Zoeken" + +#: [share]error +msgid "This is not a valid url" +msgstr "" + +#: [share]success +msgid "Sharing the URL" +msgstr "" + +#: [statistics]title +msgid "Statistics" +msgstr "" + +#: [statistics]since +msgid "Since" +msgstr "" + +#: [statistics]sessions +msgid "Sessions" +msgstr "" + +#: [statistics]monthly_sub +msgid "Monthly Subscriptions" +msgstr "" + +#: [statistics]monthly_sub_cum +msgid "Monthly Subscriptions Cumulated" +msgstr "" + +#: [subscribe]info +msgid "Movim is a decentralized social network, before creating a new account you need to choose a server to register." +msgstr "" + +#: [subscribe]server_question +msgid "Your server here ?" +msgstr "" + +#: [subscribe]server_contact +msgid "Contact us to add yours to the officially supported servers list" +msgstr "" + +#: [feed]nope +msgid "No public feed for this contact" +msgstr "" + +#: [feed]nope_contact +msgid "No contact specified" +msgstr "" + +#: [upload]title +#, fuzzy +msgid "Upload a file" +msgstr "Uploaden" + +#: [upload]choose +msgid "Choose a file to upload" +msgstr "" + +#: [vcard]title [page]profile +msgid "Profile" +msgstr "Profiel" + +#: [vcard]updated +msgid "Profile Updated" +msgstr "Profiel bijgewerkt" + +#: [vcard]not_updated +msgid "Profile Not Updated" +msgstr "" + +#: [vcard]public +msgid "Your profile is now public" +msgstr "" + +#: [vcard]restricted +msgid "Your profile is now restricted" +msgstr "" + +#: [general]nickname +#, fuzzy +msgctxt "[general]nickname" +msgid "Nickname" +msgstr "bijnaam" + +#: [accounts]twitter +msgid "Twitter" +msgstr "" + +#: [accounts]skype +msgid "Skype" +msgstr "" + +#: [accounts]yahoo +msgid "Yahoo" +msgstr "" + +#: [accounts]accounts_nickname +#, fuzzy +msgctxt "[accounts]accounts_nickname" +msgid "Nickname" +msgstr "bijnaam" + +#: [accounts]accounts_yahoo +#, fuzzy +msgid "Yahoo Account" +msgstr "Account" + +#: [privacy]privacy_title +msgid "Privacy Level" +msgstr "Privacy-Niveau" + +#: [privacy]privacy_question +msgid "Is this profile public ?" +msgstr "Is dit profiel publiekelijk?" + +#: [privacy]privacy_info +msgid "Please pay attention ! By making your profile public, all the information listed above will be available for all the Movim users and on the whole Internet." +msgstr "Let op! Door je profiel publiek te maken zal alle bovenstaande informatie beschikbaar zijn voor alle Movim-gebruikers and het hele internet." + +#: [save]submit [button]submit msgid "Submit" msgstr "Zenden" -#: ../cache/locales.php:522 -msgid "Submitting" -msgstr "Bezig met opslaan" - -#: ../cache/locales.php:523 +#: [save]reset [button]reset msgid "Reset" msgstr "Reset" -#: ../cache/locales.php:524 +#: [visio]hung_up +msgid "Hung up" +msgstr "" + +#: [visio]busy +msgid "Your contact is busy" +msgstr "" + +#: [visio]declined +msgid "Declined" +msgstr "" + +#: [visio]calling +msgid "Is calling you" +msgstr "" + +#: [visio]call +msgid "Call" +msgstr "" + +#: [visio]hang_up +msgid "Hang up" +msgstr "" + +#: [visio]connection +msgid "Connection" +msgstr "" + +#: [global]no_js +msgid "You don't have javascript enabled. Good luck with that." +msgstr "" + +#: [global]description +msgid "Movim is a kickass distributed social networking platform that protect your privacy an comes with a set of awesome features." +msgstr "" + +#: [page]administration +msgid "Administration" +msgstr "Beheer" + +#: [page]home +msgid "Home" +msgstr "Home" + +#: [page]discover +msgid "Discover" +msgstr "" + +#: [page]explore +msgid "Explore" +msgstr "Verkennen" + +#: [page]account_creation +msgid "Account Creation" +msgstr "Account aanmaken" + +#: [page]avatar +msgid "Avatar" +msgstr "Avatar" + +#: [page]chats +msgid "Chats" +msgstr "" + +#: [page]server +msgid "Server" +msgstr "Server" + +#: [page]public_groups +msgid "Public Groups" +msgstr "" + +#: [page]viewer +msgid "Viewer" +msgstr "Viewer" + +#: [page]media +msgid "Media" +msgstr "Media" + +#: [page]blog +msgid "Blog" +msgstr "Blog" + +#: [page]about +msgid "About" +msgstr "" + +#: [page]login +msgid "Login" +msgstr "" + +#: [page]feed +msgid "Feed" +msgstr "Feed" + +#: [page]gallery +msgid "Gallery" +msgstr "" + +#: [page]visio +msgid "Visio-conference" +msgstr "" + +#: [page]pods +msgid "Pods" +msgstr "" + +#: [page]share +msgid "Share" +msgstr "" + +#: [page]room +msgid "Room" +msgstr "" + +#: [error]error +msgid "Error: %s" +msgstr "Error: %s" + +#: [error]cannot_load_file +msgid "Cannot load file '%s'" +msgstr "Kan bestand %s niet laden" + +#: [error]route +msgid "Route error, please set all the parameters for the page %s" +msgstr "Routeerfout, plaats alle argumenten voor de pagina %s" + +#: [error]widget_load_error +msgid "Requested widget '%s' doesn't exist." +msgstr "" + +#: [error]widget_call_error +msgid "Requested event '%s' not registered." +msgstr "" + +#: [error]whoops +msgid "Whoops!" +msgstr "" + +#: [error]media_not_found +msgid "It seem that you don't have any pictures here?" +msgstr "" + +#: [error]media_ask_upload +msgid "You can try to upload a couple by going to the Media page" +msgstr "" + +#: [title]about +msgid "%s - About" +msgstr "" + +#: [title]account +msgid "%s - Account" +msgstr "" + +#: [title]administration +msgid "%s - Administration Panel" +msgstr "" + +#: [title]blog +msgid "%s - Blog" +msgstr "" + +#: [title]configuration +msgid "%s - Configuration" +msgstr "%s - Configuratie" + +#: [title]discover +msgid "%s - Discover" +msgstr "" + +#: [title]explore +msgid "%s - Explore" +msgstr "" + +#: [title]help +msgid "%s - Help Page" +msgstr "" + +#: [title]login +msgid "%s - Login to Movim" +msgstr "%s - Inlogging bij Movim" + +#: [title]main +msgid "%s - Welcome to Movim" +msgstr "%s - Welkom bij Movim" + +#: [title]media +msgid "%s - Media" +msgstr "" + +#: [title]news +msgid "%s - News" +msgstr "" + +#: [title]node_configuration +msgid "%s - Group Configuration" +msgstr "" + +#: [title]node +msgid "%s - Group" +msgstr "" + +#: [title]not_found +msgid "%s - 404" +msgstr "" + +#: [title]profile +msgid "%s - Profile" +msgstr "" + +#: [title]server +msgid "%s - Server" +msgstr "" + +#: [button]validate +msgid "Validate" +msgstr "Bevestig" + +#: [button]refresh +msgid "Refresh" +msgstr "Vernieuwen" + +#: [button]add +msgid "Add" +msgstr "Toevoegen" + +#: [button]delete +msgid "Delete" +msgstr "" + +#: [button]cancel +msgid "Cancel" +msgstr "" + +#: [button]close +msgid "Close" +msgstr "Sluit" + +#: [button]update +msgid "Update" +msgstr "" + +#: [button]updating +msgid "Updating" +msgstr "" + +#: [button]submitting +msgid "Submitting" +msgstr "Bezig met opslaan" + +#: [button]register msgid "Register" msgstr "" -#: ../cache/locales.php:525 +#: [button]unregister msgid "Unregister" msgstr "" -#: ../cache/locales.php:526 +#: [button]save msgid "Save" msgstr "Opslaan" -#: ../cache/locales.php:527 +#: [button]clear msgid "Clear" msgstr "" -#: ../cache/locales.php:528 +#: [button]upload msgid "Upload" msgstr "Uploaden" -#: ../cache/locales.php:529 +#: [button]come_in msgid "Come in!" msgstr "Kom in!" -#: ../cache/locales.php:530 +#: [button]connecting msgid "Connecting" msgstr "" -#: ../cache/locales.php:531 +#: [button]bool_yes msgid "Yes" msgstr "Ja" -#: ../cache/locales.php:532 +#: [button]bool_no msgid "No" msgstr "Nee" -#: ../cache/locales.php:534 +#: [button]return msgid "Return" msgstr "" -#: ../cache/locales.php:535 +#: [button]accept msgid "Accept" msgstr "Accepteer" -#: ../cache/locales.php:536 +#: [button]refuse msgid "Refuse" msgstr "" -#: ../cache/locales.php:537 +#: [button]next msgid "Next" msgstr "" -#: ../cache/locales.php:538 +#: [button]previous msgid "Previous" msgstr "" -#: ../cache/locales.php:539 -#, php-format +#: [step]step msgid "Step %s" msgstr "" -#: ../cache/locales.php:542 +#: [day]title msgid "Day" msgstr "Dag" -#: ../cache/locales.php:543 +#: [day]monday msgid "Monday" msgstr "Maandag" -#: ../cache/locales.php:544 +#: [day]tuesday msgid "Tuesday" msgstr "Dinsdag" -#: ../cache/locales.php:545 +#: [day]wednesday msgid "Wednesday" msgstr "Woensdag" -#: ../cache/locales.php:546 +#: [day]thursday msgid "Thursday" msgstr "Donderdag" -#: ../cache/locales.php:547 +#: [day]friday msgid "Friday" msgstr "Vrijdag" -#: ../cache/locales.php:548 +#: [day]saturday msgid "Saturday" msgstr "Zaterdag" -#: ../cache/locales.php:549 +#: [day]sunday msgid "Sunday" msgstr "" -#: ../cache/locales.php:550 ../cache/locales.php:559 +#: [gender]nil +#, fuzzy +msgctxt "[gender]nil" msgid "None" msgstr "Geen" -#: ../cache/locales.php:551 +#: [gender]male msgid "Male" msgstr "Mannelijk" -#: ../cache/locales.php:552 +#: [gender]female msgid "Female" msgstr "Vrouwelijk" -#: ../cache/locales.php:553 +#: [gender]other msgid "Other" msgstr "Andere" -#: ../cache/locales.php:554 +#: [client]bot msgid "Bot" msgstr "Bot" -#: ../cache/locales.php:555 +#: [client]desktop msgid "Desktop" msgstr "Bureaublad" -#: ../cache/locales.php:556 +#: [client]phone msgid "Phone" msgstr "Telefoon" -#: ../cache/locales.php:557 +#: [client]web msgid "Web" msgstr "Web" -#: ../cache/locales.php:558 +#: [client]registered msgid "Registered" msgstr "Geregistreerd" -#: ../cache/locales.php:560 +#: [marital]nil +#, fuzzy +msgctxt "[marital]nil" +msgid "None" +msgstr "Geen" + +#: [marital]single msgid "Single" msgstr "Vrijgezel" -#: ../cache/locales.php:561 +#: [marital]relationship msgid "In a relationship" msgstr "In een relatie" -#: ../cache/locales.php:562 +#: [marital]married msgid "Married" msgstr "Getrouwd" -#: ../cache/locales.php:563 +#: [marital]divorced msgid "Divorced" msgstr "Gescheiden" -#: ../cache/locales.php:564 +#: [marital]widowed msgid "Widowed" msgstr "Weduwe/weduwnaar" -#: ../cache/locales.php:565 +#: [marital]cohabiting msgid "Cohabiting" msgstr "Samenwonend" -#: ../cache/locales.php:566 +#: [marital]union msgid "Civil Union" msgstr "Samenlevend" -#: ../cache/locales.php:567 +#: [flag]white msgid "Not shared" msgstr "Niet gedeeld" -#: ../cache/locales.php:568 +#: [flag]green msgid "Shared with one contact" msgstr "Gedeeld met één contact" -#: ../cache/locales.php:569 +#: [flag]orange msgid "Shared with all contacts" msgstr "Gedeeld met alle contacten" -#: ../cache/locales.php:570 +#: [flag]red msgid "Shared with the XMPP network" msgstr "Gedeeld met het XMPP-netwerk" -#: ../cache/locales.php:571 +#: [flag]black msgid "Shared with the whole Internet" msgstr "Gedeeld met het hele internet" -#: ../cache/locales.php:572 +#: [presence]online msgid "Online" msgstr "Online" -#: ../cache/locales.php:573 +#: [presence]away msgid "Away" msgstr "Afwezig" -#: ../cache/locales.php:574 +#: [presence]dnd msgid "Do Not Disturb" msgstr "Niet Storen" -#: ../cache/locales.php:575 +#: [presence]xa msgid "Extended Away" msgstr "Langdurig Afwezig" -#: ../cache/locales.php:576 +#: [presence]offline msgid "Offline" msgstr "Offline" -#: ../cache/locales.php:577 +#: [presence]error msgid "Error" msgstr "Fout" -#: ../cache/locales.php:578 +#: [mood]afraid msgid "afraid" msgstr "bang" -#: ../cache/locales.php:579 +#: [mood]amazed msgid "amazed" msgstr "verbaasd" -#: ../cache/locales.php:580 +#: [mood]amorous msgid "amorous" msgstr "vriendelijk" -#: ../cache/locales.php:581 +#: [mood]angry msgid "angry" msgstr "boos" -#: ../cache/locales.php:582 +#: [mood]annoyed msgid "annoyed" msgstr "geirriteerd" -#: ../cache/locales.php:583 +#: [mood]anxious msgid "anxious" msgstr "nerveus" -#: ../cache/locales.php:584 +#: [mood]aroused msgid "aroused" msgstr "opgewonden" -#: ../cache/locales.php:585 +#: [mood]ashamed msgid "ashamed" msgstr "beschaamd" -#: ../cache/locales.php:586 +#: [mood]bored msgid "bored" msgstr "verveeld" -#: ../cache/locales.php:587 +#: [mood]brave msgid "brave" msgstr "moedig" -#: ../cache/locales.php:588 +#: [mood]calm msgid "calm" msgstr "kalm" -#: ../cache/locales.php:589 +#: [mood]cautious msgid "cautious" msgstr "voorzichtig" -#: ../cache/locales.php:590 +#: [mood]cold msgid "cold" msgstr "koud" -#: ../cache/locales.php:591 +#: [mood]confident msgid "confident" msgstr "zelfverzekerd" -#: ../cache/locales.php:592 +#: [mood]confused msgid "confused" msgstr "verward" -#: ../cache/locales.php:593 +#: [mood]contemplative msgid "contemplative" msgstr "complimenteus" -#: ../cache/locales.php:594 +#: [mood]contented msgid "contented" msgstr "tevreden" -#: ../cache/locales.php:595 +#: [mood]cranky msgid "cranky" msgstr "nors" -#: ../cache/locales.php:596 +#: [mood]crazy msgid "crazy" msgstr "gek" -#: ../cache/locales.php:597 +#: [mood]creative msgid "creative" msgstr "creatief" -#: ../cache/locales.php:598 +#: [mood]curious msgid "curious" msgstr "nieuwsgierig" -#: ../cache/locales.php:599 +#: [mood]dejected msgid "dejected" msgstr "bedroefd" -#: ../cache/locales.php:600 +#: [mood]depressed msgid "depressed" msgstr "neerslachtig" -#: ../cache/locales.php:601 +#: [mood]disappointed msgid "disappointed" msgstr "teleurgesteld" -#: ../cache/locales.php:602 +#: [mood]disgusted msgid "disgusted" msgstr "walgend" -#: ../cache/locales.php:603 +#: [mood]dismayed msgid "dismayed" msgstr "ongerust" -#: ../cache/locales.php:604 +#: [mood]distracted msgid "distracted" msgstr "afgeleid" -#: ../cache/locales.php:605 +#: [mood]embarrassed msgid "embarrassed" msgstr "beschaamd" -#: ../cache/locales.php:606 +#: [mood]envious msgid "envious" msgstr "jaloers" -#: ../cache/locales.php:607 +#: [mood]excited msgid "excited" msgstr "opgewonden" -#: ../cache/locales.php:608 +#: [mood]flirtatious msgid "flirtatious" msgstr "complimenteus" -#: ../cache/locales.php:609 +#: [mood]frustated msgid "frustated" msgstr "" -#: ../cache/locales.php:610 +#: [mood]grateful msgid "grateful" msgstr "dankbaar" -#: ../cache/locales.php:611 +#: [mood]grieving msgid "grieving" msgstr "bedroefd" -#: ../cache/locales.php:612 +#: [mood]grumpy msgid "grumpy" msgstr "knorrig" -#: ../cache/locales.php:613 +#: [mood]guilty msgid "guilty" msgstr "schuldig" -#: ../cache/locales.php:614 +#: [mood]happy msgid "happy" msgstr "blij" -#: ../cache/locales.php:615 +#: [mood]hopeful msgid "hopeful" msgstr "hoopvol" -#: ../cache/locales.php:616 +#: [mood]hot msgid "hot" msgstr "hot" -#: ../cache/locales.php:617 +#: [mood]humbled msgid "humbled" msgstr "nederig" -#: ../cache/locales.php:618 +#: [mood]humiliated msgid "humiliated" msgstr "vernederd" -#: ../cache/locales.php:619 +#: [mood]hungry msgid "hungry" msgstr "hongerig" -#: ../cache/locales.php:620 +#: [mood]hurt msgid "hurt" msgstr "bezeerd" -#: ../cache/locales.php:621 +#: [mood]impressed msgid "impressed" msgstr "geimponeerd" -#: ../cache/locales.php:622 +#: [mood]in_awe msgid "in awe" msgstr "verwonderd" -#: ../cache/locales.php:623 +#: [mood]in_love msgid "in love" msgstr "verliefd" -#: ../cache/locales.php:624 +#: [mood]indignant msgid "indignant" msgstr "" -#: ../cache/locales.php:625 +#: [mood]interested msgid "interested" msgstr "geïnteresseerd" -#: ../cache/locales.php:626 +#: [mood]intoxicated msgid "intoxicated" msgstr "vergiftigd" -#: ../cache/locales.php:627 +#: [mood]invincible msgid "invincible" msgstr "onoverwinnelijk" -#: ../cache/locales.php:628 +#: [mood]jealous msgid "jealous" msgstr "jaloers" -#: ../cache/locales.php:629 +#: [mood]lonely msgid "lonely" msgstr "eenzaam" -#: ../cache/locales.php:630 +#: [mood]lost msgid "lost" msgstr "verdwaald" -#: ../cache/locales.php:631 +#: [mood]lucky msgid "lucky" msgstr "gelukkig" -#: ../cache/locales.php:632 +#: [mood]mean msgid "mean" msgstr "gemeen" -#: ../cache/locales.php:633 +#: [mood]moody msgid "moody" msgstr "humeurig" -#: ../cache/locales.php:634 +#: [mood]nervous msgid "nervous" msgstr "nerveus" -#: ../cache/locales.php:635 +#: [mood]neutral msgid "neutral" msgstr "neutraal" -#: ../cache/locales.php:636 +#: [mood]offended msgid "offended" msgstr "beledigd" -#: ../cache/locales.php:637 +#: [mood]outraged msgid "outraged" msgstr "woedend" -#: ../cache/locales.php:638 +#: [mood]playful msgid "playful" msgstr "speels" -#: ../cache/locales.php:639 +#: [mood]proud msgid "proud" msgstr "trots" -#: ../cache/locales.php:640 +#: [mood]relaxed msgid "relaxed" msgstr "ontspannen" -#: ../cache/locales.php:641 +#: [mood]relieved msgid "relieved" msgstr "opgelucht" -#: ../cache/locales.php:642 -msgid "remorseful" -msgstr "berouwvol" - -#: ../cache/locales.php:643 +#: [mood]restless msgid "restless" msgstr "rusteloos" -#: ../cache/locales.php:644 +#: [mood]sad msgid "sad" msgstr "droevig" -#: ../cache/locales.php:645 +#: [mood]sarcastic msgid "sarcastic" msgstr "sarcastisch" -#: ../cache/locales.php:646 +#: [mood]satisfied msgid "satisfied" msgstr "voldaan" -#: ../cache/locales.php:647 +#: [mood]serious msgid "serious" msgstr "serieus" -#: ../cache/locales.php:648 +#: [mood]shocked msgid "shocked" msgstr "geschrokken" -#: ../cache/locales.php:649 +#: [mood]shy msgid "shy" msgstr "verlegen" -#: ../cache/locales.php:650 +#: [mood]sick msgid "sick" msgstr "ziek" -#: ../cache/locales.php:651 +#: [mood]sleepy msgid "sleepy" msgstr "slaperig" -#: ../cache/locales.php:652 +#: [mood]spontaneous msgid "spontaneous" msgstr "spontaan" -#: ../cache/locales.php:653 +#: [mood]stressed msgid "stressed" msgstr "gestressed" -#: ../cache/locales.php:654 +#: [mood]strong msgid "strong" msgstr "sterk" -#: ../cache/locales.php:655 +#: [mood]surprised msgid "surprised" msgstr "verrast" -#: ../cache/locales.php:656 +#: [mood]thankful msgid "thankful" msgstr "dankbaar" -#: ../cache/locales.php:657 +#: [mood]thirsty msgid "thirsty" msgstr "dorstig" -#: ../cache/locales.php:658 +#: [mood]tired msgid "tired" msgstr "moe" -#: ../cache/locales.php:659 +#: [mood]undefined msgid "undefined" msgstr "ongedefiniëerd" -#: ../cache/locales.php:660 +#: [mood]weak msgid "weak" msgstr "zwak" -#: ../cache/locales.php:661 +#: [mood]worried msgid "worried" msgstr "bezorgd" -#: ../cache/locales.php:662 +#: [month]title msgid "Month" msgstr "Maand" -#: ../cache/locales.php:663 +#: [month]january msgid "January" msgstr "Januari" -#: ../cache/locales.php:664 +#: [month]february msgid "February" msgstr "Februari" -#: ../cache/locales.php:665 +#: [month]march msgid "March" msgstr "Maart" -#: ../cache/locales.php:666 +#: [month]april msgid "April" msgstr "April" -#: ../cache/locales.php:667 +#: [month]may msgid "May" msgstr "Mei" -#: ../cache/locales.php:668 +#: [month]june msgid "June" msgstr "Juni" -#: ../cache/locales.php:669 +#: [month]july msgid "July" msgstr "Juli" -#: ../cache/locales.php:670 +#: [month]august msgid "August" msgstr "Augustus" -#: ../cache/locales.php:671 +#: [month]september msgid "September" msgstr "September" -#: ../cache/locales.php:672 +#: [month]october msgid "October" msgstr "Oktober" -#: ../cache/locales.php:673 +#: [month]november msgid "November" msgstr "November" -#: ../cache/locales.php:674 +#: [month]december msgid "December" msgstr "December" -#: ../cache/locales.php:675 +#: [year]title msgid "Year" msgstr "Jaar" -#: ../cache/locales.php:676 +#: [date]today msgid "Today" msgstr "Vandaag" -#: ../cache/locales.php:677 +#: [date]tomorrow msgid "Tomorrow" msgstr "Morgen" -#: ../cache/locales.php:678 +#: [date]yesterday msgid "Yesterday" msgstr "Gisteren" -#: ../cache/locales.php:679 -#, php-format -msgid " %d days ago" +#: [date]ago +#, fuzzy +msgid "%d days ago" msgstr " %d dagen geleden" -#: ../cache/locales.php:680 +#: [date]day msgid "day" msgstr "dag" -#: ../cache/locales.php:682 +#: [post]whats_new msgid "What's new ?" msgstr "" -#: ../cache/locales.php:683 +#: [post]place msgid "Place" msgstr "Plaats" -#: ../cache/locales.php:684 +#: [post]by msgid "by" msgstr "" -#: ../cache/locales.php:685 +#: [post]geolocalisation msgid "Geolocalisation" msgstr "" -#: ../cache/locales.php:686 +#: [post]email msgid "email" msgstr "" -#: ../cache/locales.php:688 +#: [post]no_comments msgid "No comments yet" msgstr "" -#: ../cache/locales.php:689 +#: [post]no_comments_stream msgid "No comments stream" msgstr "Geen reacties geplaatst" -#: ../cache/locales.php:690 +#: [post]no_load msgid "Your feed cannot be loaded." msgstr "Jouw feed kan niet worden geladen" -#: ../cache/locales.php:691 +#: [post]older msgid "Get older posts" msgstr "Haal oudere berichten op" -#: ../cache/locales.php:692 -#, php-format +#: [post]new_items msgid "%s new items" msgstr "" -#: ../cache/locales.php:693 +#: [post]comment_error msgid "Comment publication error" msgstr "Fout bij publiceren van reactie" -#: ../cache/locales.php:694 +#: [post]comments_older msgid "Show the older comments" msgstr "Toon eerdere reacties" -#: ../cache/locales.php:695 -msgid "Loading comments ..." -msgstr "" +#: [post]comments_loading +#, fuzzy +msgid "Loading comments..." +msgstr "Laad de gebruiker feed" -#: ../cache/locales.php:696 +#: [post]comments_get msgid "Get the comments" msgstr "" -#: ../cache/locales.php:697 +#: [post]comment_add msgid "Add a comment" msgstr "" -#: ../cache/locales.php:698 +#: [post]share msgid "Share with" msgstr "" -#: ../cache/locales.php:699 +#: [post]share_everyone msgid "Everyone" msgstr "" -#: ../cache/locales.php:700 +#: [post]share_your_contacts msgid "Your contacts" msgstr "" -#: ../cache/locales.php:702 +#: [post]updated msgid "Updated" msgstr "" -#: ../cache/locales.php:703 +#: [post]content_not_found msgid "Content not found" msgstr "" -#: ../cache/locales.php:704 +#: [post]default_title msgid "Contact publication" msgstr "" -#: ../cache/locales.php:705 +#: [post]comments msgid "Comments" msgstr "" -#: ../cache/locales.php:706 +#: [api]error msgid "The API is not reachable, try again later" msgstr "" -#: ../cache/locales.php:707 +#: [field]type_here msgid "Type here" msgstr "" +#~ msgid "You can login with Facebook (chat only) using %syour.id@chat.facebook.com%s and your password" +#~ msgstr "U kunt inloggen met Facebook (alleen chat), gebruik %syour.id@chat.facebook.com%s en uw wachtwoord" + +#~ msgid "remorseful" +#~ msgstr "berouwvol" + #~ msgid "PHP version mismatch. Movim requires PHP 5.3 minimum." #~ msgstr "PHP versie komt niet overeen. Movim vereist minimaal PHP 5.3" @@ -2604,19 +2737,14 @@ msgstr "" #~ msgid "Movim Installer" #~ msgstr "Movim Installer" -#, php-format #~ msgid "Couldn't create directory '%s'." #~ msgstr "De map %s kan niet worden aangemaakt" #~ msgid "Compatibility Test" #~ msgstr "Compatibiliteit test" -#~ msgid "" -#~ "The following requirements were not met. Please make sure they are all " -#~ "satisfied in order to install Movim." -#~ msgstr "" -#~ "De volgende eisen konden niet worden gerespecteerd. Wees zeker dat ze " -#~ "voldoen om Movim te instaleren" +#~ msgid "The following requirements were not met. Please make sure they are all satisfied in order to install Movim." +#~ msgstr "De volgende eisen konden niet worden gerespecteerd. Wees zeker dat ze voldoen om Movim te instaleren" #~ msgid "User not logged in." #~ msgstr "De gebruiker is niet ingelogd" @@ -2624,21 +2752,15 @@ msgstr "" #~ msgid "JID not provided." #~ msgstr "JID was niet gegeven" -#, php-format #~ msgid "jid '%s' is incorrect" #~ msgstr "jid '%s' is niet correct" -#, php-format #~ msgid "Cannot open log file '%s'" #~ msgstr "De log file %s kon niet geopend worden" -#, php-format #~ msgid "%s - Account Creation" #~ msgstr "%s - account aanmaken" -#~ msgid "Remove this contact" -#~ msgstr "Verwijder dit contact" - #~ msgid "Debug console" #~ msgstr "Debug console" @@ -2651,25 +2773,15 @@ msgstr "" #~ msgid "Decline" #~ msgstr "Weigeren" -#~ msgid "Loading the contact feed ..." -#~ msgstr "Laad de gebruiker feed" - #~ msgid "Update your PHP version or contact your server administrator" #~ msgstr "Update de PHR versie of neem contact op met de sever beheerder" -#~ msgid "Enable read and write rights on Movim's root folder" -#~ msgstr "Enable de lees en schrijfrechten in Movim`s root folder" - #~ msgid "Thank you for downloading Movim!" #~ msgstr "Dank u voor het downloaden van Movim!" -#~ msgid "" -#~ "Before you enjoy your social network, a few adjustements are required." -#~ msgstr "" -#~ "Voordat u gebruik kunt maken van uw social network, zijn er enkele " -#~ "aanpassingen noodzakelijk." +#~ msgid "Before you enjoy your social network, a few adjustements are required." +#~ msgstr "Voordat u gebruik kunt maken van uw social network, zijn er enkele aanpassingen noodzakelijk." -#, php-format #~ msgid "Cannot load element value '%s'" #~ msgstr "Kan elementwaarde '%s' niet laden" @@ -2679,12 +2791,8 @@ msgstr "" #~ msgid "My Posts" #~ msgstr "Mijn Inzendingen" -#~ msgid "" -#~ "Your server doesn't support post publication, you can only read contact's " -#~ "feeds" -#~ msgstr "" -#~ "Jouw server ondersteunt geen publicatie, je kan alleen informatie van je " -#~ "contacten lezen." +#~ msgid "Your server doesn't support post publication, you can only read contact's feeds" +#~ msgstr "Jouw server ondersteunt geen publicatie, je kan alleen informatie van je contacten lezen." #~ msgid "Edit my Profile" #~ msgstr "Bewerk mijn profiel" @@ -2695,52 +2803,23 @@ msgstr "" #~ msgid "What is Movim?" #~ msgstr "Wat is Movim?" -#, php-format -#~ msgid "" -#~ "Visit the page %s What is Movim ? %s to know more about the project, its " -#~ "aims and understand how it works." -#~ msgstr "" -#~ "Bekijk de pagina %s Wat is Movim ? %s om meer te weten te komen over het " -#~ "project, de doelstellingen en de werking." +#~ msgid "Visit the page %s What is Movim ? %s to know more about the project, its aims and understand how it works." +#~ msgstr "Bekijk de pagina %s Wat is Movim ? %s om meer te weten te komen over het project, de doelstellingen en de werking." -#, php-format -#~ msgid "" -#~ "Go to the %s to the Frequently Asked Questions %s or come ask your question " -#~ "on the official chatroom %s or via our mailing-list (%s see the dedicated " -#~ "page %s)." -#~ msgstr "" -#~ "Bezoek de %s naar de Veelgestelde Vragen %s of stel de vraag in de officiële " -#~ "chatroom %s of via onze mailing-list (%s zie de pagina %s over dit " -#~ "onderwerp)." +#~ msgid "Go to the %s to the Frequently Asked Questions %s or come ask your question on the official chatroom %s or via our mailing-list (%s see the dedicated page %s)." +#~ msgstr "Bezoek de %s naar de Veelgestelde Vragen %s of stel de vraag in de officiële chatroom %s of via onze mailing-list (%s zie de pagina %s over dit onderwerp)." -#, php-format -#~ msgid "" -#~ "Although Movim is evolving fast, many (many) features are missing. Be " -#~ "patient ;). You can have a look %s at next versions's roadmaps %s to know if " -#~ "the one you want is on its way." -#~ msgstr "" -#~ "Ook al groeit Movim snel, (heel) veel functionaliteit is nog niet " -#~ "beschikbaar. Heb geduld ;). Je kunt een kijkje nemen %s bij volgende versies " -#~ "verwachte functionaliteiten %s om te zien of datgene wat je wil zal worden " -#~ "ontwikkeld." +#~ msgid "Although Movim is evolving fast, many (many) features are missing. Be patient ;). You can have a look %s at next versions's roadmaps %s to know if the one you want is on its way." +#~ msgstr "Ook al groeit Movim snel, (heel) veel functionaliteit is nog niet beschikbaar. Heb geduld ;). Je kunt een kijkje nemen %s bij volgende versies verwachte functionaliteiten %s om te zien of datgene wat je wil zal worden ontwikkeld." -#, php-format -#~ msgid "" -#~ "Don't forget that Movim is an open source project, a helping hand is always " -#~ "welcome (see %s Can I participate %s)" -#~ msgstr "" -#~ "Vergeet niet dat Movim een open source project is, hulp is altijd welkom " -#~ "(zie %s kan ik deelnemen %s)" +#~ msgid "Don't forget that Movim is an open source project, a helping hand is always welcome (see %s Can I participate %s)" +#~ msgstr "Vergeet niet dat Movim een open source project is, hulp is altijd welkom (zie %s kan ik deelnemen %s)" #~ msgid "I can't find the answer to my question here" #~ msgstr "Ik kan het antwoord op mijn vraag hier niet vinden." -#~ msgid "" -#~ "Some features are missing/I can't do everything I used to do on other social " -#~ "networks" -#~ msgstr "" -#~ "Sommige functionaliteit is afwezig/Ik kan niet alles wat ik op andere " -#~ "sociale netwerken kon" +#~ msgid "Some features are missing/I can't do everything I used to do on other social networks" +#~ msgstr "Sommige functionaliteit is afwezig/Ik kan niet alles wat ik op andere sociale netwerken kon" #~ msgid "You entered different passwords" #~ msgstr "U hebt verschillende wachtwoorden ingevoerd" diff --git a/sources/locales/no.po b/sources/locales/no.po index dd106ae..5a660cd 100644 --- a/sources/locales/no.po +++ b/sources/locales/no.po @@ -1,2593 +1,2709 @@ # Norwegian translations for Movim package. # This file is distributed under the same license as the Movim package. # This file was translated from CodingTeam at . +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/About/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Account/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AccountNext/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AdHoc/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AdminDB/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AdminMain/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AdminTest/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Api/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Avatar/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Blog/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Bookmark/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Chat/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Chats/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/ConfigData/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Config/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Contact/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Group/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Groups/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Header/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Hello/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Help/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Init/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Location/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/LoginAnonymous/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Login/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Menu/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/NodeAffiliations/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/NodeSubscriptions/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Notifs/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Post/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Presence/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Publish/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/PubsubSubscriptionConfig/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Rooms/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Roster/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Share/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Statistics/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Subscribe/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Syndication/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Upload/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Vcard4/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/VisioExt/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Visio/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../locales/locales.ini msgid "" msgstr "" "Project-Id-Version: Movim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-06-08 22:06+0200\n" +"POT-Creation-Date: 2015-08-20 15:17+0200\n" "PO-Revision-Date: 2012-07-19 11:30+0000\n" "Last-Translator: Vincent \n" "Language-Team: LANGUAGE \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2015-06-18 21:08+0000\n" "X-Generator: Launchpad (build 17570)\n" -"Language: \n" -#: ../cache/locales.php:2 +#: [about]thanks msgid "Thanks" msgstr "" -#: ../cache/locales.php:3 +#: [about]developers msgid "Developers" msgstr "" -#: ../cache/locales.php:4 +#: [about]translators msgid "Translators" msgstr "" -#: ../cache/locales.php:5 +#: [about]software msgid "Software" msgstr "" -#: ../cache/locales.php:6 +#: [about]resources msgid "Resources" msgstr "" -#: ../cache/locales.php:7 ../cache/locales.php:83 ../cache/locales.php:85 +#: [about]api [schema]api [api]title msgid "API" msgstr "" -#: ../cache/locales.php:8 -msgid "" -"Movim is an XMPP-based communication platform. All the project, except the " -"following software and resources, is under" +#: [about]info +msgid "Movim is an XMPP-based communication platform. All the project, except the following software and resources, is under" msgstr "" -#: ../cache/locales.php:9 +#: [account]title msgid "Account" msgstr "" -#: ../cache/locales.php:10 -msgid "The password has been updated" -msgstr "" +#: [account]password_change_title +#, fuzzy +msgid "Change my password" +msgstr "Feil passord" -#: ../cache/locales.php:11 -msgid "Please provide a valid password (6 characters minimum)" -msgstr "" - -#: ../cache/locales.php:12 -msgid "The provided passwords are not the same" -msgstr "" - -#: ../cache/locales.php:13 -msgid "Delete my account" -msgstr "" - -#: ../cache/locales.php:14 -msgid "" -"You will delete your XMPP account and all the relative information linked to " -"it (profile, contacts and publications)." -msgstr "" - -#: ../cache/locales.php:15 -msgid "Are you sure that you want to delete it ?" -msgstr "" - -#: ../cache/locales.php:16 ../cache/locales.php:411 -msgid "Create a new account" -msgstr "" - -#: ../cache/locales.php:17 -msgid "No account creation form found on the server" -msgstr "" - -#: ../cache/locales.php:18 ../cache/locales.php:172 -msgid "on" -msgstr "" - -#: ../cache/locales.php:19 -msgid "Your acccount has been successfully registered" -msgstr "" - -#: ../cache/locales.php:20 -msgid "Loading" -msgstr "" - -#: ../cache/locales.php:21 -msgid "Not Acceptable" -msgstr "" - -#: ../cache/locales.php:22 -msgid "The registration system of this server is currently unavailable" -msgstr "" - -#: ../cache/locales.php:23 -msgid "" -"This server use an external system for the registration, please click on the " -"following URL." -msgstr "" - -#: ../cache/locales.php:24 -msgid "Actions" -msgstr "" - -#: ../cache/locales.php:25 ../cache/locales.php:82 -msgid "Database" -msgstr "" - -#: ../cache/locales.php:26 -msgid "Modl wasn't able to connect to the database" -msgstr "" - -#: ../cache/locales.php:27 -msgid "Movim is connected to the database" -msgstr "" - -#: ../cache/locales.php:28 -msgid "The database need to be updated" -msgstr "" - -#: ../cache/locales.php:29 -msgid "Movim database is up to date" -msgstr "" - -#: ../cache/locales.php:30 -msgid "Database Type" -msgstr "" - -#: ../cache/locales.php:31 ../cache/locales.php:50 ../cache/locales.php:540 -msgid "Username" -msgstr "" - -#: ../cache/locales.php:32 ../cache/locales.php:51 ../cache/locales.php:282 -#: ../cache/locales.php:541 +#: [account]password [db]password [credentials]password [form]password +#: [input]password msgid "Password" msgstr "Passord" -#: ../cache/locales.php:33 +#: [account]password_confirmation +msgid "Password confirmation" +msgstr "" + +#: [account]password_changed +msgid "The password has been updated" +msgstr "" + +#: [account]password_not_valid +msgid "Please provide a valid password (6 characters minimum)" +msgstr "" + +#: [account]password_not_same +msgid "The provided passwords are not the same" +msgstr "" + +#: [account]delete_title +msgid "Delete my account" +msgstr "" + +#: [account]delete +msgid "Delete your account" +msgstr "" + +#: [account]delete_text +msgid "You will delete your XMPP account and all the relative information linked to it (profile, contacts and publications)." +msgstr "" + +#: [account]delete_text_confirm +msgid "Are you sure that you want to delete it ?" +msgstr "" + +#: [account]gateway_title +msgid "Gateway" +msgstr "" + +#: [create]title [subscribe]title +msgid "Create a new account" +msgstr "" + +#: [create]notfound +msgid "No account creation form found on the server" +msgstr "" + +#: [create]server_on +msgid "on" +msgstr "" + +#: [create]successfull +msgid "Your acccount has been successfully registered" +msgstr "" + +#: [create]loading +msgid "Loading" +msgstr "" + +#: [error]not_acceptable +msgid "Not Acceptable" +msgstr "" + +#: [error]service_unavailable +msgid "The registration system of this server is currently unavailable" +msgstr "" + +#: [oob]about +msgid "This server use an external system for the registration, please click on the following URL." +msgstr "" + +#: [adhoc]title +msgid "Actions" +msgstr "" + +#: [db]legend [schema]database +msgid "Database" +msgstr "" + +#: [db]connect_error +msgid "Modl wasn't able to connect to the database" +msgstr "" + +#: [db]connect_success +msgid "Movim is connected to the database" +msgstr "" + +#: [db]update +msgid "The database need to be updated" +msgstr "" + +#: [db]up_to_date +msgid "Movim database is up to date" +msgstr "" + +#: [db]type +msgid "Database Type" +msgstr "" + +#: [db]username [credentials]username [input]username +msgid "Username" +msgstr "" + +#: [db]host msgid "Host" msgstr "" -#: ../cache/locales.php:34 +#: [db]port msgid "Port" msgstr "" -#: ../cache/locales.php:35 -msgid "Database Name" +#: [db]name +msgid "Database sName" msgstr "" -#: ../cache/locales.php:36 +#: [admin]general msgid "General Settings" msgstr "" -#: ../cache/locales.php:37 +#: [general]theme msgid "Theme" msgstr "" -#: ../cache/locales.php:38 +#: [general]language msgid "Default language" msgstr "" -#: ../cache/locales.php:39 -msgid "Environment" -msgstr "" - -#: ../cache/locales.php:40 +#: [general]log_verbosity msgid "Log verbosity" msgstr "" -#: ../cache/locales.php:41 +#: [general]timezone msgid "Server Timezone" msgstr "" -#: ../cache/locales.php:42 +#: [general]limit msgid "User folder size limit (in bytes)" msgstr "" -#: ../cache/locales.php:43 +#: [websocket]title msgid "WebSocket Configuration" msgstr "" -#: ../cache/locales.php:44 +#: [websocket]info msgid "Enter here a valid WebSocket URI in the form" msgstr "" -#: ../cache/locales.php:45 +#: [websocket]label msgid "WebSocket URI" msgstr "" -#: ../cache/locales.php:46 -msgid "" -"If you change the URI, please restart the daemon to reload the configuration" +#: [websocket]save_info +msgid "If you change the URI, please restart the daemon to reload the configuration" msgstr "" -#: ../cache/locales.php:47 +#: [websocket]publics msgid "Public WebSockets" msgstr "" -#: ../cache/locales.php:48 +#: [credentials]title msgid "Administration Credential" msgstr "" -#: ../cache/locales.php:49 +#: [credentials]info msgid "Change the default credentials admin/password" msgstr "" -#: ../cache/locales.php:52 +#: [credentials]re_password msgid "Retype password" msgstr "" -#: ../cache/locales.php:53 +#: [whitelist]title msgid "Whitelist - XMPP Server" msgstr "" -#: ../cache/locales.php:54 -msgid "" -"If you want to specify a list of authorized XMPP servers on your Movim pod " -"and forbid the connection on all the others please put their domain name " -"here, with comma (ex: movim.eu,jabber.fr)" +#: [whitelist]info1 +msgid "If you want to specify a list of authorized XMPP servers on your Movim pod and forbid the connection on all the others please put their domain name here, with comma (ex: movim.eu,jabber.fr)" msgstr "" -#: ../cache/locales.php:55 -msgid "" -"Leave this field blank if you allow the access to all the XMPP accounts." +#: [whitelist]info2 +msgid "Leave this field blank if you allow the access to all the XMPP accounts." msgstr "" -#: ../cache/locales.php:56 +#: [whitelist]label msgid "List of whitelisted XMPP servers" msgstr "" -#: ../cache/locales.php:57 ../cache/locales.php:61 +#: [information]title +#, fuzzy +msgctxt "[information]title" msgid "Information Message" -msgstr "" +msgstr "Generell informasjon" -#: ../cache/locales.php:58 +#: [information]description msgid "Description" msgstr "" -#: ../cache/locales.php:59 +#: [information]info1 msgid "This message will be displayed on the login page" msgstr "" -#: ../cache/locales.php:60 -msgid "Leave this field blank if you don't want to show any message." +#: [information]info2 +msgid "Leave this field blank if you dont want to show any message." msgstr "" -#: ../cache/locales.php:62 +#: [information]label +#, fuzzy +msgctxt "[information]label" +msgid "Information Message" +msgstr "Generell informasjon" + +#: [log]empty msgid "Empty" msgstr "" -#: ../cache/locales.php:63 +#: [log]syslog msgid "Syslog" msgstr "" -#: ../cache/locales.php:64 +#: [log]syslog_files msgid "Syslog and files" msgstr "" -#: ../cache/locales.php:65 +#: [rewrite]title msgid "URL Rewriting" msgstr "" -#: ../cache/locales.php:66 +#: [rewrite]info msgid "The URL Rewriting can be enabled" msgstr "" -#: ../cache/locales.php:67 +#: [admin]compatibility msgid "General Overview" msgstr "" -#: ../cache/locales.php:68 -msgid "" -"Movim has found some issues or things that need to be fixed or improved" +#: [compatibility]info +msgid "Movim has found some issues or things that need to be fixed or improved" msgstr "" -#: ../cache/locales.php:69 -#, php-format +#: [compatibility]php1 msgid "Update your PHP-Version: %s" msgstr "" -#: ../cache/locales.php:70 +#: [compatibility]php2 msgid "Required: 5.3.0" msgstr "" -#: ../cache/locales.php:71 +#: [compatibility]curl msgid "Install the php5-curl library" msgstr "" -#: ../cache/locales.php:72 +#: [compatibility]imagick msgid "Install the php5-imagick library" msgstr "" -#: ../cache/locales.php:73 +#: [compatibility]gd msgid "Install the php5-gd library" msgstr "" -#: ../cache/locales.php:74 -msgid "Read and write rights for the webserver in Movim's root directory" +#: [compatibility]rights +msgid "Read and write rights for the webserver in Movims root directory" msgstr "" -#: ../cache/locales.php:75 +#: [compatibility]rewrite msgid "The URL Rewriting support is currently disabled" msgstr "" -#: ../cache/locales.php:76 +#: [compatibility]db msgid "The database need to be updated, go to the database panel to fix this" msgstr "" -#: ../cache/locales.php:77 -msgid "" -"WebSocket connection error, check if the Movim Daemon is running and is " -"reacheable" +#: [compatibility]websocket +msgid "WebSocket connection error, check if the Movim Daemon is running and is reachable" msgstr "" -#: ../cache/locales.php:78 -msgid "" -"XMPP Websocket connection error, please check the validity of the URL given " -"in the General Configuration" +#: [compatibility]xmpp_websocket +msgid "XMPP Websocket connection error, please check the validity of the URL given in the General Configuration" msgstr "" -#: ../cache/locales.php:79 +#: [schema]browser msgid "Browser" msgstr "" -#: ../cache/locales.php:80 +#: [schema]movim msgid "Movim Core" msgstr "" -#: ../cache/locales.php:81 +#: [schema]daemon msgid "Movim Daemon" msgstr "" -#: ../cache/locales.php:84 +#: [schema]xmpp msgid "XMPP" msgstr "" -#: ../cache/locales.php:86 -#, php-format -msgid "" -"Here you can register your pod on the official %sMovim API%s and be listed " -"on %sthe pods page%s." +#: [api]info +msgid "Here you can register your pod on the official %sMovim API%s and be listed on %sthe pods page%s." msgstr "" -#: ../cache/locales.php:87 +#: [api]register msgid "Your pod is not registered on the API" msgstr "" -#: ../cache/locales.php:88 +#: [api]registered msgid "Your pod is registered on the API" msgstr "" -#: ../cache/locales.php:89 +#: [api]wait msgid "Your pod is not yet validated" msgstr "" -#: ../cache/locales.php:90 +#: [api]validated msgid "Your pod is validated" msgstr "" -#: ../cache/locales.php:91 -msgid "" -"You asked to be removed from the API, this request will be processed in a " -"couple of hours" +#: [api]unregister +msgid "You asked to be removed from the API, this request will be processed in a couple of hours" msgstr "" -#: ../cache/locales.php:92 ../cache/locales.php:147 +#: [api]conf_updated [config]updated msgid "Configuration updated" msgstr "" -#: ../cache/locales.php:93 +#: [avatar]file msgid "File" msgstr "" -#: ../cache/locales.php:94 +#: [avatar]use_it msgid "Use it" msgstr "" -#: ../cache/locales.php:95 +#: [avatar]webcam msgid "Webcam" msgstr "" -#: ../cache/locales.php:96 +#: [avatar]cheese msgid "Cheese !" msgstr "" -#: ../cache/locales.php:97 +#: [avatar]snapshot msgid "Take a webcam snapshot" msgstr "" -#: ../cache/locales.php:98 +#: [avatar]updated msgid "Avatar Updated" msgstr "" -#: ../cache/locales.php:99 +#: [avatar]not_updated msgid "Avatar Not Updated" msgstr "" -#: ../cache/locales.php:100 ../cache/locales.php:415 -#, php-format +#: [blog]title [feed]title msgid "%s's feed" msgstr "" -#: ../cache/locales.php:101 +#: [blog]empty msgid "This user has not posted anything right now" msgstr "" -#: ../cache/locales.php:102 +#: [title]conferences msgid "Conferences" msgstr "" -#: ../cache/locales.php:103 ../cache/locales.php:193 ../cache/locales.php:217 -#: ../cache/locales.php:468 +#: [title]groups [group]empty_title [menu]groups [page]groups msgid "Groups" msgstr "" -#: ../cache/locales.php:104 +#: [chatroom]add msgid "Add a new Chat Room" msgstr "" -#: ../cache/locales.php:105 ../cache/locales.php:368 +#: [chatroom]id [chatrooms]id msgid "Chat Room ID" msgstr "" -#: ../cache/locales.php:106 ../cache/locales.php:116 ../cache/locales.php:156 -#: ../cache/locales.php:361 ../cache/locales.php:369 ../cache/locales.php:424 +#: [chatroom]name +#, fuzzy +msgctxt "[chatroom]name" msgid "Name" msgstr "Navn" -#: ../cache/locales.php:107 ../cache/locales.php:157 ../cache/locales.php:371 -#: ../cache/locales.php:425 +#: [chatroom]nickname [general]nickname [chatrooms]nickname msgid "Nickname" msgstr "" -#: ../cache/locales.php:108 +#: [chatroom]autojoin_label msgid "Do you want do join automaticaly this Chat Room ?" msgstr "" -#: ../cache/locales.php:109 ../cache/locales.php:372 +#: [chatroom]bad_id [chatrooms]bad_id msgid "Bad Chatroom ID" msgstr "" -#: ../cache/locales.php:110 ../cache/locales.php:373 +#: [chatroom]empty_name [chatrooms]empty_name msgid "Empty name" msgstr "" -#: ../cache/locales.php:111 ../cache/locales.php:380 +#: [bookmarks]updated msgid "Bookmarks updated" msgstr "" -#: ../cache/locales.php:112 -msgid "An error occured : " +#: [bookmarks]error +msgid "An error occured :" msgstr "" -#: ../cache/locales.php:113 +#: [bookmarks]configure msgid "Configure" msgstr "" -#: ../cache/locales.php:114 +#: [url]add msgid "Add a new URL" msgstr "" -#: ../cache/locales.php:115 +#: [url]url msgid "URL" msgstr "" -#: ../cache/locales.php:117 +#: [url]name +#, fuzzy +msgctxt "[url]name" +msgid "Name" +msgstr "Navn" + +#: [message]published msgid "Message Published" msgstr "" -#: ../cache/locales.php:118 ../cache/locales.php:138 +#: [message]encrypted msgid "Encrypted message" msgstr "" -#: ../cache/locales.php:119 +#: [message]composing [chats]composing msgid "Composing..." msgstr "" -#: ../cache/locales.php:120 +#: [message]paused [chats]paused msgid "Paused..." msgstr "" -#: ../cache/locales.php:121 +#: [message]gone msgid "Contact gone" msgstr "" -#: ../cache/locales.php:122 -#, php-format +#: [chat]attention msgid "%s needs your attention" msgstr "" -#: ../cache/locales.php:123 +#: [chat]placeholder msgid "Your message here..." msgstr "" -#: ../cache/locales.php:124 +#: [chat]smileys msgid "Smileys" msgstr "" -#: ../cache/locales.php:125 ../cache/locales.php:139 +#: [chat]empty_title [button]chat msgid "Chat" msgstr "Chat" -#: ../cache/locales.php:126 +#: [chat]empty_text msgid "Discuss with your contacts" msgstr "" -#: ../cache/locales.php:127 -msgid "Members" -msgstr "" - -#: ../cache/locales.php:128 ../cache/locales.php:376 -msgid "Connected to the chatroom" -msgstr "" - -#: ../cache/locales.php:129 ../cache/locales.php:377 -msgid "Disconnected from the chatroom" -msgstr "" - -#: ../cache/locales.php:130 ../cache/locales.php:200 ../cache/locales.php:469 -msgid "Configuration" -msgstr "" - -#: ../cache/locales.php:131 -msgid "Configuration saved" -msgstr "" - -#: ../cache/locales.php:132 -msgid "Subject" -msgstr "" - -#: ../cache/locales.php:133 -msgid "Subject changed" -msgstr "" - -#: ../cache/locales.php:134 -msgid "Open a new conversation by clicking on the plus button bellow" -msgstr "" - -#: ../cache/locales.php:135 -msgid "Chat with a contact" -msgstr "" - -#: ../cache/locales.php:136 +#: [chat]frequent [chats]frequent msgid "Frequent contacts" msgstr "" -#: ../cache/locales.php:137 +#: [chatroom]members +msgid "Members" +msgstr "" + +#: [chatroom]connected [chatrooms]connected +msgid "Connected to the chatroom" +msgstr "" + +#: [chatroom]disconnected [chatrooms]disconnected +msgid "Disconnected from the chatroom" +msgstr "" + +#: [chatroom]config [group]configuration [page]configuration +msgid "Configuration" +msgstr "" + +#: [chatroom]config_saved +msgid "Configuration saved" +msgstr "" + +#: [chatroom]subject +msgid "Subject" +msgstr "" + +#: [chatroom]subject_changed +msgid "Subject changed" +msgstr "" + +#: [chats]empty_title +msgid "No chats yet..." +msgstr "" + +#: [chats]empty +msgid "Open a new conversation by clicking on the plus button bellow or visit the Contacts page." +msgstr "" + +#: [chats]add +msgid "Chat with a contact" +msgstr "" + +#: [chats]more msgid "Load more contacts" msgstr "" -#: ../cache/locales.php:140 -msgid "General" -msgstr "" - -#: ../cache/locales.php:141 -msgid "Language" -msgstr "Språk" - -#: ../cache/locales.php:142 -msgid "Roster display" -msgstr "" - -#: ../cache/locales.php:143 -msgid "Show the offline contacts" -msgstr "" - -#: ../cache/locales.php:144 -msgid "Hide the offline contacts" -msgstr "" - -#: ../cache/locales.php:145 -msgid "Appearence" -msgstr "" - -#: ../cache/locales.php:146 -msgid "This configuration is shared wherever you are connected !" -msgstr "" - -#: ../cache/locales.php:148 -msgid "Notify on incoming message" -msgstr "" - -#: ../cache/locales.php:149 -msgid "Use desktop notifications" -msgstr "" - -#: ../cache/locales.php:150 +#: [title]data msgid "Data" msgstr "" -#: ../cache/locales.php:151 +#: [title]cache msgid "Cache" msgstr "" -#: ../cache/locales.php:152 ../cache/locales.php:218 ../cache/locales.php:466 +#: [title]contacts [menu]contacts [page]contacts msgid "Contacts" msgstr "" -#: ../cache/locales.php:153 ../cache/locales.php:480 +#: [title]posts [page]posts msgid "Posts" msgstr "" -#: ../cache/locales.php:154 +#: [title]messages msgid "Messages" msgstr "" -#: ../cache/locales.php:155 ../cache/locales.php:423 +#: [config]general +msgid "General" +msgstr "" + +#: [config]language +msgid "Language" +msgstr "Språk" + +#: [config]roster +msgid "Roster display" +msgstr "" + +#: [config]roster_show +msgid "Show the offline contacts" +msgstr "" + +#: [config]roster_hide +msgid "Hide the offline contacts" +msgstr "" + +#: [config]appearence +msgid "Appearence" +msgstr "" + +#: [config]info +msgid "This configuration is shared wherever you are connected" +msgstr "" + +#: [notifications]message +msgid "Notify on incoming message" +msgstr "" + +#: [notifications]desktop +msgid "Use desktop notifications" +msgstr "" + +#: [general]legend [general]general_title msgid "General Informations" msgstr "Generell informasjon" -#: ../cache/locales.php:158 ../cache/locales.php:427 +#: [general]name [public_groups]name [chatrooms]name +msgid "Name" +msgstr "Navn" + +#: [general]date_of_birth msgid "Date of Birth" msgstr "Fødselsdato" -#: ../cache/locales.php:159 ../cache/locales.php:428 +#: [general]gender msgid "Gender" msgstr "" -#: ../cache/locales.php:160 ../cache/locales.php:429 +#: [general]marital msgid "Marital Status" msgstr "" -#: ../cache/locales.php:161 ../cache/locales.php:426 +#: [general]email msgid "Email" msgstr "" -#: ../cache/locales.php:162 ../cache/locales.php:430 +#: [general]website msgid "Website" msgstr "Nettside" -#: ../cache/locales.php:163 ../cache/locales.php:431 +#: [general]about msgid "About Me" msgstr "Om meg" -#: ../cache/locales.php:164 +#: [general]accounts msgid "Other Accounts" msgstr "" -#: ../cache/locales.php:165 +#: [general]tune msgid "Is Listening" msgstr "" -#: ../cache/locales.php:166 ../cache/locales.php:432 +#: [position]legend [position]position_title msgid "Geographic Position" msgstr "" -#: ../cache/locales.php:167 ../cache/locales.php:433 +#: [position]locality msgid "Locality" msgstr "" -#: ../cache/locales.php:168 ../cache/locales.php:434 +#: [position]country msgid "Country" msgstr "" -#: ../cache/locales.php:169 +#: [mood]title msgid "Mood" msgstr "" -#: ../cache/locales.php:170 +#: [mood]im msgid "I'm " msgstr "" -#: ../cache/locales.php:171 +#: [listen]title msgid "Listening" msgstr "" -#: ../cache/locales.php:173 +#: [last]title msgid "Last seen" msgstr "" -#: ../cache/locales.php:174 +#: [client]title msgid "Client Informations" msgstr "" -#: ../cache/locales.php:175 +#: [explore]last_registered msgid "Last registered" msgstr "" -#: ../cache/locales.php:176 +#: [explore]explore msgid "Find some new friends" msgstr "" -#: ../cache/locales.php:177 ../cache/locales.php:533 +#: [edit]title [button]edit msgid "Edit" msgstr "" -#: ../cache/locales.php:178 +#: [edit]alias msgid "Alias" msgstr "" -#: ../cache/locales.php:179 +#: [edit]group msgid "Group" msgstr "" -#: ../cache/locales.php:180 ../cache/locales.php:400 +#: [edit]updated [roster]updated msgid "Contact updated" msgstr "" -#: ../cache/locales.php:181 +#: [delete]title msgid "Are you sure?" msgstr "" -#: ../cache/locales.php:182 -msgid "" -"You are going to delete one of your contacts, please confirm your action" +#: [delete]text +msgid "You are going to delete one of your contacts, please confirm your action" msgstr "" -#: ../cache/locales.php:183 -#, php-format +#: [age]years msgid "%s years" msgstr "" -#: ../cache/locales.php:184 +#: [blog]last msgid "Last public post" msgstr "" -#: ../cache/locales.php:185 +#: [subscription]to +#, fuzzy +msgid "You can see this contact status" +msgstr "Fjern denne kontakten" + +#: [subscription]to_button +msgid "Share my status" +msgstr "" + +#: [subscription]to_text +msgid "But this contact cannot see yours" +msgstr "" + +#: [subscription]from +msgid "You are not subscribed to this contact" +msgstr "" + +#: [subscription]from_button +msgid "Ask to subscribe" +msgstr "" + +#: [subscription]from_text +msgid "But this contact can still see if you are online" +msgstr "" + +#: [subscription]nil +msgid "No subscriptions" +msgstr "" + +#: [subscription]nil_button +msgid "Invite" +msgstr "" + +#: [subscription]nil_text +msgid "This contact is in your contact list but there is no subscriptions between the two accounts" +msgstr "" + +#: [group]subscribe msgid "Subscribe" msgstr "" -#: ../cache/locales.php:186 +#: [group]subscribed msgid "Subscribed" msgstr "" -#: ../cache/locales.php:187 +#: [group]unsubscribe msgid "Unsubscribe" msgstr "" -#: ../cache/locales.php:188 +#: [group]unsubscribe_text msgid "You are going to unsubscribe from this Group" msgstr "" -#: ../cache/locales.php:189 +#: [group]unsubscribed msgid "Unsubscribed" msgstr "" -#: ../cache/locales.php:190 +#: [group]share_label msgid "Make your membership to this group public to your friends" msgstr "" -#: ../cache/locales.php:191 +#: [group]label_label msgid "Give a label for this group" msgstr "" -#: ../cache/locales.php:192 +#: [group]sure msgid "Are you sure ?" msgstr "" -#: ../cache/locales.php:194 +#: [group]empty_text msgid "Discover, follow and share" msgstr "" -#: ../cache/locales.php:195 +#: [group]empty msgid "Something bad happened to this group" msgstr "" -#: ../cache/locales.php:196 +#: [group]config_saved msgid "Group configuration saved" msgstr "" -#: ../cache/locales.php:197 +#: [group]delete_title msgid "Delete the group" msgstr "" -#: ../cache/locales.php:198 -msgid "" -"You are going to delete the following group. Please confirm your action." +#: [group]delete_text +msgid "You are going to delete the following group. Please confirm your action." msgstr "" -#: ../cache/locales.php:199 -msgid "" -"It seems that this group doesn't exists anymore. Do you want to remove it " -"from your subscriptions?" +#: [group]delete_clean_text +msgid "It seems that this group doesn't exists anymore. Do you want to remove it from your subscriptions?" msgstr "" -#: ../cache/locales.php:201 ../cache/locales.php:408 +#: [group]counter +msgid "%s groups on this server" +msgstr "" + +#: [group]subscriptions [statistics]subscriptions msgid "Subscriptions" msgstr "" -#: ../cache/locales.php:202 ../cache/locales.php:290 +#: [group]servers +msgid "Groups servers" +msgstr "" + +#: [group]search_server +msgid "Search for a new server" +msgstr "" + +#: [group]help_info1 +msgid "Groups are the perfect way to share posts about topics that you like with all the other Movim's users." +msgstr "" + +#: [group]help_info2 +msgid "Choose a server and a Group and subscribe to it using the %s button in the header. You can also create a new one using the %s button." +msgstr "" + +#: [group]help_info3 +msgid "Done? You can now publish a new post in the Group by using the %s button." +msgstr "" + +#: [group]help_info4 +msgid "You will find a list of all your subscribed Groups in My Subscriptions and receive instantly all the new incoming posts in the %sNews%s page." +msgstr "" + +#: [groups]empty_title msgid "Hello" msgstr "" -#: ../cache/locales.php:203 ../cache/locales.php:225 ../cache/locales.php:291 +#: [groups]contact_post [hello]contact_post [menu]contact_post msgid "Contact post" msgstr "" -#: ../cache/locales.php:204 -msgid "" -"You don't have any subscriptions yet, select a group server above to start " -"exploring." +#: [groups]empty_text1 +msgid "You don't have any subscriptions yet, select a group server above to start exploring." msgstr "" -#: ../cache/locales.php:205 +#: [groups]empty_text2 msgid "Subscribe to your favorite feeds by bookmarking them." msgstr "" -#: ../cache/locales.php:206 +#: [groups]subscriptions msgid "My Subscriptions" msgstr "" -#: ../cache/locales.php:207 +#: [groups]add msgid "Create a new Group" msgstr "" -#: ../cache/locales.php:208 +#: [groups]name msgid "Group name" msgstr "" -#: ../cache/locales.php:209 +#: [groups]name_example msgid "My Little Pony - Fan Club" msgstr "" -#: ../cache/locales.php:210 +#: [groups]created msgid "Group created successfully" msgstr "" -#: ../cache/locales.php:211 +#: [groups]deleted msgid "Group deleted successfully" msgstr "" -#: ../cache/locales.php:212 +#: [groups]name_error msgid "Please provide a valid group name (4 characters minimum)" msgstr "" -#: ../cache/locales.php:213 +#: [groups]no_creation msgid "You cannot create a new Group on this server" msgstr "" -#: ../cache/locales.php:214 -#, php-format +#: [groups]sub msgid "%s subscribers" msgstr "" -#: ../cache/locales.php:215 -#, php-format +#: [groups]num msgid "%s posts" msgstr "" -#: ../cache/locales.php:216 +#: [groups]disco_error +msgid "This server doesn't exists" +msgstr "" + +#: [menu]all msgid "All" msgstr "" -#: ../cache/locales.php:219 +#: [menu]refresh msgid "Refresh all the streams" msgstr "" -#: ../cache/locales.php:220 ../cache/locales.php:402 -msgid "Search" +#: [roster]search +msgid "Search in your contacts" msgstr "" -#: ../cache/locales.php:221 +#: [hello]active_contacts +msgid "Active contacts" +msgstr "" + +#: [hello]chat msgid "Go on the Chat page" msgstr "" -#: ../cache/locales.php:222 -msgid "Read all theses articles on the News page" -msgstr "" - -#: ../cache/locales.php:223 -msgid "Visit your public blog" -msgstr "" - -#: ../cache/locales.php:224 -msgid "See your public posts and share them with all your contacts" -msgstr "" - -#: ../cache/locales.php:226 -msgid "Universal share button" -msgstr "" - -#: ../cache/locales.php:227 -msgid "" -"Bookmark or drag and drop the following button in your toolbar and use it on " -"all the pages you want to share on Movim" -msgstr "" - -#: ../cache/locales.php:228 -msgid "Share on Movim" -msgstr "" - -#: ../cache/locales.php:229 -msgid "Frequently Asked Questions" -msgstr "" - -#: ../cache/locales.php:230 -msgid "What do the little banners refer to ?" -msgstr "" - -#: ../cache/locales.php:231 -msgid "" -"Thanks to these five little banners, you can quickly identitfy the level of " -"confdentiality applied to the information you provide." -msgstr "" - -#: ../cache/locales.php:232 -msgid "White, only you can see the information" -msgstr "" - -#: ../cache/locales.php:233 -msgid "Green, you have chosen some contacts who can see your information" -msgstr "" - -#: ../cache/locales.php:234 -msgid "Orange, all your contact list can see your information" -msgstr "" - -#: ../cache/locales.php:235 -msgid "Red, everybody in the XMPP network can see your information" -msgstr "" - -#: ../cache/locales.php:236 -msgid "Black, the whole Internet can see your information" -msgstr "" - -#: ../cache/locales.php:237 -msgid "Looking for some documentation ?" -msgstr "" - -#: ../cache/locales.php:238 -msgid "Read the Wiki" -msgstr "" - -#: ../cache/locales.php:239 -msgid "Talk with us by email ?" -msgstr "" - -#: ../cache/locales.php:240 -msgid "Join the Mailing List" -msgstr "" - -#: ../cache/locales.php:241 -msgid "Chat with the team ?" -msgstr "" - -#: ../cache/locales.php:242 -msgid "Join the Chatroom" -msgstr "" - -#: ../cache/locales.php:243 -msgid "Location node created" -msgstr "" - -#: ../cache/locales.php:244 -msgid "Bookmark node created" -msgstr "" - -#: ../cache/locales.php:245 -msgid "Profile node created" -msgstr "" - -#: ../cache/locales.php:246 -msgid "Avatar node created" -msgstr "" - -#: ../cache/locales.php:247 -msgid "Subscriptions node created" -msgstr "" - -#: ../cache/locales.php:248 -msgid "Microblog node created" -msgstr "" - -#: ../cache/locales.php:249 -msgid "Location" -msgstr "" - -#: ../cache/locales.php:250 -msgid "Wrong position" -msgstr "" - -#: ../cache/locales.php:251 -msgid "Location updated" -msgstr "" - -#: ../cache/locales.php:252 -msgid "Update my position" -msgstr "" - -#: ../cache/locales.php:253 -msgid "Wrong username" -msgstr "" - -#: ../cache/locales.php:254 -msgid "Invalid JID" -msgstr "" - -#: ../cache/locales.php:255 -msgid "Empty Challenge from the server" -msgstr "" - -#: ../cache/locales.php:256 -msgid "XMPP Domain error, your account is not a correct Jabber ID" -msgstr "" - -#: ../cache/locales.php:257 -msgid "Some data are missing !" -msgstr "" - -#: ../cache/locales.php:258 -msgid "Wrong password" -msgstr "Feil passord" - -#: ../cache/locales.php:259 -msgid "Internal server error" -msgstr "" - -#: ../cache/locales.php:260 -msgid "Session error" -msgstr "" - -#: ../cache/locales.php:261 -msgid "Account successfully created" -msgstr "" - -#: ../cache/locales.php:262 ../cache/locales.php:271 -msgid "Your XMPP server is unauthorized" -msgstr "" - -#: ../cache/locales.php:263 -msgid "The server takes too much time to respond" -msgstr "" - -#: ../cache/locales.php:264 -msgid "Your web browser is too old to use with Movim." -msgstr "" - -#: ../cache/locales.php:265 -msgid "" -"Movim cannot talk with the server, please try again later (Websocket " -"connection error)" -msgstr "" - -#: ../cache/locales.php:266 -msgid "Impossible login" -msgstr "" - -#: ../cache/locales.php:267 -msgid "Oops!" -msgstr "" - -#: ../cache/locales.php:268 ../cache/locales.php:449 ../cache/locales.php:455 -msgid "Unknown error" -msgstr "" - -#: ../cache/locales.php:269 -msgid "Invalid username format" -msgstr "" - -#: ../cache/locales.php:270 -msgid "Invalid password format" -msgstr "" - -#: ../cache/locales.php:272 -msgid "A Movim session is already open on an other device" -msgstr "" - -#: ../cache/locales.php:273 -msgid "Movim failed to authenticate. You entered wrong data" -msgstr "" - -#: ../cache/locales.php:274 -msgid "Authentication mechanism not supported by Movim" -msgstr "" - -#: ../cache/locales.php:275 -msgid "The XMPP authentification failed" -msgstr "" - -#: ../cache/locales.php:276 -#, php-format -msgid "" -"You can login with Facebook (chat only) using %syour.id@chat.facebook.com%s " -"and your password" -msgstr "" - -#: ../cache/locales.php:277 -#, php-format -msgid "%sGmail accounts are also compatible%s but are not fully supported" -msgstr "" - -#: ../cache/locales.php:278 -msgid "You can login using your favorite Jabber account" -msgstr "" - -#: ../cache/locales.php:279 -msgid "or with our demonstration account" -msgstr "" - -#: ../cache/locales.php:280 ../cache/locales.php:435 -msgid "Accounts" -msgstr "" - -#: ../cache/locales.php:281 -msgid "My address" -msgstr "Min adresse" - -#: ../cache/locales.php:283 -msgid "Create one !" -msgstr "" - -#: ../cache/locales.php:284 -msgid "No account yet ?" -msgstr "" - -#: ../cache/locales.php:285 -msgid "Another account" -msgstr "" - -#: ../cache/locales.php:286 -msgid "You can login with accounts from theses servers" -msgstr "" - -#: ../cache/locales.php:287 -msgid "Connected" -msgstr "" - -#: ../cache/locales.php:288 -msgid "Population" -msgstr "" - -#: ../cache/locales.php:289 -msgid "Bad nickname (between 4 and 40 characters)" -msgstr "" - -#: ../cache/locales.php:292 -msgid "" -"Welcome on your news feed, here you will see all the posts published in the " -"groups you have subscribed." -msgstr "" - -#: ../cache/locales.php:293 -msgid "Refreshing all the streams" -msgstr "" - -#: ../cache/locales.php:294 -msgid "This post is public" -msgstr "" - -#: ../cache/locales.php:295 -msgid "Manage your members" -msgstr "" - -#: ../cache/locales.php:296 -msgid "Get the members" -msgstr "" - -#: ../cache/locales.php:297 -msgid "Affiliations saved" -msgstr "" - -#: ../cache/locales.php:298 -msgid "Manage your subscriptions" -msgstr "" - -#: ../cache/locales.php:299 -msgid "Manage the subscriptions" -msgstr "" - -#: ../cache/locales.php:300 -msgid "Get the subscriptions" -msgstr "" - -#: ../cache/locales.php:301 -msgid "Subscriptions saved" -msgstr "" - -#: ../cache/locales.php:302 -msgid "Pending Invitations" -msgstr "" - -#: ../cache/locales.php:303 -#, php-format -msgid "%s wants to talk with you" -msgstr "" - -#: ../cache/locales.php:304 -msgid "Manage" -msgstr "" - -#: ../cache/locales.php:305 ../cache/locales.php:338 -msgid "News Feed" -msgstr "" - -#: ../cache/locales.php:306 ../cache/locales.php:339 -msgid "Discover and register to the groups you are interested in" -msgstr "" - -#: ../cache/locales.php:307 ../cache/locales.php:340 ../cache/locales.php:482 -msgid "Preview" -msgstr "" - -#: ../cache/locales.php:308 ../cache/locales.php:341 ../cache/locales.php:478 -msgid "Help" -msgstr "" - -#: ../cache/locales.php:309 ../cache/locales.php:342 -msgid "More help" -msgstr "" - -#: ../cache/locales.php:310 ../cache/locales.php:343 -msgid "Markdown syntax manual" -msgstr "" - -#: ../cache/locales.php:311 ../cache/locales.php:344 ../cache/locales.php:681 -msgid "Title" -msgstr "" - -#: ../cache/locales.php:312 ../cache/locales.php:345 -msgid "Content" -msgstr "" - -#: ../cache/locales.php:313 ../cache/locales.php:346 -msgid "Link" -msgstr "" - -#: ../cache/locales.php:314 ../cache/locales.php:347 -msgid "Tags" -msgstr "" - -#: ../cache/locales.php:315 ../cache/locales.php:348 -msgid "Please enter a valid url" -msgstr "" - -#: ../cache/locales.php:316 ../cache/locales.php:349 -msgid "No content to preview" -msgstr "" - -#: ../cache/locales.php:317 ../cache/locales.php:350 ../cache/locales.php:687 -msgid "No content" -msgstr "" - -#: ../cache/locales.php:318 ../cache/locales.php:351 -msgid "Post published" -msgstr "" - -#: ../cache/locales.php:319 ../cache/locales.php:352 -msgid "Post deleted" -msgstr "" - -#: ../cache/locales.php:320 ../cache/locales.php:353 -msgid "This picture will be added to your gallery" -msgstr "" - -#: ../cache/locales.php:321 ../cache/locales.php:354 -msgid "What's Hot" -msgstr "" - -#: ../cache/locales.php:322 ../cache/locales.php:355 -msgid "New post" -msgstr "" - -#: ../cache/locales.php:323 ../cache/locales.php:357 -msgid "" -"You can also use services like Imgur or Flickr to host your picture and " -"paste the link here." -msgstr "" - -#: ../cache/locales.php:324 -#, php-format -msgid "This is a re-post from %s" -msgstr "" - -#: ../cache/locales.php:325 -#, php-format -msgid "See %s profile" -msgstr "" - -#: ../cache/locales.php:326 -msgid "Publish this post on your public feed?" -msgstr "" - -#: ../cache/locales.php:327 -msgid "Post published on your blog" -msgstr "" - -#: ../cache/locales.php:328 -msgid "Post removed from your blog" -msgstr "" - -#: ../cache/locales.php:329 ../cache/locales.php:701 -msgid "Delete this post" -msgstr "" - -#: ../cache/locales.php:330 -msgid "You are going to delete this post, please confirm your action" -msgstr "" - -#: ../cache/locales.php:331 -msgid "Comments disabled" -msgstr "" - -#: ../cache/locales.php:332 -msgid "Comment published" -msgstr "" - -#: ../cache/locales.php:333 -msgid "Disconnect" -msgstr "" - -#: ../cache/locales.php:334 -msgid "Your status here !" -msgstr "" - -#: ../cache/locales.php:335 -msgid "Status updated" -msgstr "" - -#: ../cache/locales.php:336 -msgid "Status" -msgstr "" - -#: ../cache/locales.php:337 -msgid "Presence" -msgstr "" - -#: ../cache/locales.php:356 -msgid "Publish" -msgstr "" - -#: ../cache/locales.php:358 -msgid "You cannot publish a post on this Group" -msgstr "" - -#: ../cache/locales.php:359 -msgid "" -"Some fields have been filled in. Do you still want to go back and loose " -"their content?" -msgstr "" - -#: ../cache/locales.php:360 -msgid "Shared" -msgstr "" - -#: ../cache/locales.php:362 -#, php-format -msgid "%s has been added to your public groups" -msgstr "" - -#: ../cache/locales.php:363 -#, php-format -msgid "%s has been removed from your public groups" -msgstr "" - -#: ../cache/locales.php:364 -msgid "Add a chatroom" -msgstr "" - -#: ../cache/locales.php:365 -msgid "You don't have any chatroom yet." -msgstr "" - -#: ../cache/locales.php:366 -msgid "Add one by clicking on the add button in the header." -msgstr "" - -#: ../cache/locales.php:367 -msgid "Chatrooms" -msgstr "" - -#: ../cache/locales.php:370 -msgid "My Favorite Room" -msgstr "" - -#: ../cache/locales.php:374 -msgid "Remove a chatroom" -msgstr "" - -#: ../cache/locales.php:375 -msgid "" -"You are going to remove the following chatroom. Please confirm your action." -msgstr "" - -#: ../cache/locales.php:378 -msgid "Users in the room" -msgstr "" - -#: ../cache/locales.php:379 -msgid "Please enter a correct nickname (6 to 40 characters)" -msgstr "" - -#: ../cache/locales.php:381 -msgid "Public chatroom" -msgstr "" - -#: ../cache/locales.php:382 -msgid "Please provide a room address" -msgstr "" - -#: ../cache/locales.php:383 -msgid "You are currently logued as an anonymous user." -msgstr "" - -#: ../cache/locales.php:384 -msgid "" -"You can join using your own account or create one on the login page by " -"loging out using the cross in the top-right corner." -msgstr "" - -#: ../cache/locales.php:385 -#, php-format -msgid "Login on %s" -msgstr "" - -#: ../cache/locales.php:386 -msgid "Your nickname" -msgstr "" - -#: ../cache/locales.php:387 -msgid "Ungrouped" -msgstr "" - -#: ../cache/locales.php:388 -msgid "Show disconnected contacts" -msgstr "" - -#: ../cache/locales.php:389 -msgid "Hide disconnected contacts" -msgstr "" - -#: ../cache/locales.php:390 -#, php-format -msgid "Show group %s" -msgstr "" - -#: ../cache/locales.php:391 -#, php-format -msgid "Hide group %s" -msgstr "" - -#: ../cache/locales.php:392 -msgid "Please enter a valid Jabber ID" -msgstr "" - -#: ../cache/locales.php:393 -msgid "" -"No contacts ? You can add one using the + button bellow or going to the " -"Explore page" -msgstr "" - -#: ../cache/locales.php:394 -msgid "Show/Hide" -msgstr "" - -#: ../cache/locales.php:395 -msgid "Enter the Jabber ID of your contact." -msgstr "" - -#: ../cache/locales.php:396 -msgid "Press enter to validate." -msgstr "" - -#: ../cache/locales.php:397 -msgid "JID" -msgstr "" - -#: ../cache/locales.php:398 -msgid "Results" -msgstr "" - -#: ../cache/locales.php:399 -msgid "Contact added" -msgstr "" - -#: ../cache/locales.php:401 -msgid "Contact deleted" -msgstr "" - -#: ../cache/locales.php:403 -msgid "This is not a valid url" -msgstr "" - -#: ../cache/locales.php:404 -msgid "Sharing the URL" -msgstr "" - -#: ../cache/locales.php:405 -msgid "Statistics" -msgstr "" - -#: ../cache/locales.php:406 -msgid "Since" -msgstr "" - -#: ../cache/locales.php:407 -msgid "Sessions" -msgstr "" - -#: ../cache/locales.php:409 -msgid "Monthly Subscriptions" -msgstr "" - -#: ../cache/locales.php:410 -msgid "Monthly Subscriptions Cumulated" -msgstr "" - -#: ../cache/locales.php:412 -msgid "" -"Movim is a decentralized social network, before creating a new account you " -"need to choose a server to register." -msgstr "" - -#: ../cache/locales.php:413 -msgid "Your server here ?" -msgstr "" - -#: ../cache/locales.php:414 -msgid "Contact us to add yours to the officially supported servers list" -msgstr "" - -#: ../cache/locales.php:416 -msgid "No public feed for this contact" -msgstr "" - -#: ../cache/locales.php:417 -msgid "No contact specified" -msgstr "" - -#: ../cache/locales.php:418 ../cache/locales.php:473 -msgid "Profile" -msgstr "Profil" - -#: ../cache/locales.php:419 -msgid "Profile Updated" -msgstr "" - -#: ../cache/locales.php:420 -msgid "Profile Not Updated" -msgstr "" - -#: ../cache/locales.php:421 -msgid "Your profile is now public" -msgstr "" - -#: ../cache/locales.php:422 -msgid "Your profile is now restricted" -msgstr "" - -#: ../cache/locales.php:436 -msgid "Twitter" -msgstr "" - -#: ../cache/locales.php:437 -msgid "Skype" -msgstr "" - -#: ../cache/locales.php:438 -msgid "Yahoo" -msgstr "" - -#: ../cache/locales.php:439 -msgid "Privacy Level" -msgstr "" - -#: ../cache/locales.php:440 -msgid "Is this profile public ?" -msgstr "" - -#: ../cache/locales.php:441 -msgid "" -"Please pay attention ! By making your profile public, all the information " -"listed above will be available for all the Movim users and on the whole " -"Internet." -msgstr "" - -#: ../cache/locales.php:442 -msgid "Call" -msgstr "" - -#: ../cache/locales.php:443 -msgid "Hang up" -msgstr "" - -#: ../cache/locales.php:444 -msgid "Connection" -msgstr "" - -#: ../cache/locales.php:445 ../cache/locales.php:451 -msgid "Hung up" -msgstr "" - -#: ../cache/locales.php:446 ../cache/locales.php:452 -msgid "Your contact is busy" -msgstr "" - -#: ../cache/locales.php:447 ../cache/locales.php:453 -msgid "Declined" -msgstr "" - -#: ../cache/locales.php:448 ../cache/locales.php:454 -msgid "Remote application incompatible" -msgstr "" - -#: ../cache/locales.php:450 ../cache/locales.php:456 -msgid "Is calling you" -msgstr "" - -#: ../cache/locales.php:457 -msgid "You don't have javascript enabled. Good luck with that." -msgstr "" - -#: ../cache/locales.php:458 -msgid "" -"Movim is a kickass distributed social networking platform that protect your " -"privacy an comes with a set of awesome features." -msgstr "" - -#: ../cache/locales.php:459 -msgid "Administration" -msgstr "" - -#: ../cache/locales.php:460 -msgid "Home" -msgstr "Hjem" - -#: ../cache/locales.php:461 -msgid "Discover" -msgstr "" - -#: ../cache/locales.php:462 -msgid "Explore" -msgstr "" - -#: ../cache/locales.php:463 -msgid "Account Creation" -msgstr "" - -#: ../cache/locales.php:464 +#: [hello]news [page]news msgid "News" msgstr "" -#: ../cache/locales.php:465 -msgid "Avatar" -msgstr "Avatar" - -#: ../cache/locales.php:467 -msgid "Chats" +#: [hello]news_page +msgid "Read all theses articles on the News page" msgstr "" -#: ../cache/locales.php:470 -msgid "Server" +#: [hello]blog_title +msgid "Visit your public blog" msgstr "" -#: ../cache/locales.php:471 -msgid "Public Groups" +#: [hello]blog_text +msgid "See your public posts and share them with all your contacts" msgstr "" -#: ../cache/locales.php:472 -msgid "Viewer" +#: [hello]share_title +msgid "Universal share button" msgstr "" -#: ../cache/locales.php:474 -msgid "Media" +#: [hello]share_text +msgid "Bookmark or drag and drop the following button in your toolbar and use it on all the pages you want to share on Movim" msgstr "" -#: ../cache/locales.php:475 -msgid "Blog" +#: [hello]share_button +msgid "Share on Movim" msgstr "" -#: ../cache/locales.php:476 -msgid "About" +#: [help]faq +msgid "Frequently Asked Questions" msgstr "" -#: ../cache/locales.php:477 -msgid "Login" +#: [banner]title +msgid "What do the little banners refer to ?" msgstr "" -#: ../cache/locales.php:479 -msgid "Feed" +#: [banner]info1 +msgid "Thanks to these five little banners, you can quickly identitfy the level of confdentiality applied to the information you provide." msgstr "" -#: ../cache/locales.php:481 -msgid "Gallery" +#: [banner]white +msgid "White, only you can see the information" msgstr "" -#: ../cache/locales.php:483 -msgid "Visio-conference" +#: [banner]green +msgid "Green, you have chosen some contacts who can see your information" msgstr "" -#: ../cache/locales.php:484 -msgid "Pods" +#: [banner]orange +msgid "Orange, all your contact list can see your information" msgstr "" -#: ../cache/locales.php:485 -msgid "Share" +#: [banner]red +msgid "Red, everybody in the XMPP network can see your information" msgstr "" -#: ../cache/locales.php:486 -msgid "Room" +#: [banner]black +msgid "Black, the whole Internet can see your information" msgstr "" -#: ../cache/locales.php:487 -#, php-format -msgid "Error: %s" -msgstr "Feil %s" - -#: ../cache/locales.php:488 -#, php-format -msgid "Cannot load file '%s'" +#: [wiki]question +msgid "Looking for some documentation ?" msgstr "" -#: ../cache/locales.php:489 -#, php-format -msgid "Route error, please set all the parameters for the page %s" +#: [wiki]button +msgid "Read the Wiki" msgstr "" -#: ../cache/locales.php:490 -#, php-format -msgid "Requested widget '%s' doesn't exist." +#: [ml]question +msgid "Talk with us by email ?" msgstr "" -#: ../cache/locales.php:491 -#, php-format -msgid "Requested event '%s' not registered." +#: [ml]button +msgid "Join the Mailing List" msgstr "" -#: ../cache/locales.php:492 -msgid "Whoops!" +#: [chatroom]question +msgid "Chat with the team ?" msgstr "" -#: ../cache/locales.php:493 -msgid "It seem that you don't have any pictures here?" +#: [chatroom]button +msgid "Join the Chatroom" msgstr "" -#: ../cache/locales.php:494 -msgid "You can try to upload a couple by going to the Media page" +#: [init]location +msgid "Location node created" msgstr "" -#: ../cache/locales.php:495 -#, php-format -msgid "%s - About" +#: [init]bookmark +msgid "Bookmark node created" msgstr "" -#: ../cache/locales.php:496 -#, php-format -msgid "%s - Account" +#: [init]vcard4 +msgid "Profile node created" msgstr "" -#: ../cache/locales.php:497 -#, php-format -msgid "%s - Administration Panel" +#: [init]avatar +msgid "Avatar node created" msgstr "" -#: ../cache/locales.php:498 -#, php-format -msgid "%s - Blog" +#: [init]subscriptions +msgid "Subscriptions node created" msgstr "" -#: ../cache/locales.php:499 -#, php-format -msgid "%s - Configuration" +#: [init]microblog +msgid "Microblog node created" msgstr "" -#: ../cache/locales.php:500 -#, php-format -msgid "%s - Discover" +#: [location]title +msgid "Location" msgstr "" -#: ../cache/locales.php:501 -#, php-format -msgid "%s - Explore" +#: [location]wrong_postition +msgid "Wrong position" msgstr "" -#: ../cache/locales.php:502 -#, php-format -msgid "%s - Help Page" +#: [location]updated +msgid "Location updated" msgstr "" -#: ../cache/locales.php:503 -#, php-format -msgid "%s - Login to Movim" -msgstr "%s - Logg in på Movim" - -#: ../cache/locales.php:504 -#, php-format -msgid "%s - Welcome to Movim" -msgstr "%s - Velkommen til Movim" - -#: ../cache/locales.php:505 -#, php-format -msgid "%s - Media" +#: [location]update +msgid "Update my position" msgstr "" -#: ../cache/locales.php:506 -#, php-format -msgid "%s - News" +#: [login_anonymous]bad_username +msgid "Bad nickname (between 4 and 40 characters)" msgstr "" -#: ../cache/locales.php:507 -#, php-format -msgid "%s - Group Configuration" +#: [error]username +msgid "Wrong username" msgstr "" -#: ../cache/locales.php:508 -#, php-format -msgid "%s - Group" +#: [error]jid +msgid "Invalid JID" msgstr "" -#: ../cache/locales.php:509 -#, php-format -msgid "%s - 404" +#: [error]empty_challenge +msgid "Empty Challenge from the server" msgstr "" -#: ../cache/locales.php:510 -#, php-format -msgid "%s - Profile" +#: [error]dns +msgid "XMPP Domain error, your account is not a correct Jabber ID" msgstr "" -#: ../cache/locales.php:511 -#, php-format -msgid "%s - Server" +#: [error]data_missings +msgid "Some data are missing !" msgstr "" -#: ../cache/locales.php:512 -msgid "Validate" +#: [error]wrong_password +msgid "Wrong password" +msgstr "Feil passord" + +#: [error]internal +msgid "Internal server error" msgstr "" -#: ../cache/locales.php:513 -msgid "Refresh" +#: [error]session +msgid "Session error" msgstr "" -#: ../cache/locales.php:514 -msgid "Add" +#: [error]account_created +msgid "Account successfully created" msgstr "" -#: ../cache/locales.php:515 -msgid "Delete" +#: [error]xmpp_unauthorized +msgctxt "[error]xmpp_unauthorized" +msgid "Your XMPP server is unauthorized" msgstr "" -#: ../cache/locales.php:516 -msgid "Remove" +#: [error]mec_error +msgid "The server takes too much time to respond" msgstr "" -#: ../cache/locales.php:517 -msgid "Cancel" +#: [error]too_old +msgid "Your web browser is too old to use with Movim." msgstr "" -#: ../cache/locales.php:518 -msgid "Close" +#: [error]websocket +msgid "Movim cannot talk with the server, please try again later (Websocket connection error)" msgstr "" -#: ../cache/locales.php:519 -msgid "Update" +#: [error]impossible +msgid "Impossible login" msgstr "" -#: ../cache/locales.php:520 -msgid "Updating" +#: [error]title +msgid "Oops!" msgstr "" -#: ../cache/locales.php:521 +#: [error]default [visio]unknown_error +msgid "Unknown error" +msgstr "" + +#: [error]login_format +msgid "Invalid username format" +msgstr "" + +#: [error]password_format +msgid "Invalid password format" +msgstr "" + +#: [error]unauthorized +msgctxt "[error]unauthorized" +msgid "Your XMPP server is unauthorized" +msgstr "" + +#: [error]conflict +msgid "A Movim session is already open on an other device" +msgstr "" + +#: [error]wrong_account +msgid "Movim failed to authenticate. You entered wrong data" +msgstr "" + +#: [error]mechanism +msgid "Authentication mechanism not supported by Movim" +msgstr "" + +#: [error]fail_auth +msgid "The XMPP authentification failed" +msgstr "" + +#: [account]title [accounts]accounts_title +msgid "Accounts" +msgstr "" + +#: [form]username +msgid "My address" +msgstr "Min adresse" + +#: [form]create_one +msgid "Create one !" +msgstr "" + +#: [form]another_account +msgid "Another account" +msgstr "" + +#: [form]no_account +msgid "No account yet ?" +msgstr "" + +#: [form]whitelist.info +msgid "You can login with accounts from theses servers" +msgstr "" + +#: [form]connected +msgid "Connected" +msgstr "" + +#: [form]population +msgid "Population" +msgstr "" + +#: [menu]empty_title +msgid "No news yet..." +msgstr "" + +#: [menu]empty +msgid "Welcome on your news feed, here you will see all the posts published by your contacts and in the groups you have subscribed." +msgstr "" + +#: [menu]refresh +msgid "Refreshing all the streams" +msgstr "" + +#: [menu]public +msgid "This post is public" +msgstr "" + +#: [affiliations]title +msgid "Manage your members" +msgstr "" + +#: [affiliations]get +msgid "Get the members" +msgstr "" + +#: [affiliations]saved +msgid "Affiliations saved" +msgstr "" + +#: [subscriptions]title +msgid "Manage your subscriptions" +msgstr "" + +#: [subscriptions]info +msgid "Manage the subscriptions" +msgstr "" + +#: [subscriptions]get +msgid "Get the subscriptions" +msgstr "" + +#: [subscriptions]saved +msgid "Subscriptions saved" +msgstr "" + +#: [notifs]title +msgid "Pending Invitations" +msgstr "" + +#: [notifs]wants_to_talk +msgid "%s wants to talk with you" +msgstr "" + +#: [notifs]manage +msgid "Manage" +msgstr "" + +#: [post]news_feed +msgid "News Feed" +msgstr "" + +#: [post]placeholder +msgid "Discover and register to the groups you are interested in" +msgstr "" + +#: [post]preview [page]preview +msgid "Preview" +msgstr "" + +#: [post]help [page]help +msgid "Help" +msgstr "" + +#: [post]help_more +msgid "More help" +msgstr "" + +#: [post]help_manual +msgid "Markdown syntax manual" +msgstr "" + +#: [post]title +msgid "Title" +msgstr "" + +#: [post]content +msgid "Content" +msgstr "" + +#: [post]link +msgid "Link" +msgstr "" + +#: [post]tags +msgid "Tags" +msgstr "" + +#: [post]valid_url [publish]valid_url +msgid "Please enter a valid url" +msgstr "" + +#: [post]no_content_preview [publish]no_content_preview +msgid "No content to preview" +msgstr "" + +#: [post]no_content [publish]no_content [post]empty +msgid "No content" +msgstr "" + +#: [post]published +msgid "Post published" +msgstr "" + +#: [post]deleted +msgid "Post deleted" +msgstr "" + +#: [post]gallery +msgid "This picture will be added to your gallery" +msgstr "" + +#: [post]hot +msgid "What's Hot" +msgstr "" + +#: [post]hot_text +msgid "Posts recently published in Groups that you are not subscribed (yet)" +msgstr "" + +#: [post]new [publish]new +msgid "New post" +msgstr "" + +#: [post]embed_tip +msgid "You can also use services like Imgur or Flickr to host your picture and paste the link here." +msgstr "" + +#: [post]repost +msgid "This is a re-post from %s" +msgstr "" + +#: [post]repost_profile +msgid "See %s profile" +msgstr "" + +#: [post]public +msgid "Publish this post publicly?" +msgstr "" + +#: [post]blog_add +msgid "Post published on your blog" +msgstr "" + +#: [post]blog_remove +msgid "Post removed from your blog" +msgstr "" + +#: [post]delete_title [post]delete +msgid "Delete this post" +msgstr "" + +#: [post]delete_text +msgid "You are going to delete this post, please confirm your action" +msgstr "" + +#: [post]comments_disabled +msgid "Comments disabled" +msgstr "" + +#: [post]comment_published +msgid "Comment published" +msgstr "" + +#: [status]disconnect +msgid "Disconnect" +msgstr "" + +#: [status]here +msgid "Your status here !" +msgstr "" + +#: [status]updated +msgid "Status updated" +msgstr "" + +#: [status]status +msgid "Status" +msgstr "" + +#: [status]presence +msgid "Presence" +msgstr "" + +#: [status]online +msgid "Online with Movim" +msgstr "" + +#: [publish]title +msgid "Publish" +msgstr "" + +#: [publish]attach +msgid "Add a file or a picture to your post" +msgstr "" + +#: [publish]no_publication +msgid "You cannot publish a post on this Group" +msgstr "" + +#: [publish]form_filled +msgid "Some fields have been filled in. Do you still want to go back and loose their content?" +msgstr "" + +#: [public_groups]shared +msgid "Shared" +msgstr "" + +#: [public_groups]added +msgid "%s has been added to your public groups" +msgstr "" + +#: [rooms]add +msgid "Add a chatroom" +msgstr "" + +#: [rooms]empty_text1 +msgid "You don't have any chatroom yet." +msgstr "" + +#: [rooms]empty_text2 +msgid "Add one by clicking on the add button in the header." +msgstr "" + +#: [chatrooms]title +msgid "Chatrooms" +msgstr "" + +#: [chatrooms]name_placeholder +msgid "My Favorite Room" +msgstr "" + +#: [chatrooms]users +msgid "Users in the room" +msgstr "" + +#: [chatrooms]bad_nickname +msgid "Please enter a correct nickname (2 to 40 characters)" +msgstr "" + +#: [room]anonymous_title +msgid "Public chatroom" +msgstr "" + +#: [room]no_room +msgid "Please provide a room address" +msgstr "" + +#: [room]anonymous_text1 +msgid "You are currently logued as an anonymous user." +msgstr "" + +#: [room]anonymous_text2 +msgid "You can join using your own account or create one on the login page by loging out using the cross in the top-right corner." +msgstr "" + +#: [room]anonymous_login +msgid "Login on %s" +msgstr "" + +#: [room]nick +msgid "Your nickname" +msgstr "" + +#: [roster]ungrouped +msgid "Ungrouped" +msgstr "" + +#: [roster]show_disconnected +msgid "Show disconnected contacts" +msgstr "" + +#: [roster]hide_disconnected +msgid "Hide disconnected contacts" +msgstr "" + +#: [roster]show_group +msgid "Show group %s" +msgstr "" + +#: [roster]hide_group +msgid "Hide group %s" +msgstr "" + +#: [roster]jid_error +msgid "Please enter a valid Jabber ID" +msgstr "" + +#: [roster]no_contacts_title +msgid "No contacts ?" +msgstr "" + +#: [roster]no_contacts_text +msgid "You can add one using the + button bellow" +msgstr "" + +#: [roster]show_hide +msgid "Show/Hide" +msgstr "" + +#: [roster]add_contact_info1 +msgid "Enter the Jabber ID of your contact." +msgstr "" + +#: [roster]add_contact_info2 +msgid "Press enter to validate." +msgstr "" + +#: [roster]jid +msgid "JID" +msgstr "" + +#: [roster]results +msgid "Results" +msgstr "" + +#: [roster]added +msgid "Contact added" +msgstr "" + +#: [roster]deleted +msgid "Contact deleted" +msgstr "" + +#: [roster]search +msgid "Search" +msgstr "" + +#: [share]error +msgid "This is not a valid url" +msgstr "" + +#: [share]success +msgid "Sharing the URL" +msgstr "" + +#: [statistics]title +msgid "Statistics" +msgstr "" + +#: [statistics]since +msgid "Since" +msgstr "" + +#: [statistics]sessions +msgid "Sessions" +msgstr "" + +#: [statistics]monthly_sub +msgid "Monthly Subscriptions" +msgstr "" + +#: [statistics]monthly_sub_cum +msgid "Monthly Subscriptions Cumulated" +msgstr "" + +#: [subscribe]info +msgid "Movim is a decentralized social network, before creating a new account you need to choose a server to register." +msgstr "" + +#: [subscribe]server_question +msgid "Your server here ?" +msgstr "" + +#: [subscribe]server_contact +msgid "Contact us to add yours to the officially supported servers list" +msgstr "" + +#: [feed]nope +msgid "No public feed for this contact" +msgstr "" + +#: [feed]nope_contact +msgid "No contact specified" +msgstr "" + +#: [upload]title +msgid "Upload a file" +msgstr "" + +#: [upload]choose +msgid "Choose a file to upload" +msgstr "" + +#: [vcard]title [page]profile +msgid "Profile" +msgstr "Profil" + +#: [vcard]updated +msgid "Profile Updated" +msgstr "" + +#: [vcard]not_updated +msgid "Profile Not Updated" +msgstr "" + +#: [vcard]public +msgid "Your profile is now public" +msgstr "" + +#: [vcard]restricted +msgid "Your profile is now restricted" +msgstr "" + +#: [general]nickname +msgctxt "[general]nickname" +msgid "Nickname" +msgstr "" + +#: [accounts]twitter +msgid "Twitter" +msgstr "" + +#: [accounts]skype +msgid "Skype" +msgstr "" + +#: [accounts]yahoo +msgid "Yahoo" +msgstr "" + +#: [accounts]accounts_nickname +msgctxt "[accounts]accounts_nickname" +msgid "Nickname" +msgstr "" + +#: [accounts]accounts_yahoo +msgid "Yahoo Account" +msgstr "" + +#: [privacy]privacy_title +msgid "Privacy Level" +msgstr "" + +#: [privacy]privacy_question +msgid "Is this profile public ?" +msgstr "" + +#: [privacy]privacy_info +msgid "Please pay attention ! By making your profile public, all the information listed above will be available for all the Movim users and on the whole Internet." +msgstr "" + +#: [save]submit [button]submit msgid "Submit" msgstr "" -#: ../cache/locales.php:522 -msgid "Submitting" -msgstr "" - -#: ../cache/locales.php:523 +#: [save]reset [button]reset msgid "Reset" msgstr "" -#: ../cache/locales.php:524 +#: [visio]hung_up +msgid "Hung up" +msgstr "" + +#: [visio]busy +msgid "Your contact is busy" +msgstr "" + +#: [visio]declined +msgid "Declined" +msgstr "" + +#: [visio]calling +msgid "Is calling you" +msgstr "" + +#: [visio]call +msgid "Call" +msgstr "" + +#: [visio]hang_up +msgid "Hang up" +msgstr "" + +#: [visio]connection +msgid "Connection" +msgstr "" + +#: [global]no_js +msgid "You don't have javascript enabled. Good luck with that." +msgstr "" + +#: [global]description +msgid "Movim is a kickass distributed social networking platform that protect your privacy an comes with a set of awesome features." +msgstr "" + +#: [page]administration +msgid "Administration" +msgstr "" + +#: [page]home +msgid "Home" +msgstr "Hjem" + +#: [page]discover +msgid "Discover" +msgstr "" + +#: [page]explore +msgid "Explore" +msgstr "" + +#: [page]account_creation +msgid "Account Creation" +msgstr "" + +#: [page]avatar +msgid "Avatar" +msgstr "Avatar" + +#: [page]chats +msgid "Chats" +msgstr "" + +#: [page]server +msgid "Server" +msgstr "" + +#: [page]public_groups +msgid "Public Groups" +msgstr "" + +#: [page]viewer +msgid "Viewer" +msgstr "" + +#: [page]media +msgid "Media" +msgstr "" + +#: [page]blog +msgid "Blog" +msgstr "" + +#: [page]about +msgid "About" +msgstr "" + +#: [page]login +msgid "Login" +msgstr "" + +#: [page]feed +msgid "Feed" +msgstr "" + +#: [page]gallery +msgid "Gallery" +msgstr "" + +#: [page]visio +msgid "Visio-conference" +msgstr "" + +#: [page]pods +msgid "Pods" +msgstr "" + +#: [page]share +msgid "Share" +msgstr "" + +#: [page]room +msgid "Room" +msgstr "" + +#: [error]error +msgid "Error: %s" +msgstr "Feil %s" + +#: [error]cannot_load_file +msgid "Cannot load file '%s'" +msgstr "" + +#: [error]route +msgid "Route error, please set all the parameters for the page %s" +msgstr "" + +#: [error]widget_load_error +msgid "Requested widget '%s' doesn't exist." +msgstr "" + +#: [error]widget_call_error +msgid "Requested event '%s' not registered." +msgstr "" + +#: [error]whoops +msgid "Whoops!" +msgstr "" + +#: [error]media_not_found +msgid "It seem that you don't have any pictures here?" +msgstr "" + +#: [error]media_ask_upload +msgid "You can try to upload a couple by going to the Media page" +msgstr "" + +#: [title]about +msgid "%s - About" +msgstr "" + +#: [title]account +msgid "%s - Account" +msgstr "" + +#: [title]administration +msgid "%s - Administration Panel" +msgstr "" + +#: [title]blog +msgid "%s - Blog" +msgstr "" + +#: [title]configuration +msgid "%s - Configuration" +msgstr "" + +#: [title]discover +msgid "%s - Discover" +msgstr "" + +#: [title]explore +msgid "%s - Explore" +msgstr "" + +#: [title]help +msgid "%s - Help Page" +msgstr "" + +#: [title]login +msgid "%s - Login to Movim" +msgstr "%s - Logg in på Movim" + +#: [title]main +msgid "%s - Welcome to Movim" +msgstr "%s - Velkommen til Movim" + +#: [title]media +msgid "%s - Media" +msgstr "" + +#: [title]news +msgid "%s - News" +msgstr "" + +#: [title]node_configuration +msgid "%s - Group Configuration" +msgstr "" + +#: [title]node +msgid "%s - Group" +msgstr "" + +#: [title]not_found +msgid "%s - 404" +msgstr "" + +#: [title]profile +msgid "%s - Profile" +msgstr "" + +#: [title]server +msgid "%s - Server" +msgstr "" + +#: [button]validate +msgid "Validate" +msgstr "" + +#: [button]refresh +msgid "Refresh" +msgstr "" + +#: [button]add +msgid "Add" +msgstr "" + +#: [button]delete +msgid "Delete" +msgstr "" + +#: [button]cancel +msgid "Cancel" +msgstr "" + +#: [button]close +msgid "Close" +msgstr "" + +#: [button]update +msgid "Update" +msgstr "" + +#: [button]updating +msgid "Updating" +msgstr "" + +#: [button]submitting +msgid "Submitting" +msgstr "" + +#: [button]register msgid "Register" msgstr "" -#: ../cache/locales.php:525 +#: [button]unregister msgid "Unregister" msgstr "" -#: ../cache/locales.php:526 +#: [button]save msgid "Save" msgstr "" -#: ../cache/locales.php:527 +#: [button]clear msgid "Clear" msgstr "" -#: ../cache/locales.php:528 +#: [button]upload msgid "Upload" msgstr "" -#: ../cache/locales.php:529 +#: [button]come_in msgid "Come in!" msgstr "" -#: ../cache/locales.php:530 +#: [button]connecting msgid "Connecting" msgstr "" -#: ../cache/locales.php:531 +#: [button]bool_yes msgid "Yes" msgstr "" -#: ../cache/locales.php:532 +#: [button]bool_no msgid "No" msgstr "" -#: ../cache/locales.php:534 +#: [button]return msgid "Return" msgstr "" -#: ../cache/locales.php:535 +#: [button]accept msgid "Accept" msgstr "Godta" -#: ../cache/locales.php:536 +#: [button]refuse msgid "Refuse" msgstr "" -#: ../cache/locales.php:537 +#: [button]next msgid "Next" msgstr "" -#: ../cache/locales.php:538 +#: [button]previous msgid "Previous" msgstr "" -#: ../cache/locales.php:539 -#, php-format +#: [step]step msgid "Step %s" msgstr "" -#: ../cache/locales.php:542 +#: [day]title msgid "Day" msgstr "" -#: ../cache/locales.php:543 +#: [day]monday msgid "Monday" msgstr "" -#: ../cache/locales.php:544 +#: [day]tuesday msgid "Tuesday" msgstr "" -#: ../cache/locales.php:545 +#: [day]wednesday msgid "Wednesday" msgstr "" -#: ../cache/locales.php:546 +#: [day]thursday msgid "Thursday" msgstr "" -#: ../cache/locales.php:547 +#: [day]friday msgid "Friday" msgstr "" -#: ../cache/locales.php:548 +#: [day]saturday msgid "Saturday" msgstr "" -#: ../cache/locales.php:549 +#: [day]sunday msgid "Sunday" msgstr "" -#: ../cache/locales.php:550 ../cache/locales.php:559 +#: [gender]nil +msgctxt "[gender]nil" msgid "None" msgstr "" -#: ../cache/locales.php:551 +#: [gender]male msgid "Male" msgstr "" -#: ../cache/locales.php:552 +#: [gender]female msgid "Female" msgstr "" -#: ../cache/locales.php:553 +#: [gender]other msgid "Other" msgstr "" -#: ../cache/locales.php:554 +#: [client]bot msgid "Bot" msgstr "" -#: ../cache/locales.php:555 +#: [client]desktop msgid "Desktop" msgstr "" -#: ../cache/locales.php:556 +#: [client]phone msgid "Phone" msgstr "" -#: ../cache/locales.php:557 +#: [client]web msgid "Web" msgstr "" -#: ../cache/locales.php:558 +#: [client]registered msgid "Registered" msgstr "" -#: ../cache/locales.php:560 +#: [marital]nil +msgctxt "[marital]nil" +msgid "None" +msgstr "" + +#: [marital]single msgid "Single" msgstr "" -#: ../cache/locales.php:561 +#: [marital]relationship msgid "In a relationship" msgstr "" -#: ../cache/locales.php:562 +#: [marital]married msgid "Married" msgstr "" -#: ../cache/locales.php:563 +#: [marital]divorced msgid "Divorced" msgstr "" -#: ../cache/locales.php:564 +#: [marital]widowed msgid "Widowed" msgstr "" -#: ../cache/locales.php:565 +#: [marital]cohabiting msgid "Cohabiting" msgstr "" -#: ../cache/locales.php:566 +#: [marital]union msgid "Civil Union" msgstr "" -#: ../cache/locales.php:567 +#: [flag]white msgid "Not shared" msgstr "" -#: ../cache/locales.php:568 +#: [flag]green msgid "Shared with one contact" msgstr "" -#: ../cache/locales.php:569 +#: [flag]orange msgid "Shared with all contacts" msgstr "" -#: ../cache/locales.php:570 +#: [flag]red msgid "Shared with the XMPP network" msgstr "" -#: ../cache/locales.php:571 +#: [flag]black msgid "Shared with the whole Internet" msgstr "" -#: ../cache/locales.php:572 +#: [presence]online msgid "Online" msgstr "" -#: ../cache/locales.php:573 +#: [presence]away msgid "Away" msgstr "Borte" -#: ../cache/locales.php:574 +#: [presence]dnd msgid "Do Not Disturb" msgstr "" -#: ../cache/locales.php:575 +#: [presence]xa msgid "Extended Away" msgstr "" -#: ../cache/locales.php:576 +#: [presence]offline msgid "Offline" msgstr "" -#: ../cache/locales.php:577 +#: [presence]error msgid "Error" msgstr "" -#: ../cache/locales.php:578 +#: [mood]afraid msgid "afraid" msgstr "" -#: ../cache/locales.php:579 +#: [mood]amazed msgid "amazed" msgstr "" -#: ../cache/locales.php:580 +#: [mood]amorous msgid "amorous" msgstr "" -#: ../cache/locales.php:581 +#: [mood]angry msgid "angry" msgstr "" -#: ../cache/locales.php:582 +#: [mood]annoyed msgid "annoyed" msgstr "" -#: ../cache/locales.php:583 +#: [mood]anxious msgid "anxious" msgstr "" -#: ../cache/locales.php:584 +#: [mood]aroused msgid "aroused" msgstr "" -#: ../cache/locales.php:585 +#: [mood]ashamed msgid "ashamed" msgstr "" -#: ../cache/locales.php:586 +#: [mood]bored msgid "bored" msgstr "" -#: ../cache/locales.php:587 +#: [mood]brave msgid "brave" msgstr "" -#: ../cache/locales.php:588 +#: [mood]calm msgid "calm" msgstr "" -#: ../cache/locales.php:589 +#: [mood]cautious msgid "cautious" msgstr "" -#: ../cache/locales.php:590 +#: [mood]cold msgid "cold" msgstr "" -#: ../cache/locales.php:591 +#: [mood]confident msgid "confident" msgstr "" -#: ../cache/locales.php:592 +#: [mood]confused msgid "confused" msgstr "" -#: ../cache/locales.php:593 +#: [mood]contemplative msgid "contemplative" msgstr "" -#: ../cache/locales.php:594 +#: [mood]contented msgid "contented" msgstr "" -#: ../cache/locales.php:595 +#: [mood]cranky msgid "cranky" msgstr "" -#: ../cache/locales.php:596 +#: [mood]crazy msgid "crazy" msgstr "" -#: ../cache/locales.php:597 +#: [mood]creative msgid "creative" msgstr "" -#: ../cache/locales.php:598 +#: [mood]curious msgid "curious" msgstr "" -#: ../cache/locales.php:599 +#: [mood]dejected msgid "dejected" msgstr "" -#: ../cache/locales.php:600 +#: [mood]depressed msgid "depressed" msgstr "" -#: ../cache/locales.php:601 +#: [mood]disappointed msgid "disappointed" msgstr "" -#: ../cache/locales.php:602 +#: [mood]disgusted msgid "disgusted" msgstr "" -#: ../cache/locales.php:603 +#: [mood]dismayed msgid "dismayed" msgstr "" -#: ../cache/locales.php:604 +#: [mood]distracted msgid "distracted" msgstr "" -#: ../cache/locales.php:605 +#: [mood]embarrassed msgid "embarrassed" msgstr "" -#: ../cache/locales.php:606 +#: [mood]envious msgid "envious" msgstr "" -#: ../cache/locales.php:607 +#: [mood]excited msgid "excited" msgstr "" -#: ../cache/locales.php:608 +#: [mood]flirtatious msgid "flirtatious" msgstr "" -#: ../cache/locales.php:609 +#: [mood]frustated msgid "frustated" msgstr "" -#: ../cache/locales.php:610 +#: [mood]grateful msgid "grateful" msgstr "" -#: ../cache/locales.php:611 +#: [mood]grieving msgid "grieving" msgstr "" -#: ../cache/locales.php:612 +#: [mood]grumpy msgid "grumpy" msgstr "" -#: ../cache/locales.php:613 +#: [mood]guilty msgid "guilty" msgstr "" -#: ../cache/locales.php:614 +#: [mood]happy msgid "happy" msgstr "" -#: ../cache/locales.php:615 +#: [mood]hopeful msgid "hopeful" msgstr "" -#: ../cache/locales.php:616 +#: [mood]hot msgid "hot" msgstr "" -#: ../cache/locales.php:617 +#: [mood]humbled msgid "humbled" msgstr "" -#: ../cache/locales.php:618 +#: [mood]humiliated msgid "humiliated" msgstr "" -#: ../cache/locales.php:619 +#: [mood]hungry msgid "hungry" msgstr "" -#: ../cache/locales.php:620 +#: [mood]hurt msgid "hurt" msgstr "" -#: ../cache/locales.php:621 +#: [mood]impressed msgid "impressed" msgstr "" -#: ../cache/locales.php:622 +#: [mood]in_awe msgid "in awe" msgstr "" -#: ../cache/locales.php:623 +#: [mood]in_love msgid "in love" msgstr "" -#: ../cache/locales.php:624 +#: [mood]indignant msgid "indignant" msgstr "" -#: ../cache/locales.php:625 +#: [mood]interested msgid "interested" msgstr "" -#: ../cache/locales.php:626 +#: [mood]intoxicated msgid "intoxicated" msgstr "" -#: ../cache/locales.php:627 +#: [mood]invincible msgid "invincible" msgstr "" -#: ../cache/locales.php:628 +#: [mood]jealous msgid "jealous" msgstr "" -#: ../cache/locales.php:629 +#: [mood]lonely msgid "lonely" msgstr "" -#: ../cache/locales.php:630 +#: [mood]lost msgid "lost" msgstr "" -#: ../cache/locales.php:631 +#: [mood]lucky msgid "lucky" msgstr "" -#: ../cache/locales.php:632 +#: [mood]mean msgid "mean" msgstr "" -#: ../cache/locales.php:633 +#: [mood]moody msgid "moody" msgstr "" -#: ../cache/locales.php:634 +#: [mood]nervous msgid "nervous" msgstr "" -#: ../cache/locales.php:635 +#: [mood]neutral msgid "neutral" msgstr "" -#: ../cache/locales.php:636 +#: [mood]offended msgid "offended" msgstr "" -#: ../cache/locales.php:637 +#: [mood]outraged msgid "outraged" msgstr "" -#: ../cache/locales.php:638 +#: [mood]playful msgid "playful" msgstr "" -#: ../cache/locales.php:639 +#: [mood]proud msgid "proud" msgstr "" -#: ../cache/locales.php:640 +#: [mood]relaxed msgid "relaxed" msgstr "" -#: ../cache/locales.php:641 +#: [mood]relieved msgid "relieved" msgstr "" -#: ../cache/locales.php:642 -msgid "remorseful" -msgstr "" - -#: ../cache/locales.php:643 +#: [mood]restless msgid "restless" msgstr "" -#: ../cache/locales.php:644 +#: [mood]sad msgid "sad" msgstr "" -#: ../cache/locales.php:645 +#: [mood]sarcastic msgid "sarcastic" msgstr "" -#: ../cache/locales.php:646 +#: [mood]satisfied msgid "satisfied" msgstr "" -#: ../cache/locales.php:647 +#: [mood]serious msgid "serious" msgstr "" -#: ../cache/locales.php:648 +#: [mood]shocked msgid "shocked" msgstr "" -#: ../cache/locales.php:649 +#: [mood]shy msgid "shy" msgstr "" -#: ../cache/locales.php:650 +#: [mood]sick msgid "sick" msgstr "" -#: ../cache/locales.php:651 +#: [mood]sleepy msgid "sleepy" msgstr "" -#: ../cache/locales.php:652 +#: [mood]spontaneous msgid "spontaneous" msgstr "" -#: ../cache/locales.php:653 +#: [mood]stressed msgid "stressed" msgstr "" -#: ../cache/locales.php:654 +#: [mood]strong msgid "strong" msgstr "" -#: ../cache/locales.php:655 +#: [mood]surprised msgid "surprised" msgstr "" -#: ../cache/locales.php:656 +#: [mood]thankful msgid "thankful" msgstr "" -#: ../cache/locales.php:657 +#: [mood]thirsty msgid "thirsty" msgstr "" -#: ../cache/locales.php:658 +#: [mood]tired msgid "tired" msgstr "" -#: ../cache/locales.php:659 +#: [mood]undefined msgid "undefined" msgstr "" -#: ../cache/locales.php:660 +#: [mood]weak msgid "weak" msgstr "" -#: ../cache/locales.php:661 +#: [mood]worried msgid "worried" msgstr "" -#: ../cache/locales.php:662 +#: [month]title msgid "Month" msgstr "" -#: ../cache/locales.php:663 +#: [month]january msgid "January" msgstr "" -#: ../cache/locales.php:664 +#: [month]february msgid "February" msgstr "" -#: ../cache/locales.php:665 +#: [month]march msgid "March" msgstr "" -#: ../cache/locales.php:666 +#: [month]april msgid "April" msgstr "" -#: ../cache/locales.php:667 +#: [month]may msgid "May" msgstr "" -#: ../cache/locales.php:668 +#: [month]june msgid "June" msgstr "" -#: ../cache/locales.php:669 +#: [month]july msgid "July" msgstr "" -#: ../cache/locales.php:670 +#: [month]august msgid "August" msgstr "" -#: ../cache/locales.php:671 +#: [month]september msgid "September" msgstr "" -#: ../cache/locales.php:672 +#: [month]october msgid "October" msgstr "" -#: ../cache/locales.php:673 +#: [month]november msgid "November" msgstr "" -#: ../cache/locales.php:674 +#: [month]december msgid "December" msgstr "" -#: ../cache/locales.php:675 +#: [year]title msgid "Year" msgstr "" -#: ../cache/locales.php:676 +#: [date]today msgid "Today" msgstr "" -#: ../cache/locales.php:677 +#: [date]tomorrow msgid "Tomorrow" msgstr "" -#: ../cache/locales.php:678 +#: [date]yesterday msgid "Yesterday" msgstr "" -#: ../cache/locales.php:679 -#, php-format -msgid " %d days ago" +#: [date]ago +msgid "%d days ago" msgstr "" -#: ../cache/locales.php:680 +#: [date]day msgid "day" msgstr "" -#: ../cache/locales.php:682 +#: [post]whats_new msgid "What's new ?" msgstr "" -#: ../cache/locales.php:683 +#: [post]place msgid "Place" msgstr "" -#: ../cache/locales.php:684 +#: [post]by msgid "by" msgstr "" -#: ../cache/locales.php:685 +#: [post]geolocalisation msgid "Geolocalisation" msgstr "" -#: ../cache/locales.php:686 +#: [post]email msgid "email" msgstr "" -#: ../cache/locales.php:688 +#: [post]no_comments msgid "No comments yet" msgstr "" -#: ../cache/locales.php:689 +#: [post]no_comments_stream msgid "No comments stream" msgstr "" -#: ../cache/locales.php:690 +#: [post]no_load msgid "Your feed cannot be loaded." msgstr "" -#: ../cache/locales.php:691 +#: [post]older msgid "Get older posts" msgstr "" -#: ../cache/locales.php:692 -#, php-format +#: [post]new_items msgid "%s new items" msgstr "" -#: ../cache/locales.php:693 +#: [post]comment_error msgid "Comment publication error" msgstr "" -#: ../cache/locales.php:694 +#: [post]comments_older msgid "Show the older comments" msgstr "" -#: ../cache/locales.php:695 -msgid "Loading comments ..." +#: [post]comments_loading +msgid "Loading comments..." msgstr "" -#: ../cache/locales.php:696 +#: [post]comments_get msgid "Get the comments" msgstr "" -#: ../cache/locales.php:697 +#: [post]comment_add msgid "Add a comment" msgstr "" -#: ../cache/locales.php:698 +#: [post]share msgid "Share with" msgstr "" -#: ../cache/locales.php:699 +#: [post]share_everyone msgid "Everyone" msgstr "" -#: ../cache/locales.php:700 +#: [post]share_your_contacts msgid "Your contacts" msgstr "" -#: ../cache/locales.php:702 +#: [post]updated msgid "Updated" msgstr "" -#: ../cache/locales.php:703 +#: [post]content_not_found msgid "Content not found" msgstr "" -#: ../cache/locales.php:704 +#: [post]default_title msgid "Contact publication" msgstr "" -#: ../cache/locales.php:705 +#: [post]comments msgid "Comments" msgstr "" -#: ../cache/locales.php:706 +#: [api]error msgid "The API is not reachable, try again later" msgstr "" -#: ../cache/locales.php:707 +#: [field]type_here msgid "Type here" msgstr "" #~ msgid "User not logged in." #~ msgstr "Bruker ikke logget inn" -#~ msgid "Remove this contact" -#~ msgstr "Fjern denne kontakten" - #~ msgid "wants to talk with you" #~ msgstr "vil snakke med deg" diff --git a/sources/locales/oc.po b/sources/locales/oc.po index caaa16f..12838f9 100644 --- a/sources/locales/oc.po +++ b/sources/locales/oc.po @@ -1,2606 +1,2739 @@ # Occitan translations for Movim package. # This file is distributed under the same license as the Movim package. # This file was translated from CodingTeam at . +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/About/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Account/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AccountNext/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AdHoc/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AdminDB/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AdminMain/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AdminTest/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Api/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Avatar/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Blog/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Bookmark/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Chat/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Chats/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/ConfigData/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Config/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Contact/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Group/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Groups/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Header/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Hello/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Help/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Init/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Location/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/LoginAnonymous/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Login/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Menu/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/NodeAffiliations/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/NodeSubscriptions/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Notifs/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Post/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Presence/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Publish/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/PubsubSubscriptionConfig/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Rooms/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Roster/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Share/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Statistics/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Subscribe/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Syndication/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Upload/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Vcard4/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/VisioExt/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Visio/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../locales/locales.ini msgid "" msgstr "" "Project-Id-Version: Movim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-06-08 22:06+0200\n" +"POT-Creation-Date: 2015-08-20 15:17+0200\n" "PO-Revision-Date: 2015-06-09 12:18+0000\n" "Last-Translator: edhelas \n" "Language-Team: LANGUAGE \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2015-06-18 21:08+0000\n" "X-Generator: Launchpad (build 17570)\n" -"Language: \n" -#: ../cache/locales.php:2 +#: [about]thanks msgid "Thanks" msgstr "" -#: ../cache/locales.php:3 +#: [about]developers msgid "Developers" msgstr "" -#: ../cache/locales.php:4 +#: [about]translators msgid "Translators" msgstr "" -#: ../cache/locales.php:5 +#: [about]software msgid "Software" msgstr "Logicials" -#: ../cache/locales.php:6 +#: [about]resources msgid "Resources" msgstr "" -#: ../cache/locales.php:7 ../cache/locales.php:83 ../cache/locales.php:85 +#: [about]api [schema]api [api]title msgid "API" msgstr "" -#: ../cache/locales.php:8 -msgid "" -"Movim is an XMPP-based communication platform. All the project, except the " -"following software and resources, is under" +#: [about]info +msgid "Movim is an XMPP-based communication platform. All the project, except the following software and resources, is under" msgstr "" -#: ../cache/locales.php:9 +#: [account]title msgid "Account" msgstr "" -#: ../cache/locales.php:10 -msgid "The password has been updated" -msgstr "" +#: [account]password_change_title +#, fuzzy +msgid "Change my password" +msgstr "Marrit senhal" -#: ../cache/locales.php:11 -msgid "Please provide a valid password (6 characters minimum)" -msgstr "" - -#: ../cache/locales.php:12 -msgid "The provided passwords are not the same" -msgstr "" - -#: ../cache/locales.php:13 -msgid "Delete my account" -msgstr "" - -#: ../cache/locales.php:14 -msgid "" -"You will delete your XMPP account and all the relative information linked to " -"it (profile, contacts and publications)." -msgstr "" - -#: ../cache/locales.php:15 -msgid "Are you sure that you want to delete it ?" -msgstr "" - -#: ../cache/locales.php:16 ../cache/locales.php:411 -msgid "Create a new account" -msgstr "Crear un compte novèl" - -#: ../cache/locales.php:17 -msgid "No account creation form found on the server" -msgstr "" - -#: ../cache/locales.php:18 ../cache/locales.php:172 -msgid "on" -msgstr "lo" - -#: ../cache/locales.php:19 -msgid "Your acccount has been successfully registered" -msgstr "" - -#: ../cache/locales.php:20 -msgid "Loading" -msgstr "" - -#: ../cache/locales.php:21 -msgid "Not Acceptable" -msgstr "" - -#: ../cache/locales.php:22 -msgid "The registration system of this server is currently unavailable" -msgstr "" - -#: ../cache/locales.php:23 -msgid "" -"This server use an external system for the registration, please click on the " -"following URL." -msgstr "" - -#: ../cache/locales.php:24 -msgid "Actions" -msgstr "Accions" - -#: ../cache/locales.php:25 ../cache/locales.php:82 -msgid "Database" -msgstr "" - -#: ../cache/locales.php:26 -msgid "Modl wasn't able to connect to the database" -msgstr "" - -#: ../cache/locales.php:27 -msgid "Movim is connected to the database" -msgstr "" - -#: ../cache/locales.php:28 -msgid "The database need to be updated" -msgstr "" - -#: ../cache/locales.php:29 -msgid "Movim database is up to date" -msgstr "" - -#: ../cache/locales.php:30 -msgid "Database Type" -msgstr "" - -#: ../cache/locales.php:31 ../cache/locales.php:50 ../cache/locales.php:540 -msgid "Username" -msgstr "Nom d'utilizaire" - -#: ../cache/locales.php:32 ../cache/locales.php:51 ../cache/locales.php:282 -#: ../cache/locales.php:541 +#: [account]password [db]password [credentials]password [form]password +#: [input]password msgid "Password" msgstr "Senhal" -#: ../cache/locales.php:33 +#: [account]password_confirmation +#, fuzzy +msgid "Password confirmation" +msgstr "%s - Configuracion" + +#: [account]password_changed +msgid "The password has been updated" +msgstr "" + +#: [account]password_not_valid +msgid "Please provide a valid password (6 characters minimum)" +msgstr "" + +#: [account]password_not_same +msgid "The provided passwords are not the same" +msgstr "" + +#: [account]delete_title +msgid "Delete my account" +msgstr "" + +#: [account]delete +#, fuzzy +msgid "Delete your account" +msgstr "Crear un compte novèl" + +#: [account]delete_text +msgid "You will delete your XMPP account and all the relative information linked to it (profile, contacts and publications)." +msgstr "" + +#: [account]delete_text_confirm +msgid "Are you sure that you want to delete it ?" +msgstr "" + +#: [account]gateway_title +msgid "Gateway" +msgstr "" + +#: [create]title [subscribe]title +msgid "Create a new account" +msgstr "Crear un compte novèl" + +#: [create]notfound +msgid "No account creation form found on the server" +msgstr "" + +#: [create]server_on +msgid "on" +msgstr "lo" + +#: [create]successfull +msgid "Your acccount has been successfully registered" +msgstr "" + +#: [create]loading +msgid "Loading" +msgstr "" + +#: [error]not_acceptable +msgid "Not Acceptable" +msgstr "" + +#: [error]service_unavailable +msgid "The registration system of this server is currently unavailable" +msgstr "" + +#: [oob]about +msgid "This server use an external system for the registration, please click on the following URL." +msgstr "" + +#: [adhoc]title +msgid "Actions" +msgstr "Accions" + +#: [db]legend [schema]database +msgid "Database" +msgstr "" + +#: [db]connect_error +msgid "Modl wasn't able to connect to the database" +msgstr "" + +#: [db]connect_success +msgid "Movim is connected to the database" +msgstr "" + +#: [db]update +msgid "The database need to be updated" +msgstr "" + +#: [db]up_to_date +msgid "Movim database is up to date" +msgstr "" + +#: [db]type +msgid "Database Type" +msgstr "" + +#: [db]username [credentials]username [input]username +msgid "Username" +msgstr "Nom d'utilizaire" + +#: [db]host msgid "Host" msgstr "" -#: ../cache/locales.php:34 +#: [db]port msgid "Port" msgstr "" -#: ../cache/locales.php:35 -msgid "Database Name" -msgstr "" +#: [db]name +#, fuzzy +msgid "Database sName" +msgstr "Banca de donadas detectada" -#: ../cache/locales.php:36 +#: [admin]general msgid "General Settings" msgstr "Configuracion generala" -#: ../cache/locales.php:37 +#: [general]theme msgid "Theme" msgstr "Tèma" -#: ../cache/locales.php:38 +#: [general]language msgid "Default language" msgstr "Lenga per defaut" -#: ../cache/locales.php:39 -msgid "Environment" -msgstr "Environament" - -#: ../cache/locales.php:40 +#: [general]log_verbosity msgid "Log verbosity" msgstr "Nivèl de jornalizacion" -#: ../cache/locales.php:41 +#: [general]timezone msgid "Server Timezone" msgstr "Fus orari del servidor" -#: ../cache/locales.php:42 +#: [general]limit msgid "User folder size limit (in bytes)" msgstr "" -#: ../cache/locales.php:43 +#: [websocket]title msgid "WebSocket Configuration" msgstr "" -#: ../cache/locales.php:44 +#: [websocket]info msgid "Enter here a valid WebSocket URI in the form" msgstr "" -#: ../cache/locales.php:45 +#: [websocket]label msgid "WebSocket URI" msgstr "" -#: ../cache/locales.php:46 -msgid "" -"If you change the URI, please restart the daemon to reload the configuration" +#: [websocket]save_info +msgid "If you change the URI, please restart the daemon to reload the configuration" msgstr "" -#: ../cache/locales.php:47 +#: [websocket]publics msgid "Public WebSockets" msgstr "" -#: ../cache/locales.php:48 +#: [credentials]title msgid "Administration Credential" msgstr "Identificacion de l'administrator" -#: ../cache/locales.php:49 +#: [credentials]info msgid "Change the default credentials admin/password" msgstr "" -#: ../cache/locales.php:52 +#: [credentials]re_password msgid "Retype password" msgstr "Tornar picar lo senhal" -#: ../cache/locales.php:53 +#: [whitelist]title msgid "Whitelist - XMPP Server" msgstr "Servidors XMPP - Lista blancha" -#: ../cache/locales.php:54 -msgid "" -"If you want to specify a list of authorized XMPP servers on your Movim pod " -"and forbid the connection on all the others please put their domain name " -"here, with comma (ex: movim.eu,jabber.fr)" -msgstr "" -"Si desiratz especificar una lista de servidors XMPP autorizats sus vòstre " -"pòd Movim e interdire la connexion a tots los autres, especificatz si vos " -"plai la lista de lor noms de domeni, separats per de las virgulas (ex: " -"movim.eu, jabber.fr)" +#: [whitelist]info1 +msgid "If you want to specify a list of authorized XMPP servers on your Movim pod and forbid the connection on all the others please put their domain name here, with comma (ex: movim.eu,jabber.fr)" +msgstr "Si desiratz especificar una lista de servidors XMPP autorizats sus vòstre pòd Movim e interdire la connexion a tots los autres, especificatz si vos plai la lista de lor noms de domeni, separats per de las virgulas (ex: movim.eu, jabber.fr)" -#: ../cache/locales.php:55 -msgid "" -"Leave this field blank if you allow the access to all the XMPP accounts." -msgstr "" -"Daissatz aqueste champ void se desiratz autorizar la connexion a totes los " -"comptes XMPP." +#: [whitelist]info2 +msgid "Leave this field blank if you allow the access to all the XMPP accounts." +msgstr "Daissatz aqueste champ void se desiratz autorizar la connexion a totes los comptes XMPP." -#: ../cache/locales.php:56 +#: [whitelist]label msgid "List of whitelisted XMPP servers" msgstr "Lista blancha dels servidors XMPP" -#: ../cache/locales.php:57 ../cache/locales.php:61 +#: [information]title +#, fuzzy +msgctxt "[information]title" msgid "Information Message" msgstr "Messatge d'informacion" -#: ../cache/locales.php:58 +#: [information]description msgid "Description" msgstr "Descripcion" -#: ../cache/locales.php:59 +#: [information]info1 msgid "This message will be displayed on the login page" msgstr "" -#: ../cache/locales.php:60 -msgid "Leave this field blank if you don't want to show any message." -msgstr "" +#: [information]info2 +#, fuzzy +msgid "Leave this field blank if you dont want to show any message." +msgstr "Daissatz aqueste champ void se desiratz autorizar la connexion a totes los comptes XMPP." -#: ../cache/locales.php:62 +#: [information]label +#, fuzzy +msgctxt "[information]label" +msgid "Information Message" +msgstr "Messatge d'informacion" + +#: [log]empty msgid "Empty" msgstr "" -#: ../cache/locales.php:63 +#: [log]syslog msgid "Syslog" msgstr "" -#: ../cache/locales.php:64 +#: [log]syslog_files msgid "Syslog and files" msgstr "" -#: ../cache/locales.php:65 +#: [rewrite]title msgid "URL Rewriting" msgstr "" -#: ../cache/locales.php:66 +#: [rewrite]info msgid "The URL Rewriting can be enabled" msgstr "" -#: ../cache/locales.php:67 +#: [admin]compatibility msgid "General Overview" msgstr "" -#: ../cache/locales.php:68 -msgid "" -"Movim has found some issues or things that need to be fixed or improved" +#: [compatibility]info +msgid "Movim has found some issues or things that need to be fixed or improved" msgstr "" -#: ../cache/locales.php:69 -#, php-format +#: [compatibility]php1 msgid "Update your PHP-Version: %s" msgstr "" -#: ../cache/locales.php:70 +#: [compatibility]php2 msgid "Required: 5.3.0" msgstr "" -#: ../cache/locales.php:71 +#: [compatibility]curl msgid "Install the php5-curl library" msgstr "" -#: ../cache/locales.php:72 +#: [compatibility]imagick msgid "Install the php5-imagick library" msgstr "" -#: ../cache/locales.php:73 +#: [compatibility]gd msgid "Install the php5-gd library" msgstr "" -#: ../cache/locales.php:74 -msgid "Read and write rights for the webserver in Movim's root directory" -msgstr "" -"Movim a pas los dreches de lectura nimai d'escritura dins son dorsier raiç" +#: [compatibility]rights +#, fuzzy +msgid "Read and write rights for the webserver in Movims root directory" +msgstr "Movim a pas los dreches de lectura nimai d'escritura dins son dorsier raiç" -#: ../cache/locales.php:75 +#: [compatibility]rewrite msgid "The URL Rewriting support is currently disabled" msgstr "" -#: ../cache/locales.php:76 +#: [compatibility]db msgid "The database need to be updated, go to the database panel to fix this" msgstr "" -#: ../cache/locales.php:77 -msgid "" -"WebSocket connection error, check if the Movim Daemon is running and is " -"reacheable" +#: [compatibility]websocket +msgid "WebSocket connection error, check if the Movim Daemon is running and is reachable" msgstr "" -#: ../cache/locales.php:78 -msgid "" -"XMPP Websocket connection error, please check the validity of the URL given " -"in the General Configuration" +#: [compatibility]xmpp_websocket +msgid "XMPP Websocket connection error, please check the validity of the URL given in the General Configuration" msgstr "" -#: ../cache/locales.php:79 +#: [schema]browser msgid "Browser" msgstr "" -#: ../cache/locales.php:80 +#: [schema]movim msgid "Movim Core" msgstr "" -#: ../cache/locales.php:81 +#: [schema]daemon msgid "Movim Daemon" msgstr "" -#: ../cache/locales.php:84 +#: [schema]xmpp msgid "XMPP" msgstr "" -#: ../cache/locales.php:86 -#, php-format -msgid "" -"Here you can register your pod on the official %sMovim API%s and be listed " -"on %sthe pods page%s." +#: [api]info +msgid "Here you can register your pod on the official %sMovim API%s and be listed on %sthe pods page%s." msgstr "" -#: ../cache/locales.php:87 +#: [api]register msgid "Your pod is not registered on the API" msgstr "" -#: ../cache/locales.php:88 +#: [api]registered msgid "Your pod is registered on the API" msgstr "" -#: ../cache/locales.php:89 +#: [api]wait msgid "Your pod is not yet validated" msgstr "" -#: ../cache/locales.php:90 +#: [api]validated msgid "Your pod is validated" msgstr "" -#: ../cache/locales.php:91 -msgid "" -"You asked to be removed from the API, this request will be processed in a " -"couple of hours" +#: [api]unregister +msgid "You asked to be removed from the API, this request will be processed in a couple of hours" msgstr "" -#: ../cache/locales.php:92 ../cache/locales.php:147 +#: [api]conf_updated [config]updated msgid "Configuration updated" msgstr "" -#: ../cache/locales.php:93 +#: [avatar]file msgid "File" msgstr "" -#: ../cache/locales.php:94 +#: [avatar]use_it msgid "Use it" msgstr "" -#: ../cache/locales.php:95 +#: [avatar]webcam msgid "Webcam" msgstr "Webcam" -#: ../cache/locales.php:96 +#: [avatar]cheese msgid "Cheese !" msgstr "Sorissètz !" -#: ../cache/locales.php:97 +#: [avatar]snapshot msgid "Take a webcam snapshot" msgstr "Prene una fòto amb vòstre aparelh fòto" -#: ../cache/locales.php:98 +#: [avatar]updated msgid "Avatar Updated" msgstr "" -#: ../cache/locales.php:99 +#: [avatar]not_updated msgid "Avatar Not Updated" msgstr "" -#: ../cache/locales.php:100 ../cache/locales.php:415 -#, php-format +#: [blog]title [feed]title msgid "%s's feed" msgstr "" -#: ../cache/locales.php:101 +#: [blog]empty msgid "This user has not posted anything right now" msgstr "" -#: ../cache/locales.php:102 +#: [title]conferences msgid "Conferences" msgstr "Conferéncias" -#: ../cache/locales.php:103 ../cache/locales.php:193 ../cache/locales.php:217 -#: ../cache/locales.php:468 +#: [title]groups [group]empty_title [menu]groups [page]groups msgid "Groups" msgstr "Gropes" -#: ../cache/locales.php:104 +#: [chatroom]add msgid "Add a new Chat Room" msgstr "" -#: ../cache/locales.php:105 ../cache/locales.php:368 +#: [chatroom]id [chatrooms]id msgid "Chat Room ID" msgstr "" -#: ../cache/locales.php:106 ../cache/locales.php:116 ../cache/locales.php:156 -#: ../cache/locales.php:361 ../cache/locales.php:369 ../cache/locales.php:424 +#: [chatroom]name +#, fuzzy +msgctxt "[chatroom]name" msgid "Name" msgstr "Nom" -#: ../cache/locales.php:107 ../cache/locales.php:157 ../cache/locales.php:371 -#: ../cache/locales.php:425 +#: [chatroom]nickname [general]nickname [chatrooms]nickname msgid "Nickname" msgstr "Escais" -#: ../cache/locales.php:108 +#: [chatroom]autojoin_label msgid "Do you want do join automaticaly this Chat Room ?" msgstr "" -#: ../cache/locales.php:109 ../cache/locales.php:372 +#: [chatroom]bad_id [chatrooms]bad_id msgid "Bad Chatroom ID" msgstr "" -#: ../cache/locales.php:110 ../cache/locales.php:373 +#: [chatroom]empty_name [chatrooms]empty_name msgid "Empty name" msgstr "Nom void" -#: ../cache/locales.php:111 ../cache/locales.php:380 +#: [bookmarks]updated msgid "Bookmarks updated" msgstr "Signets meses a jorn" -#: ../cache/locales.php:112 -msgid "An error occured : " +#: [bookmarks]error +#, fuzzy +msgid "An error occured :" msgstr "Una error s'es produsida : " -#: ../cache/locales.php:113 +#: [bookmarks]configure msgid "Configure" msgstr "" -#: ../cache/locales.php:114 +#: [url]add msgid "Add a new URL" msgstr "" -#: ../cache/locales.php:115 +#: [url]url msgid "URL" msgstr "" -#: ../cache/locales.php:117 +#: [url]name +#, fuzzy +msgctxt "[url]name" +msgid "Name" +msgstr "Nom" + +#: [message]published msgid "Message Published" msgstr "Messatge publicat" -#: ../cache/locales.php:118 ../cache/locales.php:138 +#: [message]encrypted msgid "Encrypted message" msgstr "Messatge chifrat" -#: ../cache/locales.php:119 +#: [message]composing [chats]composing msgid "Composing..." msgstr "A escriure..." -#: ../cache/locales.php:120 +#: [message]paused [chats]paused msgid "Paused..." msgstr "" -#: ../cache/locales.php:121 +#: [message]gone msgid "Contact gone" msgstr "" -#: ../cache/locales.php:122 -#, php-format +#: [chat]attention msgid "%s needs your attention" msgstr "%s a besonh de vòstre atencion" -#: ../cache/locales.php:123 +#: [chat]placeholder msgid "Your message here..." msgstr "" -#: ../cache/locales.php:124 +#: [chat]smileys msgid "Smileys" msgstr "" -#: ../cache/locales.php:125 ../cache/locales.php:139 +#: [chat]empty_title [button]chat msgid "Chat" msgstr "Messatjariá instantanèa (chat)" -#: ../cache/locales.php:126 +#: [chat]empty_text msgid "Discuss with your contacts" msgstr "" -#: ../cache/locales.php:127 -msgid "Members" -msgstr "" - -#: ../cache/locales.php:128 ../cache/locales.php:376 -msgid "Connected to the chatroom" -msgstr "" - -#: ../cache/locales.php:129 ../cache/locales.php:377 -msgid "Disconnected from the chatroom" -msgstr "" - -#: ../cache/locales.php:130 ../cache/locales.php:200 ../cache/locales.php:469 -msgid "Configuration" -msgstr "Configuracion" - -#: ../cache/locales.php:131 -msgid "Configuration saved" -msgstr "" - -#: ../cache/locales.php:132 -msgid "Subject" -msgstr "" - -#: ../cache/locales.php:133 -msgid "Subject changed" -msgstr "" - -#: ../cache/locales.php:134 -msgid "Open a new conversation by clicking on the plus button bellow" -msgstr "" - -#: ../cache/locales.php:135 -msgid "Chat with a contact" -msgstr "" - -#: ../cache/locales.php:136 +#: [chat]frequent [chats]frequent msgid "Frequent contacts" msgstr "" -#: ../cache/locales.php:137 +#: [chatroom]members +msgid "Members" +msgstr "" + +#: [chatroom]connected [chatrooms]connected +msgid "Connected to the chatroom" +msgstr "" + +#: [chatroom]disconnected [chatrooms]disconnected +msgid "Disconnected from the chatroom" +msgstr "" + +#: [chatroom]config [group]configuration [page]configuration +msgid "Configuration" +msgstr "Configuracion" + +#: [chatroom]config_saved +msgid "Configuration saved" +msgstr "" + +#: [chatroom]subject +msgid "Subject" +msgstr "" + +#: [chatroom]subject_changed +msgid "Subject changed" +msgstr "" + +#: [chats]empty_title +msgid "No chats yet..." +msgstr "" + +#: [chats]empty +msgid "Open a new conversation by clicking on the plus button bellow or visit the Contacts page." +msgstr "" + +#: [chats]add +msgid "Chat with a contact" +msgstr "" + +#: [chats]more msgid "Load more contacts" msgstr "" -#: ../cache/locales.php:140 -msgid "General" -msgstr "" - -#: ../cache/locales.php:141 -msgid "Language" -msgstr "Lenga" - -#: ../cache/locales.php:142 -msgid "Roster display" -msgstr "" - -#: ../cache/locales.php:143 -msgid "Show the offline contacts" -msgstr "" - -#: ../cache/locales.php:144 -msgid "Hide the offline contacts" -msgstr "" - -#: ../cache/locales.php:145 -msgid "Appearence" -msgstr "" - -#: ../cache/locales.php:146 -msgid "This configuration is shared wherever you are connected !" -msgstr "" - -#: ../cache/locales.php:148 -msgid "Notify on incoming message" -msgstr "" - -#: ../cache/locales.php:149 -msgid "Use desktop notifications" -msgstr "" - -#: ../cache/locales.php:150 +#: [title]data msgid "Data" msgstr "" -#: ../cache/locales.php:151 +#: [title]cache msgid "Cache" msgstr "" -#: ../cache/locales.php:152 ../cache/locales.php:218 ../cache/locales.php:466 +#: [title]contacts [menu]contacts [page]contacts msgid "Contacts" msgstr "" -#: ../cache/locales.php:153 ../cache/locales.php:480 +#: [title]posts [page]posts msgid "Posts" msgstr "" -#: ../cache/locales.php:154 +#: [title]messages msgid "Messages" msgstr "" -#: ../cache/locales.php:155 ../cache/locales.php:423 +#: [config]general +msgid "General" +msgstr "" + +#: [config]language +msgid "Language" +msgstr "Lenga" + +#: [config]roster +msgid "Roster display" +msgstr "" + +#: [config]roster_show +msgid "Show the offline contacts" +msgstr "" + +#: [config]roster_hide +msgid "Hide the offline contacts" +msgstr "" + +#: [config]appearence +msgid "Appearence" +msgstr "" + +#: [config]info +msgid "This configuration is shared wherever you are connected" +msgstr "" + +#: [notifications]message +msgid "Notify on incoming message" +msgstr "" + +#: [notifications]desktop +msgid "Use desktop notifications" +msgstr "" + +#: [general]legend [general]general_title msgid "General Informations" msgstr "Informacions Generalas" -#: ../cache/locales.php:158 ../cache/locales.php:427 +#: [general]name [public_groups]name [chatrooms]name +msgid "Name" +msgstr "Nom" + +#: [general]date_of_birth msgid "Date of Birth" msgstr "Data de Naissença" -#: ../cache/locales.php:159 ../cache/locales.php:428 +#: [general]gender msgid "Gender" msgstr "Sèxe" -#: ../cache/locales.php:160 ../cache/locales.php:429 +#: [general]marital msgid "Marital Status" msgstr "Situacion familiala" -#: ../cache/locales.php:161 ../cache/locales.php:426 +#: [general]email msgid "Email" msgstr "Adreça electronica" -#: ../cache/locales.php:162 ../cache/locales.php:430 +#: [general]website msgid "Website" msgstr "Site web" -#: ../cache/locales.php:163 ../cache/locales.php:431 +#: [general]about msgid "About Me" msgstr "A prepaus de ieu" -#: ../cache/locales.php:164 +#: [general]accounts msgid "Other Accounts" msgstr "" -#: ../cache/locales.php:165 +#: [general]tune msgid "Is Listening" msgstr "" -#: ../cache/locales.php:166 ../cache/locales.php:432 +#: [position]legend [position]position_title msgid "Geographic Position" msgstr "Posicion geografica" -#: ../cache/locales.php:167 ../cache/locales.php:433 +#: [position]locality msgid "Locality" msgstr "Localitat" -#: ../cache/locales.php:168 ../cache/locales.php:434 +#: [position]country msgid "Country" msgstr "País" -#: ../cache/locales.php:169 +#: [mood]title msgid "Mood" msgstr "Umor" -#: ../cache/locales.php:170 +#: [mood]im msgid "I'm " msgstr "Soi " -#: ../cache/locales.php:171 +#: [listen]title msgid "Listening" msgstr "En escota" -#: ../cache/locales.php:173 +#: [last]title msgid "Last seen" msgstr "Darrièra visita" -#: ../cache/locales.php:174 +#: [client]title msgid "Client Informations" msgstr "Informacions sul client" -#: ../cache/locales.php:175 +#: [explore]last_registered msgid "Last registered" msgstr "Darrièrs marcats" -#: ../cache/locales.php:176 +#: [explore]explore msgid "Find some new friends" msgstr "" -#: ../cache/locales.php:177 ../cache/locales.php:533 +#: [edit]title [button]edit msgid "Edit" msgstr "" -#: ../cache/locales.php:178 +#: [edit]alias msgid "Alias" msgstr "Aliàs" -#: ../cache/locales.php:179 +#: [edit]group msgid "Group" msgstr "Grop" -#: ../cache/locales.php:180 ../cache/locales.php:400 +#: [edit]updated [roster]updated msgid "Contact updated" msgstr "Contacte mes a jorn" -#: ../cache/locales.php:181 +#: [delete]title msgid "Are you sure?" msgstr "" -#: ../cache/locales.php:182 -msgid "" -"You are going to delete one of your contacts, please confirm your action" +#: [delete]text +msgid "You are going to delete one of your contacts, please confirm your action" msgstr "" -#: ../cache/locales.php:183 -#, php-format +#: [age]years msgid "%s years" msgstr "" -#: ../cache/locales.php:184 +#: [blog]last msgid "Last public post" msgstr "" -#: ../cache/locales.php:185 +#: [subscription]to +#, fuzzy +msgid "You can see this contact status" +msgstr "Suprimir aqueste contacte" + +#: [subscription]to_button +msgid "Share my status" +msgstr "" + +#: [subscription]to_text +msgid "But this contact cannot see yours" +msgstr "" + +#: [subscription]from +msgid "You are not subscribed to this contact" +msgstr "" + +#: [subscription]from_button +#, fuzzy +msgid "Ask to subscribe" +msgstr "Abonat" + +#: [subscription]from_text +msgid "But this contact can still see if you are online" +msgstr "" + +#: [subscription]nil +#, fuzzy +msgid "No subscriptions" +msgstr "Recuperar los abonaments" + +#: [subscription]nil_button +msgid "Invite" +msgstr "" + +#: [subscription]nil_text +msgid "This contact is in your contact list but there is no subscriptions between the two accounts" +msgstr "" + +#: [group]subscribe msgid "Subscribe" msgstr "" -#: ../cache/locales.php:186 +#: [group]subscribed msgid "Subscribed" msgstr "Abonat" -#: ../cache/locales.php:187 +#: [group]unsubscribe msgid "Unsubscribe" msgstr "" -#: ../cache/locales.php:188 +#: [group]unsubscribe_text msgid "You are going to unsubscribe from this Group" msgstr "" -#: ../cache/locales.php:189 +#: [group]unsubscribed msgid "Unsubscribed" msgstr "" -#: ../cache/locales.php:190 +#: [group]share_label msgid "Make your membership to this group public to your friends" msgstr "" -#: ../cache/locales.php:191 +#: [group]label_label msgid "Give a label for this group" msgstr "" -#: ../cache/locales.php:192 +#: [group]sure msgid "Are you sure ?" msgstr "" -#: ../cache/locales.php:194 +#: [group]empty_text msgid "Discover, follow and share" msgstr "" -#: ../cache/locales.php:195 +#: [group]empty msgid "Something bad happened to this group" msgstr "" -#: ../cache/locales.php:196 +#: [group]config_saved msgid "Group configuration saved" msgstr "Configuracion del grop salvada" -#: ../cache/locales.php:197 +#: [group]delete_title msgid "Delete the group" msgstr "" -#: ../cache/locales.php:198 -msgid "" -"You are going to delete the following group. Please confirm your action." +#: [group]delete_text +msgid "You are going to delete the following group. Please confirm your action." msgstr "" -#: ../cache/locales.php:199 -msgid "" -"It seems that this group doesn't exists anymore. Do you want to remove it " -"from your subscriptions?" +#: [group]delete_clean_text +msgid "It seems that this group doesn't exists anymore. Do you want to remove it from your subscriptions?" msgstr "" -#: ../cache/locales.php:201 ../cache/locales.php:408 +#: [group]counter +msgid "%s groups on this server" +msgstr "" + +#: [group]subscriptions [statistics]subscriptions msgid "Subscriptions" msgstr "" -#: ../cache/locales.php:202 ../cache/locales.php:290 +#: [group]servers +#, fuzzy +msgid "Groups servers" +msgstr "Gropes" + +#: [group]search_server +msgid "Search for a new server" +msgstr "" + +#: [group]help_info1 +msgid "Groups are the perfect way to share posts about topics that you like with all the other Movim's users." +msgstr "" + +#: [group]help_info2 +msgid "Choose a server and a Group and subscribe to it using the %s button in the header. You can also create a new one using the %s button." +msgstr "" + +#: [group]help_info3 +msgid "Done? You can now publish a new post in the Group by using the %s button." +msgstr "" + +#: [group]help_info4 +msgid "You will find a list of all your subscribed Groups in My Subscriptions and receive instantly all the new incoming posts in the %sNews%s page." +msgstr "" + +#: [groups]empty_title msgid "Hello" msgstr "" -#: ../cache/locales.php:203 ../cache/locales.php:225 ../cache/locales.php:291 +#: [groups]contact_post [hello]contact_post [menu]contact_post msgid "Contact post" msgstr "" -#: ../cache/locales.php:204 -msgid "" -"You don't have any subscriptions yet, select a group server above to start " -"exploring." +#: [groups]empty_text1 +msgid "You don't have any subscriptions yet, select a group server above to start exploring." msgstr "" -#: ../cache/locales.php:205 +#: [groups]empty_text2 msgid "Subscribe to your favorite feeds by bookmarking them." msgstr "" -#: ../cache/locales.php:206 +#: [groups]subscriptions msgid "My Subscriptions" msgstr "" -#: ../cache/locales.php:207 +#: [groups]add msgid "Create a new Group" msgstr "" -#: ../cache/locales.php:208 +#: [groups]name msgid "Group name" msgstr "" -#: ../cache/locales.php:209 +#: [groups]name_example msgid "My Little Pony - Fan Club" msgstr "Mon Pichon Poni - Fan Club" -#: ../cache/locales.php:210 +#: [groups]created msgid "Group created successfully" msgstr "" -#: ../cache/locales.php:211 +#: [groups]deleted msgid "Group deleted successfully" msgstr "" -#: ../cache/locales.php:212 +#: [groups]name_error msgid "Please provide a valid group name (4 characters minimum)" msgstr "" -#: ../cache/locales.php:213 +#: [groups]no_creation msgid "You cannot create a new Group on this server" msgstr "" -#: ../cache/locales.php:214 -#, php-format +#: [groups]sub msgid "%s subscribers" msgstr "" -#: ../cache/locales.php:215 -#, php-format +#: [groups]num msgid "%s posts" msgstr "" -#: ../cache/locales.php:216 +#: [groups]disco_error +msgid "This server doesn't exists" +msgstr "" + +#: [menu]all msgid "All" msgstr "Tot" -#: ../cache/locales.php:219 +#: [menu]refresh msgid "Refresh all the streams" msgstr "" -#: ../cache/locales.php:220 ../cache/locales.php:402 -msgid "Search" -msgstr "Recercar" +#: [roster]search +#, fuzzy +msgid "Search in your contacts" +msgstr "Partejat amb un contacte" -#: ../cache/locales.php:221 +#: [hello]active_contacts +#, fuzzy +msgid "Active contacts" +msgstr "Accions" + +#: [hello]chat msgid "Go on the Chat page" msgstr "" -#: ../cache/locales.php:222 -msgid "Read all theses articles on the News page" -msgstr "" - -#: ../cache/locales.php:223 -msgid "Visit your public blog" -msgstr "" - -#: ../cache/locales.php:224 -msgid "See your public posts and share them with all your contacts" -msgstr "" - -#: ../cache/locales.php:226 -msgid "Universal share button" -msgstr "" - -#: ../cache/locales.php:227 -msgid "" -"Bookmark or drag and drop the following button in your toolbar and use it on " -"all the pages you want to share on Movim" -msgstr "" - -#: ../cache/locales.php:228 -msgid "Share on Movim" -msgstr "" - -#: ../cache/locales.php:229 -msgid "Frequently Asked Questions" -msgstr "" - -#: ../cache/locales.php:230 -msgid "What do the little banners refer to ?" -msgstr "" - -#: ../cache/locales.php:231 -msgid "" -"Thanks to these five little banners, you can quickly identitfy the level of " -"confdentiality applied to the information you provide." -msgstr "" - -#: ../cache/locales.php:232 -msgid "White, only you can see the information" -msgstr "" - -#: ../cache/locales.php:233 -msgid "Green, you have chosen some contacts who can see your information" -msgstr "" - -#: ../cache/locales.php:234 -msgid "Orange, all your contact list can see your information" -msgstr "" - -#: ../cache/locales.php:235 -msgid "Red, everybody in the XMPP network can see your information" -msgstr "" - -#: ../cache/locales.php:236 -msgid "Black, the whole Internet can see your information" -msgstr "" - -#: ../cache/locales.php:237 -msgid "Looking for some documentation ?" -msgstr "" - -#: ../cache/locales.php:238 -msgid "Read the Wiki" -msgstr "" - -#: ../cache/locales.php:239 -msgid "Talk with us by email ?" -msgstr "" - -#: ../cache/locales.php:240 -msgid "Join the Mailing List" -msgstr "" - -#: ../cache/locales.php:241 -msgid "Chat with the team ?" -msgstr "" - -#: ../cache/locales.php:242 -msgid "Join the Chatroom" -msgstr "" - -#: ../cache/locales.php:243 -msgid "Location node created" -msgstr "" - -#: ../cache/locales.php:244 -msgid "Bookmark node created" -msgstr "" - -#: ../cache/locales.php:245 -msgid "Profile node created" -msgstr "" - -#: ../cache/locales.php:246 -msgid "Avatar node created" -msgstr "" - -#: ../cache/locales.php:247 -msgid "Subscriptions node created" -msgstr "" - -#: ../cache/locales.php:248 -msgid "Microblog node created" -msgstr "" - -#: ../cache/locales.php:249 -msgid "Location" -msgstr "Emplaçament" - -#: ../cache/locales.php:250 -msgid "Wrong position" -msgstr "Marrida posicion" - -#: ../cache/locales.php:251 -msgid "Location updated" -msgstr "Posicion geografica mesa a jorn" - -#: ../cache/locales.php:252 -msgid "Update my position" -msgstr "" - -#: ../cache/locales.php:253 -msgid "Wrong username" -msgstr "Nom d'utilizaire incorrècte" - -#: ../cache/locales.php:254 -msgid "Invalid JID" -msgstr "Identificant Jabber invalid" - -#: ../cache/locales.php:255 -msgid "Empty Challenge from the server" -msgstr "" - -#: ../cache/locales.php:256 -msgid "XMPP Domain error, your account is not a correct Jabber ID" -msgstr "" - -#: ../cache/locales.php:257 -msgid "Some data are missing !" -msgstr "Manca d'informacions !" - -#: ../cache/locales.php:258 -msgid "Wrong password" -msgstr "Marrit senhal" - -#: ../cache/locales.php:259 -msgid "Internal server error" -msgstr "Error intèrna del servidor" - -#: ../cache/locales.php:260 -msgid "Session error" -msgstr "Error de sesilha" - -#: ../cache/locales.php:261 -msgid "Account successfully created" -msgstr "Compte creat amb succès" - -#: ../cache/locales.php:262 ../cache/locales.php:271 -msgid "Your XMPP server is unauthorized" -msgstr "" - -#: ../cache/locales.php:263 -msgid "The server takes too much time to respond" -msgstr "" - -#: ../cache/locales.php:264 -msgid "Your web browser is too old to use with Movim." -msgstr "Vòstre navigador es tròp vielh per utilizar Movim" - -#: ../cache/locales.php:265 -msgid "" -"Movim cannot talk with the server, please try again later (Websocket " -"connection error)" -msgstr "" - -#: ../cache/locales.php:266 -msgid "Impossible login" -msgstr "" - -#: ../cache/locales.php:267 -msgid "Oops!" -msgstr "" - -#: ../cache/locales.php:268 ../cache/locales.php:449 ../cache/locales.php:455 -msgid "Unknown error" -msgstr "Error desconeguda" - -#: ../cache/locales.php:269 -msgid "Invalid username format" -msgstr "" - -#: ../cache/locales.php:270 -msgid "Invalid password format" -msgstr "" - -#: ../cache/locales.php:272 -msgid "A Movim session is already open on an other device" -msgstr "" - -#: ../cache/locales.php:273 -msgid "Movim failed to authenticate. You entered wrong data" -msgstr "" - -#: ../cache/locales.php:274 -msgid "Authentication mechanism not supported by Movim" -msgstr "" - -#: ../cache/locales.php:275 -msgid "The XMPP authentification failed" -msgstr "Autentificacion al servidor XMPP impossibla" - -#: ../cache/locales.php:276 -#, php-format -msgid "" -"You can login with Facebook (chat only) using %syour.id@chat.facebook.com%s " -"and your password" -msgstr "" - -#: ../cache/locales.php:277 -#, php-format -msgid "%sGmail accounts are also compatible%s but are not fully supported" -msgstr "" - -#: ../cache/locales.php:278 -msgid "You can login using your favorite Jabber account" -msgstr "" - -#: ../cache/locales.php:279 -msgid "or with our demonstration account" -msgstr "" - -#: ../cache/locales.php:280 ../cache/locales.php:435 -msgid "Accounts" -msgstr "" - -#: ../cache/locales.php:281 -msgid "My address" -msgstr "Mon adreça" - -#: ../cache/locales.php:283 -msgid "Create one !" -msgstr "" - -#: ../cache/locales.php:284 -msgid "No account yet ?" -msgstr "" - -#: ../cache/locales.php:285 -msgid "Another account" -msgstr "" - -#: ../cache/locales.php:286 -msgid "You can login with accounts from theses servers" -msgstr "" - -#: ../cache/locales.php:287 -msgid "Connected" -msgstr "" - -#: ../cache/locales.php:288 -msgid "Population" -msgstr "" - -#: ../cache/locales.php:289 -msgid "Bad nickname (between 4 and 40 characters)" -msgstr "" - -#: ../cache/locales.php:292 -msgid "" -"Welcome on your news feed, here you will see all the posts published in the " -"groups you have subscribed." -msgstr "" - -#: ../cache/locales.php:293 -msgid "Refreshing all the streams" -msgstr "" - -#: ../cache/locales.php:294 -msgid "This post is public" -msgstr "" - -#: ../cache/locales.php:295 -msgid "Manage your members" -msgstr "Gerir vòstres membres" - -#: ../cache/locales.php:296 -msgid "Get the members" -msgstr "Recuperar los membres" - -#: ../cache/locales.php:297 -msgid "Affiliations saved" -msgstr "Afiliacions salvadas" - -#: ../cache/locales.php:298 -msgid "Manage your subscriptions" -msgstr "Gerir vòstres abonaments" - -#: ../cache/locales.php:299 -msgid "Manage the subscriptions" -msgstr "Gerir los abonaments" - -#: ../cache/locales.php:300 -msgid "Get the subscriptions" -msgstr "Recuperar los abonaments" - -#: ../cache/locales.php:301 -msgid "Subscriptions saved" -msgstr "" - -#: ../cache/locales.php:302 -msgid "Pending Invitations" -msgstr "" - -#: ../cache/locales.php:303 -#, php-format -msgid "%s wants to talk with you" -msgstr "" - -#: ../cache/locales.php:304 -msgid "Manage" -msgstr "Gerir" - -#: ../cache/locales.php:305 ../cache/locales.php:338 -msgid "News Feed" -msgstr "" - -#: ../cache/locales.php:306 ../cache/locales.php:339 -msgid "Discover and register to the groups you are interested in" -msgstr "" - -#: ../cache/locales.php:307 ../cache/locales.php:340 ../cache/locales.php:482 -msgid "Preview" -msgstr "" - -#: ../cache/locales.php:308 ../cache/locales.php:341 ../cache/locales.php:478 -msgid "Help" -msgstr "Ajuda" - -#: ../cache/locales.php:309 ../cache/locales.php:342 -msgid "More help" -msgstr "" - -#: ../cache/locales.php:310 ../cache/locales.php:343 -msgid "Markdown syntax manual" -msgstr "" - -#: ../cache/locales.php:311 ../cache/locales.php:344 ../cache/locales.php:681 -msgid "Title" -msgstr "" - -#: ../cache/locales.php:312 ../cache/locales.php:345 -msgid "Content" -msgstr "" - -#: ../cache/locales.php:313 ../cache/locales.php:346 -msgid "Link" -msgstr "Ligam" - -#: ../cache/locales.php:314 ../cache/locales.php:347 -msgid "Tags" -msgstr "" - -#: ../cache/locales.php:315 ../cache/locales.php:348 -msgid "Please enter a valid url" -msgstr "" - -#: ../cache/locales.php:316 ../cache/locales.php:349 -msgid "No content to preview" -msgstr "" - -#: ../cache/locales.php:317 ../cache/locales.php:350 ../cache/locales.php:687 -msgid "No content" -msgstr "Pas cap de contengut" - -#: ../cache/locales.php:318 ../cache/locales.php:351 -msgid "Post published" -msgstr "" - -#: ../cache/locales.php:319 ../cache/locales.php:352 -msgid "Post deleted" -msgstr "" - -#: ../cache/locales.php:320 ../cache/locales.php:353 -msgid "This picture will be added to your gallery" -msgstr "" - -#: ../cache/locales.php:321 ../cache/locales.php:354 -msgid "What's Hot" -msgstr "" - -#: ../cache/locales.php:322 ../cache/locales.php:355 -msgid "New post" -msgstr "" - -#: ../cache/locales.php:323 ../cache/locales.php:357 -msgid "" -"You can also use services like Imgur or Flickr to host your picture and " -"paste the link here." -msgstr "" - -#: ../cache/locales.php:324 -#, php-format -msgid "This is a re-post from %s" -msgstr "" - -#: ../cache/locales.php:325 -#, php-format -msgid "See %s profile" -msgstr "" - -#: ../cache/locales.php:326 -msgid "Publish this post on your public feed?" -msgstr "" - -#: ../cache/locales.php:327 -msgid "Post published on your blog" -msgstr "" - -#: ../cache/locales.php:328 -msgid "Post removed from your blog" -msgstr "" - -#: ../cache/locales.php:329 ../cache/locales.php:701 -msgid "Delete this post" -msgstr "" - -#: ../cache/locales.php:330 -msgid "You are going to delete this post, please confirm your action" -msgstr "" - -#: ../cache/locales.php:331 -msgid "Comments disabled" -msgstr "" - -#: ../cache/locales.php:332 -msgid "Comment published" -msgstr "" - -#: ../cache/locales.php:333 -msgid "Disconnect" -msgstr "Se desconnectar" - -#: ../cache/locales.php:334 -msgid "Your status here !" -msgstr "Vòstre estatut aicí !" - -#: ../cache/locales.php:335 -msgid "Status updated" -msgstr "Estatut mes a jorn" - -#: ../cache/locales.php:336 -msgid "Status" -msgstr "" - -#: ../cache/locales.php:337 -msgid "Presence" -msgstr "" - -#: ../cache/locales.php:356 -msgid "Publish" -msgstr "" - -#: ../cache/locales.php:358 -msgid "You cannot publish a post on this Group" -msgstr "" - -#: ../cache/locales.php:359 -msgid "" -"Some fields have been filled in. Do you still want to go back and loose " -"their content?" -msgstr "" - -#: ../cache/locales.php:360 -msgid "Shared" -msgstr "" - -#: ../cache/locales.php:362 -#, php-format -msgid "%s has been added to your public groups" -msgstr "" - -#: ../cache/locales.php:363 -#, php-format -msgid "%s has been removed from your public groups" -msgstr "" - -#: ../cache/locales.php:364 -msgid "Add a chatroom" -msgstr "" - -#: ../cache/locales.php:365 -msgid "You don't have any chatroom yet." -msgstr "" - -#: ../cache/locales.php:366 -msgid "Add one by clicking on the add button in the header." -msgstr "" - -#: ../cache/locales.php:367 -msgid "Chatrooms" -msgstr "Salons de discussion" - -#: ../cache/locales.php:370 -msgid "My Favorite Room" -msgstr "" - -#: ../cache/locales.php:374 -msgid "Remove a chatroom" -msgstr "" - -#: ../cache/locales.php:375 -msgid "" -"You are going to remove the following chatroom. Please confirm your action." -msgstr "" - -#: ../cache/locales.php:378 -msgid "Users in the room" -msgstr "" - -#: ../cache/locales.php:379 -msgid "Please enter a correct nickname (6 to 40 characters)" -msgstr "" - -#: ../cache/locales.php:381 -msgid "Public chatroom" -msgstr "" - -#: ../cache/locales.php:382 -msgid "Please provide a room address" -msgstr "" - -#: ../cache/locales.php:383 -msgid "You are currently logued as an anonymous user." -msgstr "" - -#: ../cache/locales.php:384 -msgid "" -"You can join using your own account or create one on the login page by " -"loging out using the cross in the top-right corner." -msgstr "" - -#: ../cache/locales.php:385 -#, php-format -msgid "Login on %s" -msgstr "" - -#: ../cache/locales.php:386 -msgid "Your nickname" -msgstr "" - -#: ../cache/locales.php:387 -msgid "Ungrouped" -msgstr "Pas agropat" - -#: ../cache/locales.php:388 -msgid "Show disconnected contacts" -msgstr "Contactes desconnectats afichats" - -#: ../cache/locales.php:389 -msgid "Hide disconnected contacts" -msgstr "Contactes desconnectats amagats" - -#: ../cache/locales.php:390 -#, php-format -msgid "Show group %s" -msgstr "Grop %s afichat" - -#: ../cache/locales.php:391 -#, php-format -msgid "Hide group %s" -msgstr "Grop %s amagat" - -#: ../cache/locales.php:392 -msgid "Please enter a valid Jabber ID" -msgstr "" - -#: ../cache/locales.php:393 -msgid "" -"No contacts ? You can add one using the + button bellow or going to the " -"Explore page" -msgstr "" - -#: ../cache/locales.php:394 -msgid "Show/Hide" -msgstr "" - -#: ../cache/locales.php:395 -msgid "Enter the Jabber ID of your contact." -msgstr "" - -#: ../cache/locales.php:396 -msgid "Press enter to validate." -msgstr "" - -#: ../cache/locales.php:397 -msgid "JID" -msgstr "" - -#: ../cache/locales.php:398 -msgid "Results" -msgstr "" - -#: ../cache/locales.php:399 -msgid "Contact added" -msgstr "" - -#: ../cache/locales.php:401 -msgid "Contact deleted" -msgstr "" - -#: ../cache/locales.php:403 -msgid "This is not a valid url" -msgstr "" - -#: ../cache/locales.php:404 -msgid "Sharing the URL" -msgstr "" - -#: ../cache/locales.php:405 -msgid "Statistics" -msgstr "" - -#: ../cache/locales.php:406 -msgid "Since" -msgstr "" - -#: ../cache/locales.php:407 -msgid "Sessions" -msgstr "" - -#: ../cache/locales.php:409 -msgid "Monthly Subscriptions" -msgstr "" - -#: ../cache/locales.php:410 -msgid "Monthly Subscriptions Cumulated" -msgstr "" - -#: ../cache/locales.php:412 -msgid "" -"Movim is a decentralized social network, before creating a new account you " -"need to choose a server to register." -msgstr "" - -#: ../cache/locales.php:413 -msgid "Your server here ?" -msgstr "" - -#: ../cache/locales.php:414 -msgid "Contact us to add yours to the officially supported servers list" -msgstr "" - -#: ../cache/locales.php:416 -msgid "No public feed for this contact" -msgstr "" - -#: ../cache/locales.php:417 -msgid "No contact specified" -msgstr "" - -#: ../cache/locales.php:418 ../cache/locales.php:473 -msgid "Profile" -msgstr "Perfil" - -#: ../cache/locales.php:419 -msgid "Profile Updated" -msgstr "Perfil mes a jorn" - -#: ../cache/locales.php:420 -msgid "Profile Not Updated" -msgstr "" - -#: ../cache/locales.php:421 -msgid "Your profile is now public" -msgstr "" - -#: ../cache/locales.php:422 -msgid "Your profile is now restricted" -msgstr "" - -#: ../cache/locales.php:436 -msgid "Twitter" -msgstr "" - -#: ../cache/locales.php:437 -msgid "Skype" -msgstr "" - -#: ../cache/locales.php:438 -msgid "Yahoo" -msgstr "" - -#: ../cache/locales.php:439 -msgid "Privacy Level" -msgstr "Nivèl de confidencialitat" - -#: ../cache/locales.php:440 -msgid "Is this profile public ?" -msgstr "Es lo perfil public ?" - -#: ../cache/locales.php:441 -msgid "" -"Please pay attention ! By making your profile public, all the information " -"listed above will be available for all the Movim users and on the whole " -"Internet." -msgstr "" - -#: ../cache/locales.php:442 -msgid "Call" -msgstr "" - -#: ../cache/locales.php:443 -msgid "Hang up" -msgstr "" - -#: ../cache/locales.php:444 -msgid "Connection" -msgstr "" - -#: ../cache/locales.php:445 ../cache/locales.php:451 -msgid "Hung up" -msgstr "" - -#: ../cache/locales.php:446 ../cache/locales.php:452 -msgid "Your contact is busy" -msgstr "" - -#: ../cache/locales.php:447 ../cache/locales.php:453 -msgid "Declined" -msgstr "" - -#: ../cache/locales.php:448 ../cache/locales.php:454 -msgid "Remote application incompatible" -msgstr "" - -#: ../cache/locales.php:450 ../cache/locales.php:456 -msgid "Is calling you" -msgstr "" - -#: ../cache/locales.php:457 -msgid "You don't have javascript enabled. Good luck with that." -msgstr "" - -#: ../cache/locales.php:458 -msgid "" -"Movim is a kickass distributed social networking platform that protect your " -"privacy an comes with a set of awesome features." -msgstr "" - -#: ../cache/locales.php:459 -msgid "Administration" -msgstr "Administracion" - -#: ../cache/locales.php:460 -msgid "Home" -msgstr "Dorsièr personal" - -#: ../cache/locales.php:461 -msgid "Discover" -msgstr "Descobrir" - -#: ../cache/locales.php:462 -msgid "Explore" -msgstr "Explorar" - -#: ../cache/locales.php:463 -msgid "Account Creation" -msgstr "Creacion de compte" - -#: ../cache/locales.php:464 +#: [hello]news [page]news msgid "News" msgstr "Actualitats" -#: ../cache/locales.php:465 -msgid "Avatar" -msgstr "Avatar" - -#: ../cache/locales.php:467 -msgid "Chats" +#: [hello]news_page +msgid "Read all theses articles on the News page" msgstr "" -#: ../cache/locales.php:470 -msgid "Server" -msgstr "Servidor" - -#: ../cache/locales.php:471 -msgid "Public Groups" -msgstr "Gropes publics" - -#: ../cache/locales.php:472 -msgid "Viewer" -msgstr "Visionadoira" - -#: ../cache/locales.php:474 -msgid "Media" -msgstr "Mèdia" - -#: ../cache/locales.php:475 -msgid "Blog" -msgstr "Blòg" - -#: ../cache/locales.php:476 -msgid "About" -msgstr "A prepaus" - -#: ../cache/locales.php:477 -msgid "Login" +#: [hello]blog_title +msgid "Visit your public blog" msgstr "" -#: ../cache/locales.php:479 -msgid "Feed" -msgstr "Flux" - -#: ../cache/locales.php:481 -msgid "Gallery" +#: [hello]blog_text +msgid "See your public posts and share them with all your contacts" msgstr "" -#: ../cache/locales.php:483 -msgid "Visio-conference" -msgstr "Visioconferéncia" - -#: ../cache/locales.php:484 -msgid "Pods" +#: [hello]share_title +msgid "Universal share button" msgstr "" -#: ../cache/locales.php:485 -msgid "Share" +#: [hello]share_text +msgid "Bookmark or drag and drop the following button in your toolbar and use it on all the pages you want to share on Movim" msgstr "" -#: ../cache/locales.php:486 -msgid "Room" +#: [hello]share_button +msgid "Share on Movim" msgstr "" -#: ../cache/locales.php:487 -#, php-format -msgid "Error: %s" -msgstr "Error : %s" - -#: ../cache/locales.php:488 -#, php-format -msgid "Cannot load file '%s'" -msgstr "Lo fichier '%s' es pas accessible" - -#: ../cache/locales.php:489 -#, php-format -msgid "Route error, please set all the parameters for the page %s" +#: [help]faq +msgid "Frequently Asked Questions" msgstr "" -#: ../cache/locales.php:490 -#, php-format -msgid "Requested widget '%s' doesn't exist." +#: [banner]title +msgid "What do the little banners refer to ?" msgstr "" -#: ../cache/locales.php:491 -#, php-format -msgid "Requested event '%s' not registered." +#: [banner]info1 +msgid "Thanks to these five little banners, you can quickly identitfy the level of confdentiality applied to the information you provide." msgstr "" -#: ../cache/locales.php:492 -msgid "Whoops!" +#: [banner]white +msgid "White, only you can see the information" msgstr "" -#: ../cache/locales.php:493 -msgid "It seem that you don't have any pictures here?" +#: [banner]green +msgid "Green, you have chosen some contacts who can see your information" msgstr "" -#: ../cache/locales.php:494 -msgid "You can try to upload a couple by going to the Media page" +#: [banner]orange +msgid "Orange, all your contact list can see your information" msgstr "" -#: ../cache/locales.php:495 -#, php-format -msgid "%s - About" -msgstr "%s - A prepaus" +#: [banner]red +msgid "Red, everybody in the XMPP network can see your information" +msgstr "" -#: ../cache/locales.php:496 -#, php-format -msgid "%s - Account" +#: [banner]black +msgid "Black, the whole Internet can see your information" +msgstr "" + +#: [wiki]question +msgid "Looking for some documentation ?" +msgstr "" + +#: [wiki]button +msgid "Read the Wiki" +msgstr "" + +#: [ml]question +msgid "Talk with us by email ?" +msgstr "" + +#: [ml]button +msgid "Join the Mailing List" +msgstr "" + +#: [chatroom]question +msgid "Chat with the team ?" +msgstr "" + +#: [chatroom]button +msgid "Join the Chatroom" +msgstr "" + +#: [init]location +msgid "Location node created" +msgstr "" + +#: [init]bookmark +msgid "Bookmark node created" +msgstr "" + +#: [init]vcard4 +msgid "Profile node created" +msgstr "" + +#: [init]avatar +msgid "Avatar node created" +msgstr "" + +#: [init]subscriptions +msgid "Subscriptions node created" +msgstr "" + +#: [init]microblog +msgid "Microblog node created" +msgstr "" + +#: [location]title +msgid "Location" +msgstr "Emplaçament" + +#: [location]wrong_postition +msgid "Wrong position" +msgstr "Marrida posicion" + +#: [location]updated +msgid "Location updated" +msgstr "Posicion geografica mesa a jorn" + +#: [location]update +msgid "Update my position" +msgstr "" + +#: [login_anonymous]bad_username +msgid "Bad nickname (between 4 and 40 characters)" +msgstr "" + +#: [error]username +msgid "Wrong username" +msgstr "Nom d'utilizaire incorrècte" + +#: [error]jid +msgid "Invalid JID" +msgstr "Identificant Jabber invalid" + +#: [error]empty_challenge +msgid "Empty Challenge from the server" +msgstr "" + +#: [error]dns +msgid "XMPP Domain error, your account is not a correct Jabber ID" +msgstr "" + +#: [error]data_missings +msgid "Some data are missing !" +msgstr "Manca d'informacions !" + +#: [error]wrong_password +msgid "Wrong password" +msgstr "Marrit senhal" + +#: [error]internal +msgid "Internal server error" +msgstr "Error intèrna del servidor" + +#: [error]session +msgid "Session error" +msgstr "Error de sesilha" + +#: [error]account_created +msgid "Account successfully created" +msgstr "Compte creat amb succès" + +#: [error]xmpp_unauthorized +msgctxt "[error]xmpp_unauthorized" +msgid "Your XMPP server is unauthorized" +msgstr "" + +#: [error]mec_error +msgid "The server takes too much time to respond" +msgstr "" + +#: [error]too_old +msgid "Your web browser is too old to use with Movim." +msgstr "Vòstre navigador es tròp vielh per utilizar Movim" + +#: [error]websocket +msgid "Movim cannot talk with the server, please try again later (Websocket connection error)" +msgstr "" + +#: [error]impossible +msgid "Impossible login" +msgstr "" + +#: [error]title +msgid "Oops!" +msgstr "" + +#: [error]default [visio]unknown_error +msgid "Unknown error" +msgstr "Error desconeguda" + +#: [error]login_format +msgid "Invalid username format" +msgstr "" + +#: [error]password_format +msgid "Invalid password format" +msgstr "" + +#: [error]unauthorized +msgctxt "[error]unauthorized" +msgid "Your XMPP server is unauthorized" +msgstr "" + +#: [error]conflict +msgid "A Movim session is already open on an other device" +msgstr "" + +#: [error]wrong_account +msgid "Movim failed to authenticate. You entered wrong data" +msgstr "" + +#: [error]mechanism +msgid "Authentication mechanism not supported by Movim" +msgstr "" + +#: [error]fail_auth +msgid "The XMPP authentification failed" +msgstr "Autentificacion al servidor XMPP impossibla" + +#: [account]title [accounts]accounts_title +msgid "Accounts" +msgstr "" + +#: [form]username +msgid "My address" +msgstr "Mon adreça" + +#: [form]create_one +msgid "Create one !" +msgstr "" + +#: [form]another_account +msgid "Another account" +msgstr "" + +#: [form]no_account +msgid "No account yet ?" +msgstr "" + +#: [form]whitelist.info +msgid "You can login with accounts from theses servers" +msgstr "" + +#: [form]connected +msgid "Connected" +msgstr "" + +#: [form]population +msgid "Population" +msgstr "" + +#: [menu]empty_title +msgid "No news yet..." +msgstr "" + +#: [menu]empty +msgid "Welcome on your news feed, here you will see all the posts published by your contacts and in the groups you have subscribed." +msgstr "" + +#: [menu]refresh +msgid "Refreshing all the streams" +msgstr "" + +#: [menu]public +msgid "This post is public" +msgstr "" + +#: [affiliations]title +msgid "Manage your members" +msgstr "Gerir vòstres membres" + +#: [affiliations]get +msgid "Get the members" +msgstr "Recuperar los membres" + +#: [affiliations]saved +msgid "Affiliations saved" +msgstr "Afiliacions salvadas" + +#: [subscriptions]title +msgid "Manage your subscriptions" +msgstr "Gerir vòstres abonaments" + +#: [subscriptions]info +msgid "Manage the subscriptions" +msgstr "Gerir los abonaments" + +#: [subscriptions]get +msgid "Get the subscriptions" +msgstr "Recuperar los abonaments" + +#: [subscriptions]saved +msgid "Subscriptions saved" +msgstr "" + +#: [notifs]title +msgid "Pending Invitations" +msgstr "" + +#: [notifs]wants_to_talk +msgid "%s wants to talk with you" +msgstr "" + +#: [notifs]manage +msgid "Manage" +msgstr "Gerir" + +#: [post]news_feed +msgid "News Feed" +msgstr "" + +#: [post]placeholder +msgid "Discover and register to the groups you are interested in" +msgstr "" + +#: [post]preview [page]preview +msgid "Preview" +msgstr "" + +#: [post]help [page]help +msgid "Help" +msgstr "Ajuda" + +#: [post]help_more +msgid "More help" +msgstr "" + +#: [post]help_manual +msgid "Markdown syntax manual" +msgstr "" + +#: [post]title +msgid "Title" +msgstr "" + +#: [post]content +msgid "Content" +msgstr "" + +#: [post]link +msgid "Link" +msgstr "Ligam" + +#: [post]tags +msgid "Tags" +msgstr "" + +#: [post]valid_url [publish]valid_url +msgid "Please enter a valid url" +msgstr "" + +#: [post]no_content_preview [publish]no_content_preview +msgid "No content to preview" +msgstr "" + +#: [post]no_content [publish]no_content [post]empty +msgid "No content" +msgstr "Pas cap de contengut" + +#: [post]published +msgid "Post published" +msgstr "" + +#: [post]deleted +msgid "Post deleted" +msgstr "" + +#: [post]gallery +msgid "This picture will be added to your gallery" +msgstr "" + +#: [post]hot +msgid "What's Hot" +msgstr "" + +#: [post]hot_text +msgid "Posts recently published in Groups that you are not subscribed (yet)" +msgstr "" + +#: [post]new [publish]new +msgid "New post" +msgstr "" + +#: [post]embed_tip +msgid "You can also use services like Imgur or Flickr to host your picture and paste the link here." +msgstr "" + +#: [post]repost +msgid "This is a re-post from %s" +msgstr "" + +#: [post]repost_profile +msgid "See %s profile" +msgstr "" + +#: [post]public +#, fuzzy +msgid "Publish this post publicly?" +msgstr "Es lo perfil public ?" + +#: [post]blog_add +msgid "Post published on your blog" +msgstr "" + +#: [post]blog_remove +msgid "Post removed from your blog" +msgstr "" + +#: [post]delete_title [post]delete +msgid "Delete this post" +msgstr "" + +#: [post]delete_text +msgid "You are going to delete this post, please confirm your action" +msgstr "" + +#: [post]comments_disabled +msgid "Comments disabled" +msgstr "" + +#: [post]comment_published +msgid "Comment published" +msgstr "" + +#: [status]disconnect +msgid "Disconnect" +msgstr "Se desconnectar" + +#: [status]here +msgid "Your status here !" +msgstr "Vòstre estatut aicí !" + +#: [status]updated +msgid "Status updated" +msgstr "Estatut mes a jorn" + +#: [status]status +msgid "Status" +msgstr "" + +#: [status]presence +msgid "Presence" +msgstr "" + +#: [status]online +msgid "Online with Movim" +msgstr "" + +#: [publish]title +msgid "Publish" +msgstr "" + +#: [publish]attach +msgid "Add a file or a picture to your post" +msgstr "" + +#: [publish]no_publication +msgid "You cannot publish a post on this Group" +msgstr "" + +#: [publish]form_filled +msgid "Some fields have been filled in. Do you still want to go back and loose their content?" +msgstr "" + +#: [public_groups]shared +msgid "Shared" +msgstr "" + +#: [public_groups]added +msgid "%s has been added to your public groups" +msgstr "" + +#: [rooms]add +msgid "Add a chatroom" +msgstr "" + +#: [rooms]empty_text1 +msgid "You don't have any chatroom yet." +msgstr "" + +#: [rooms]empty_text2 +msgid "Add one by clicking on the add button in the header." +msgstr "" + +#: [chatrooms]title +msgid "Chatrooms" +msgstr "Salons de discussion" + +#: [chatrooms]name_placeholder +msgid "My Favorite Room" +msgstr "" + +#: [chatrooms]users +msgid "Users in the room" +msgstr "" + +#: [chatrooms]bad_nickname +msgid "Please enter a correct nickname (2 to 40 characters)" +msgstr "" + +#: [room]anonymous_title +msgid "Public chatroom" +msgstr "" + +#: [room]no_room +msgid "Please provide a room address" +msgstr "" + +#: [room]anonymous_text1 +msgid "You are currently logued as an anonymous user." +msgstr "" + +#: [room]anonymous_text2 +msgid "You can join using your own account or create one on the login page by loging out using the cross in the top-right corner." +msgstr "" + +#: [room]anonymous_login +msgid "Login on %s" +msgstr "" + +#: [room]nick +msgid "Your nickname" +msgstr "" + +#: [roster]ungrouped +msgid "Ungrouped" +msgstr "Pas agropat" + +#: [roster]show_disconnected +msgid "Show disconnected contacts" +msgstr "Contactes desconnectats afichats" + +#: [roster]hide_disconnected +msgid "Hide disconnected contacts" +msgstr "Contactes desconnectats amagats" + +#: [roster]show_group +msgid "Show group %s" +msgstr "Grop %s afichat" + +#: [roster]hide_group +msgid "Hide group %s" +msgstr "Grop %s amagat" + +#: [roster]jid_error +msgid "Please enter a valid Jabber ID" +msgstr "" + +#: [roster]no_contacts_title +#, fuzzy +msgid "No contacts ?" +msgstr "Pas cap de contengut" + +#: [roster]no_contacts_text +msgid "You can add one using the + button bellow" +msgstr "" + +#: [roster]show_hide +msgid "Show/Hide" +msgstr "" + +#: [roster]add_contact_info1 +msgid "Enter the Jabber ID of your contact." +msgstr "" + +#: [roster]add_contact_info2 +msgid "Press enter to validate." +msgstr "" + +#: [roster]jid +msgid "JID" +msgstr "" + +#: [roster]results +msgid "Results" +msgstr "" + +#: [roster]added +msgid "Contact added" +msgstr "" + +#: [roster]deleted +msgid "Contact deleted" +msgstr "" + +#: [roster]search +msgid "Search" +msgstr "Recercar" + +#: [share]error +msgid "This is not a valid url" +msgstr "" + +#: [share]success +msgid "Sharing the URL" +msgstr "" + +#: [statistics]title +msgid "Statistics" +msgstr "" + +#: [statistics]since +msgid "Since" +msgstr "" + +#: [statistics]sessions +msgid "Sessions" +msgstr "" + +#: [statistics]monthly_sub +msgid "Monthly Subscriptions" +msgstr "" + +#: [statistics]monthly_sub_cum +msgid "Monthly Subscriptions Cumulated" +msgstr "" + +#: [subscribe]info +msgid "Movim is a decentralized social network, before creating a new account you need to choose a server to register." +msgstr "" + +#: [subscribe]server_question +msgid "Your server here ?" +msgstr "" + +#: [subscribe]server_contact +msgid "Contact us to add yours to the officially supported servers list" +msgstr "" + +#: [feed]nope +msgid "No public feed for this contact" +msgstr "" + +#: [feed]nope_contact +msgid "No contact specified" +msgstr "" + +#: [upload]title +#, fuzzy +msgid "Upload a file" +msgstr "Mandar" + +#: [upload]choose +msgid "Choose a file to upload" +msgstr "" + +#: [vcard]title [page]profile +msgid "Profile" +msgstr "Perfil" + +#: [vcard]updated +msgid "Profile Updated" +msgstr "Perfil mes a jorn" + +#: [vcard]not_updated +msgid "Profile Not Updated" +msgstr "" + +#: [vcard]public +msgid "Your profile is now public" +msgstr "" + +#: [vcard]restricted +msgid "Your profile is now restricted" +msgstr "" + +#: [general]nickname +#, fuzzy +msgctxt "[general]nickname" +msgid "Nickname" +msgstr "Escais" + +#: [accounts]twitter +msgid "Twitter" +msgstr "" + +#: [accounts]skype +msgid "Skype" +msgstr "" + +#: [accounts]yahoo +msgid "Yahoo" +msgstr "" + +#: [accounts]accounts_nickname +#, fuzzy +msgctxt "[accounts]accounts_nickname" +msgid "Nickname" +msgstr "Escais" + +#: [accounts]accounts_yahoo +#, fuzzy +msgid "Yahoo Account" msgstr "%s - Compte" -#: ../cache/locales.php:497 -#, php-format -msgid "%s - Administration Panel" -msgstr "%s - Panèl d'Administracion" +#: [privacy]privacy_title +msgid "Privacy Level" +msgstr "Nivèl de confidencialitat" -#: ../cache/locales.php:498 -#, php-format -msgid "%s - Blog" +#: [privacy]privacy_question +msgid "Is this profile public ?" +msgstr "Es lo perfil public ?" + +#: [privacy]privacy_info +msgid "Please pay attention ! By making your profile public, all the information listed above will be available for all the Movim users and on the whole Internet." msgstr "" -#: ../cache/locales.php:499 -#, php-format -msgid "%s - Configuration" -msgstr "%s - Configuracion" - -#: ../cache/locales.php:500 -#, php-format -msgid "%s - Discover" -msgstr "%s - Descobrir" - -#: ../cache/locales.php:501 -#, php-format -msgid "%s - Explore" -msgstr "%s - Explorar" - -#: ../cache/locales.php:502 -#, php-format -msgid "%s - Help Page" -msgstr "%s - Pagina d'Ajuda" - -#: ../cache/locales.php:503 -#, php-format -msgid "%s - Login to Movim" -msgstr "%s - Dobrir una sesilha MOVIM" - -#: ../cache/locales.php:504 -#, php-format -msgid "%s - Welcome to Movim" -msgstr "%s - Benvengut sus MOVIM" - -#: ../cache/locales.php:505 -#, php-format -msgid "%s - Media" -msgstr "" - -#: ../cache/locales.php:506 -#, php-format -msgid "%s - News" -msgstr "%s - Actualitats" - -#: ../cache/locales.php:507 -#, php-format -msgid "%s - Group Configuration" -msgstr "" - -#: ../cache/locales.php:508 -#, php-format -msgid "%s - Group" -msgstr "" - -#: ../cache/locales.php:509 -#, php-format -msgid "%s - 404" -msgstr "" - -#: ../cache/locales.php:510 -#, php-format -msgid "%s - Profile" -msgstr "%s - Perfil" - -#: ../cache/locales.php:511 -#, php-format -msgid "%s - Server" -msgstr "" - -#: ../cache/locales.php:512 -msgid "Validate" -msgstr "Validar" - -#: ../cache/locales.php:513 -msgid "Refresh" -msgstr "Metre a jorn" - -#: ../cache/locales.php:514 -msgid "Add" -msgstr "Apondre" - -#: ../cache/locales.php:515 -msgid "Delete" -msgstr "" - -#: ../cache/locales.php:516 -msgid "Remove" -msgstr "" - -#: ../cache/locales.php:517 -msgid "Cancel" -msgstr "Abandonar" - -#: ../cache/locales.php:518 -msgid "Close" -msgstr "Tampar" - -#: ../cache/locales.php:519 -msgid "Update" -msgstr "Metre a jorn" - -#: ../cache/locales.php:520 -msgid "Updating" -msgstr "Mesa a jorn" - -#: ../cache/locales.php:521 +#: [save]submit [button]submit msgid "Submit" msgstr "Validar" -#: ../cache/locales.php:522 -msgid "Submitting" -msgstr "Somission en cors" - -#: ../cache/locales.php:523 +#: [save]reset [button]reset msgid "Reset" msgstr "Reïnicializar" -#: ../cache/locales.php:524 +#: [visio]hung_up +msgid "Hung up" +msgstr "" + +#: [visio]busy +msgid "Your contact is busy" +msgstr "" + +#: [visio]declined +msgid "Declined" +msgstr "" + +#: [visio]calling +msgid "Is calling you" +msgstr "" + +#: [visio]call +msgid "Call" +msgstr "" + +#: [visio]hang_up +msgid "Hang up" +msgstr "" + +#: [visio]connection +msgid "Connection" +msgstr "" + +#: [global]no_js +msgid "You don't have javascript enabled. Good luck with that." +msgstr "" + +#: [global]description +msgid "Movim is a kickass distributed social networking platform that protect your privacy an comes with a set of awesome features." +msgstr "" + +#: [page]administration +msgid "Administration" +msgstr "Administracion" + +#: [page]home +msgid "Home" +msgstr "Dorsièr personal" + +#: [page]discover +msgid "Discover" +msgstr "Descobrir" + +#: [page]explore +msgid "Explore" +msgstr "Explorar" + +#: [page]account_creation +msgid "Account Creation" +msgstr "Creacion de compte" + +#: [page]avatar +msgid "Avatar" +msgstr "Avatar" + +#: [page]chats +msgid "Chats" +msgstr "" + +#: [page]server +msgid "Server" +msgstr "Servidor" + +#: [page]public_groups +msgid "Public Groups" +msgstr "Gropes publics" + +#: [page]viewer +msgid "Viewer" +msgstr "Visionadoira" + +#: [page]media +msgid "Media" +msgstr "Mèdia" + +#: [page]blog +msgid "Blog" +msgstr "Blòg" + +#: [page]about +msgid "About" +msgstr "A prepaus" + +#: [page]login +msgid "Login" +msgstr "" + +#: [page]feed +msgid "Feed" +msgstr "Flux" + +#: [page]gallery +msgid "Gallery" +msgstr "" + +#: [page]visio +msgid "Visio-conference" +msgstr "Visioconferéncia" + +#: [page]pods +msgid "Pods" +msgstr "" + +#: [page]share +msgid "Share" +msgstr "" + +#: [page]room +msgid "Room" +msgstr "" + +#: [error]error +msgid "Error: %s" +msgstr "Error : %s" + +#: [error]cannot_load_file +msgid "Cannot load file '%s'" +msgstr "Lo fichier '%s' es pas accessible" + +#: [error]route +msgid "Route error, please set all the parameters for the page %s" +msgstr "" + +#: [error]widget_load_error +msgid "Requested widget '%s' doesn't exist." +msgstr "" + +#: [error]widget_call_error +msgid "Requested event '%s' not registered." +msgstr "" + +#: [error]whoops +msgid "Whoops!" +msgstr "" + +#: [error]media_not_found +msgid "It seem that you don't have any pictures here?" +msgstr "" + +#: [error]media_ask_upload +msgid "You can try to upload a couple by going to the Media page" +msgstr "" + +#: [title]about +msgid "%s - About" +msgstr "%s - A prepaus" + +#: [title]account +msgid "%s - Account" +msgstr "%s - Compte" + +#: [title]administration +msgid "%s - Administration Panel" +msgstr "%s - Panèl d'Administracion" + +#: [title]blog +msgid "%s - Blog" +msgstr "" + +#: [title]configuration +msgid "%s - Configuration" +msgstr "%s - Configuracion" + +#: [title]discover +msgid "%s - Discover" +msgstr "%s - Descobrir" + +#: [title]explore +msgid "%s - Explore" +msgstr "%s - Explorar" + +#: [title]help +msgid "%s - Help Page" +msgstr "%s - Pagina d'Ajuda" + +#: [title]login +msgid "%s - Login to Movim" +msgstr "%s - Dobrir una sesilha MOVIM" + +#: [title]main +msgid "%s - Welcome to Movim" +msgstr "%s - Benvengut sus MOVIM" + +#: [title]media +msgid "%s - Media" +msgstr "" + +#: [title]news +msgid "%s - News" +msgstr "%s - Actualitats" + +#: [title]node_configuration +msgid "%s - Group Configuration" +msgstr "" + +#: [title]node +msgid "%s - Group" +msgstr "" + +#: [title]not_found +msgid "%s - 404" +msgstr "" + +#: [title]profile +msgid "%s - Profile" +msgstr "%s - Perfil" + +#: [title]server +msgid "%s - Server" +msgstr "" + +#: [button]validate +msgid "Validate" +msgstr "Validar" + +#: [button]refresh +msgid "Refresh" +msgstr "Metre a jorn" + +#: [button]add +msgid "Add" +msgstr "Apondre" + +#: [button]delete +msgid "Delete" +msgstr "" + +#: [button]cancel +msgid "Cancel" +msgstr "Abandonar" + +#: [button]close +msgid "Close" +msgstr "Tampar" + +#: [button]update +msgid "Update" +msgstr "Metre a jorn" + +#: [button]updating +msgid "Updating" +msgstr "Mesa a jorn" + +#: [button]submitting +msgid "Submitting" +msgstr "Somission en cors" + +#: [button]register msgid "Register" msgstr "" -#: ../cache/locales.php:525 +#: [button]unregister msgid "Unregister" msgstr "" -#: ../cache/locales.php:526 +#: [button]save msgid "Save" msgstr "Enregistrar" -#: ../cache/locales.php:527 +#: [button]clear msgid "Clear" msgstr "" -#: ../cache/locales.php:528 +#: [button]upload msgid "Upload" msgstr "Mandar" -#: ../cache/locales.php:529 +#: [button]come_in msgid "Come in!" msgstr "'Chabatz d'entrar !" -#: ../cache/locales.php:530 +#: [button]connecting msgid "Connecting" msgstr "" -#: ../cache/locales.php:531 +#: [button]bool_yes msgid "Yes" msgstr "Òc" -#: ../cache/locales.php:532 +#: [button]bool_no msgid "No" msgstr "Non" -#: ../cache/locales.php:534 +#: [button]return msgid "Return" msgstr "" -#: ../cache/locales.php:535 +#: [button]accept msgid "Accept" msgstr "Acceptar" -#: ../cache/locales.php:536 +#: [button]refuse msgid "Refuse" msgstr "" -#: ../cache/locales.php:537 +#: [button]next msgid "Next" msgstr "" -#: ../cache/locales.php:538 +#: [button]previous msgid "Previous" msgstr "" -#: ../cache/locales.php:539 -#, php-format +#: [step]step msgid "Step %s" msgstr "" -#: ../cache/locales.php:542 +#: [day]title msgid "Day" msgstr "Jorn" -#: ../cache/locales.php:543 +#: [day]monday msgid "Monday" msgstr "Diluns" -#: ../cache/locales.php:544 +#: [day]tuesday msgid "Tuesday" msgstr "Dimars" -#: ../cache/locales.php:545 +#: [day]wednesday msgid "Wednesday" msgstr "Dimècres" -#: ../cache/locales.php:546 +#: [day]thursday msgid "Thursday" msgstr "Dijòus" -#: ../cache/locales.php:547 +#: [day]friday msgid "Friday" msgstr "Divendres" -#: ../cache/locales.php:548 +#: [day]saturday msgid "Saturday" msgstr "Dissabte" -#: ../cache/locales.php:549 +#: [day]sunday msgid "Sunday" msgstr "" -#: ../cache/locales.php:550 ../cache/locales.php:559 +#: [gender]nil +#, fuzzy +msgctxt "[gender]nil" msgid "None" msgstr "Pas cap" -#: ../cache/locales.php:551 +#: [gender]male msgid "Male" msgstr "Òme" -#: ../cache/locales.php:552 +#: [gender]female msgid "Female" msgstr "Femna" -#: ../cache/locales.php:553 +#: [gender]other msgid "Other" msgstr "Autre" -#: ../cache/locales.php:554 +#: [client]bot msgid "Bot" msgstr "Robòt" -#: ../cache/locales.php:555 +#: [client]desktop msgid "Desktop" msgstr "Burèu" -#: ../cache/locales.php:556 +#: [client]phone msgid "Phone" msgstr "Telefòn" -#: ../cache/locales.php:557 +#: [client]web msgid "Web" msgstr "Internet" -#: ../cache/locales.php:558 +#: [client]registered msgid "Registered" msgstr "Enregistrat" -#: ../cache/locales.php:560 +#: [marital]nil +#, fuzzy +msgctxt "[marital]nil" +msgid "None" +msgstr "Pas cap" + +#: [marital]single msgid "Single" msgstr "Celibatari(ària)" -#: ../cache/locales.php:561 +#: [marital]relationship msgid "In a relationship" msgstr "En parelh" -#: ../cache/locales.php:562 +#: [marital]married msgid "Married" msgstr "Maridat(ada)" -#: ../cache/locales.php:563 +#: [marital]divorced msgid "Divorced" msgstr "Divorciat(ada)" -#: ../cache/locales.php:564 +#: [marital]widowed msgid "Widowed" msgstr "Veuse(a)" -#: ../cache/locales.php:565 +#: [marital]cohabiting msgid "Cohabiting" msgstr "Associat" -#: ../cache/locales.php:566 +#: [marital]union msgid "Civil Union" msgstr "Union civila" -#: ../cache/locales.php:567 +#: [flag]white msgid "Not shared" msgstr "Pas partejat" -#: ../cache/locales.php:568 +#: [flag]green msgid "Shared with one contact" msgstr "Partejat amb un contacte" -#: ../cache/locales.php:569 +#: [flag]orange msgid "Shared with all contacts" msgstr "Partejat amb totes los contactes" -#: ../cache/locales.php:570 +#: [flag]red msgid "Shared with the XMPP network" msgstr "Partejat amb la ret XMPP" -#: ../cache/locales.php:571 +#: [flag]black msgid "Shared with the whole Internet" msgstr "Partejat amb tot Internet" -#: ../cache/locales.php:572 +#: [presence]online msgid "Online" msgstr "En linha" -#: ../cache/locales.php:573 +#: [presence]away msgid "Away" msgstr "Absent(a)" -#: ../cache/locales.php:574 +#: [presence]dnd msgid "Do Not Disturb" msgstr "De derengar pas" -#: ../cache/locales.php:575 +#: [presence]xa msgid "Extended Away" msgstr "Abséncia longa" -#: ../cache/locales.php:576 +#: [presence]offline msgid "Offline" msgstr "Desconnectat" -#: ../cache/locales.php:577 +#: [presence]error msgid "Error" msgstr "Error" -#: ../cache/locales.php:578 +#: [mood]afraid msgid "afraid" msgstr "" -#: ../cache/locales.php:579 +#: [mood]amazed msgid "amazed" msgstr "estonat(ada)" -#: ../cache/locales.php:580 +#: [mood]amorous msgid "amorous" msgstr "Amorós/osa" -#: ../cache/locales.php:581 +#: [mood]angry msgid "angry" msgstr "en colèra" -#: ../cache/locales.php:582 +#: [mood]annoyed msgid "annoyed" msgstr "contrariat/ada" -#: ../cache/locales.php:583 +#: [mood]anxious msgid "anxious" msgstr "" -#: ../cache/locales.php:584 +#: [mood]aroused msgid "aroused" msgstr "estimulat(ada)" -#: ../cache/locales.php:585 +#: [mood]ashamed msgid "ashamed" msgstr "vergonhós(osa)" -#: ../cache/locales.php:586 +#: [mood]bored msgid "bored" msgstr "alassat(ada)" -#: ../cache/locales.php:587 +#: [mood]brave msgid "brave" msgstr "coratjós(osa)" -#: ../cache/locales.php:588 +#: [mood]calm msgid "calm" msgstr "calm(a)" -#: ../cache/locales.php:589 +#: [mood]cautious msgid "cautious" msgstr "prudent(a)" -#: ../cache/locales.php:590 +#: [mood]cold msgid "cold" msgstr "" -#: ../cache/locales.php:591 +#: [mood]confident msgid "confident" msgstr "Fisançós/osa" -#: ../cache/locales.php:592 +#: [mood]confused msgid "confused" msgstr "perplèxe(a)" -#: ../cache/locales.php:593 +#: [mood]contemplative msgid "contemplative" msgstr "contemplatiu(va)" -#: ../cache/locales.php:594 +#: [mood]contented msgid "contented" msgstr "satisfach(a)" -#: ../cache/locales.php:595 +#: [mood]cranky msgid "cranky" msgstr "" -#: ../cache/locales.php:596 +#: [mood]crazy msgid "crazy" msgstr "Franc fadard(a)" -#: ../cache/locales.php:597 +#: [mood]creative msgid "creative" msgstr "creatiu(va)" -#: ../cache/locales.php:598 +#: [mood]curious msgid "curious" msgstr "curiós(osa)" -#: ../cache/locales.php:599 +#: [mood]dejected msgid "dejected" msgstr "" -#: ../cache/locales.php:600 +#: [mood]depressed msgid "depressed" msgstr "deprimit(ida)" -#: ../cache/locales.php:601 +#: [mood]disappointed msgid "disappointed" msgstr "decebut(uda)" -#: ../cache/locales.php:602 +#: [mood]disgusted msgid "disgusted" msgstr "" -#: ../cache/locales.php:603 +#: [mood]dismayed msgid "dismayed" msgstr "" -#: ../cache/locales.php:604 +#: [mood]distracted msgid "distracted" msgstr "distrach(a)" -#: ../cache/locales.php:605 +#: [mood]embarrassed msgid "embarrassed" msgstr "" -#: ../cache/locales.php:606 +#: [mood]envious msgid "envious" msgstr "" -#: ../cache/locales.php:607 +#: [mood]excited msgid "excited" msgstr "Excitat/ada" -#: ../cache/locales.php:608 +#: [mood]flirtatious msgid "flirtatious" msgstr "seductor" -#: ../cache/locales.php:609 +#: [mood]frustated msgid "frustated" msgstr "" -#: ../cache/locales.php:610 +#: [mood]grateful msgid "grateful" msgstr "reconeissent" -#: ../cache/locales.php:611 +#: [mood]grieving msgid "grieving" msgstr "" -#: ../cache/locales.php:612 +#: [mood]grumpy msgid "grumpy" msgstr "romegós" -#: ../cache/locales.php:613 +#: [mood]guilty msgid "guilty" msgstr "copable" -#: ../cache/locales.php:614 +#: [mood]happy msgid "happy" msgstr "Urós/osa" -#: ../cache/locales.php:615 +#: [mood]hopeful msgid "hopeful" msgstr "optimista" -#: ../cache/locales.php:616 +#: [mood]hot msgid "hot" msgstr "Caud(a)" -#: ../cache/locales.php:617 +#: [mood]humbled msgid "humbled" msgstr "esmougut" -#: ../cache/locales.php:618 +#: [mood]humiliated msgid "humiliated" msgstr "umiliat" -#: ../cache/locales.php:619 +#: [mood]hungry msgid "hungry" msgstr "" -#: ../cache/locales.php:620 +#: [mood]hurt msgid "hurt" msgstr "" -#: ../cache/locales.php:621 +#: [mood]impressed msgid "impressed" msgstr "impressionat" -#: ../cache/locales.php:622 +#: [mood]in_awe msgid "in awe" msgstr "" -#: ../cache/locales.php:623 +#: [mood]in_love msgid "in love" msgstr "amorós" -#: ../cache/locales.php:624 +#: [mood]indignant msgid "indignant" msgstr "" -#: ../cache/locales.php:625 +#: [mood]interested msgid "interested" msgstr "interessat" -#: ../cache/locales.php:626 +#: [mood]intoxicated msgid "intoxicated" msgstr "intoxicat" -#: ../cache/locales.php:627 +#: [mood]invincible msgid "invincible" msgstr "" -#: ../cache/locales.php:628 +#: [mood]jealous msgid "jealous" msgstr "gelós" -#: ../cache/locales.php:629 +#: [mood]lonely msgid "lonely" msgstr "sol" -#: ../cache/locales.php:630 +#: [mood]lost msgid "lost" msgstr "perdut" -#: ../cache/locales.php:631 +#: [mood]lucky msgid "lucky" msgstr "astruc" -#: ../cache/locales.php:632 +#: [mood]mean msgid "mean" msgstr "missant" -#: ../cache/locales.php:633 +#: [mood]moody msgid "moody" msgstr "ronhós" -#: ../cache/locales.php:634 +#: [mood]nervous msgid "nervous" msgstr "nerviós" -#: ../cache/locales.php:635 +#: [mood]neutral msgid "neutral" msgstr "neutre" -#: ../cache/locales.php:636 +#: [mood]offended msgid "offended" msgstr "ofensat" -#: ../cache/locales.php:637 +#: [mood]outraged msgid "outraged" msgstr "" -#: ../cache/locales.php:638 +#: [mood]playful msgid "playful" msgstr "jogaire" -#: ../cache/locales.php:639 +#: [mood]proud msgid "proud" msgstr "fièr" -#: ../cache/locales.php:640 +#: [mood]relaxed msgid "relaxed" msgstr "" -#: ../cache/locales.php:641 +#: [mood]relieved msgid "relieved" msgstr "" -#: ../cache/locales.php:642 -msgid "remorseful" -msgstr "" - -#: ../cache/locales.php:643 +#: [mood]restless msgid "restless" msgstr "impacient" -#: ../cache/locales.php:644 +#: [mood]sad msgid "sad" msgstr "triste" -#: ../cache/locales.php:645 +#: [mood]sarcastic msgid "sarcastic" msgstr "sarcastic" -#: ../cache/locales.php:646 +#: [mood]satisfied msgid "satisfied" msgstr "satisfach" -#: ../cache/locales.php:647 +#: [mood]serious msgid "serious" msgstr "seriós" -#: ../cache/locales.php:648 +#: [mood]shocked msgid "shocked" msgstr "" -#: ../cache/locales.php:649 +#: [mood]shy msgid "shy" msgstr "timid" -#: ../cache/locales.php:650 +#: [mood]sick msgid "sick" msgstr "malaut" -#: ../cache/locales.php:651 +#: [mood]sleepy msgid "sleepy" msgstr "endormit" -#: ../cache/locales.php:652 +#: [mood]spontaneous msgid "spontaneous" msgstr "espontanèu" -#: ../cache/locales.php:653 +#: [mood]stressed msgid "stressed" msgstr "estressat" -#: ../cache/locales.php:654 +#: [mood]strong msgid "strong" msgstr "fòrt" -#: ../cache/locales.php:655 +#: [mood]surprised msgid "surprised" msgstr "susprés" -#: ../cache/locales.php:656 +#: [mood]thankful msgid "thankful" msgstr "reconeissent" -#: ../cache/locales.php:657 +#: [mood]thirsty msgid "thirsty" msgstr "" -#: ../cache/locales.php:658 +#: [mood]tired msgid "tired" msgstr "alassat" -#: ../cache/locales.php:659 +#: [mood]undefined msgid "undefined" msgstr "pas definit" -#: ../cache/locales.php:660 +#: [mood]weak msgid "weak" msgstr "feble" -#: ../cache/locales.php:661 +#: [mood]worried msgid "worried" msgstr "preocupat" -#: ../cache/locales.php:662 +#: [month]title msgid "Month" msgstr "Mes" -#: ../cache/locales.php:663 +#: [month]january msgid "January" msgstr "Genièr" -#: ../cache/locales.php:664 +#: [month]february msgid "February" msgstr "Febrièr" -#: ../cache/locales.php:665 +#: [month]march msgid "March" msgstr "Març" -#: ../cache/locales.php:666 +#: [month]april msgid "April" msgstr "Abril" -#: ../cache/locales.php:667 +#: [month]may msgid "May" msgstr "Mai" -#: ../cache/locales.php:668 +#: [month]june msgid "June" msgstr "Junh" -#: ../cache/locales.php:669 +#: [month]july msgid "July" msgstr "Julhet" -#: ../cache/locales.php:670 +#: [month]august msgid "August" msgstr "Agost" -#: ../cache/locales.php:671 +#: [month]september msgid "September" msgstr "Setembre" -#: ../cache/locales.php:672 +#: [month]october msgid "October" msgstr "Octobre" -#: ../cache/locales.php:673 +#: [month]november msgid "November" msgstr "Novembre" -#: ../cache/locales.php:674 +#: [month]december msgid "December" msgstr "Decembre" -#: ../cache/locales.php:675 +#: [year]title msgid "Year" msgstr "Annada" -#: ../cache/locales.php:676 +#: [date]today msgid "Today" msgstr "Uèi" -#: ../cache/locales.php:677 +#: [date]tomorrow msgid "Tomorrow" msgstr "Deman" -#: ../cache/locales.php:678 +#: [date]yesterday msgid "Yesterday" msgstr "Ièr" -#: ../cache/locales.php:679 -#, php-format -msgid " %d days ago" +#: [date]ago +#, fuzzy +msgid "%d days ago" msgstr " i a %d jorns" -#: ../cache/locales.php:680 +#: [date]day msgid "day" msgstr "jorn" -#: ../cache/locales.php:682 +#: [post]whats_new msgid "What's new ?" msgstr "" -#: ../cache/locales.php:683 +#: [post]place msgid "Place" msgstr "Luòc" -#: ../cache/locales.php:684 +#: [post]by msgid "by" msgstr "per" -#: ../cache/locales.php:685 +#: [post]geolocalisation msgid "Geolocalisation" msgstr "" -#: ../cache/locales.php:686 +#: [post]email msgid "email" msgstr "E-mail" -#: ../cache/locales.php:688 +#: [post]no_comments msgid "No comments yet" msgstr "" -#: ../cache/locales.php:689 +#: [post]no_comments_stream msgid "No comments stream" msgstr "Pas de flux de comentaris" -#: ../cache/locales.php:690 +#: [post]no_load msgid "Your feed cannot be loaded." msgstr "Vòstre fial es pas accessible." -#: ../cache/locales.php:691 +#: [post]older msgid "Get older posts" msgstr "Recuperar los ancians pòsts" -#: ../cache/locales.php:692 -#, php-format +#: [post]new_items msgid "%s new items" msgstr "" -#: ../cache/locales.php:693 +#: [post]comment_error msgid "Comment publication error" msgstr "" -#: ../cache/locales.php:694 +#: [post]comments_older msgid "Show the older comments" msgstr "Afichar los autres comentaris" -#: ../cache/locales.php:695 -msgid "Loading comments ..." -msgstr "" +#: [post]comments_loading +#, fuzzy +msgid "Loading comments..." +msgstr "Cargament de vòstre flux ..." -#: ../cache/locales.php:696 +#: [post]comments_get msgid "Get the comments" msgstr "" -#: ../cache/locales.php:697 +#: [post]comment_add msgid "Add a comment" msgstr "" -#: ../cache/locales.php:698 +#: [post]share msgid "Share with" msgstr "" -#: ../cache/locales.php:699 +#: [post]share_everyone msgid "Everyone" msgstr "" -#: ../cache/locales.php:700 +#: [post]share_your_contacts msgid "Your contacts" msgstr "" -#: ../cache/locales.php:702 +#: [post]updated msgid "Updated" msgstr "" -#: ../cache/locales.php:703 +#: [post]content_not_found msgid "Content not found" msgstr "" -#: ../cache/locales.php:704 +#: [post]default_title msgid "Contact publication" msgstr "" -#: ../cache/locales.php:705 +#: [post]comments msgid "Comments" msgstr "" -#: ../cache/locales.php:706 +#: [api]error msgid "The API is not reachable, try again later" msgstr "" -#: ../cache/locales.php:707 +#: [field]type_here msgid "Type here" msgstr "" -#, php-format +#~ msgid "Environment" +#~ msgstr "Environament" + #~ msgid "Couldn't create configuration file '%s'." #~ msgstr "La creacion dau fichier de configuracion '%s' es impossibla." #~ msgid "JID not provided." #~ msgstr "JID indisponible." -#, php-format #~ msgid "Cannot open log file '%s'" #~ msgstr "Impossible de dubrir lo jornau '%s'" -#, php-format #~ msgid "%s - Account Creation" #~ msgstr "%s - Creacion de compte" @@ -2613,7 +2746,6 @@ msgstr "" #~ msgid "Actual version : " #~ msgstr "Version actuala : " -#, php-format #~ msgid "Install the %s package" #~ msgstr "Installar lo paquet %s" @@ -2627,9 +2759,7 @@ msgstr "" #~ msgstr "Òsca !" #~ msgid "Update your PHP version or contact your server administrator" -#~ msgstr "" -#~ "Actualizatz vòstra version de PHP o contactatz l'administrador de vòstre " -#~ "servidor" +#~ msgstr "Actualizatz vòstra version de PHP o contactatz l'administrador de vòstre servidor" #~ msgid "BOSH Connection Preferences" #~ msgstr "Configuracion de la connexion BOSH" @@ -2656,37 +2786,28 @@ msgstr "" #~ msgstr "Crear ma vCard" #~ msgid "PHP version mismatch. Movim requires PHP 5.3 minimum." -#~ msgstr "" -#~ "Avètz pas la bona version de PHP. Movim a mestièr al mens de PHP 5.3." +#~ msgstr "Avètz pas la bona version de PHP. Movim a mestièr al mens de PHP 5.3." #~ msgid "Enable read and write rights on Movim's root folder" -#~ msgstr "" -#~ "Activatz los drechess de lectura e d'escritura sul dorsièr raiç de Movim" +#~ msgstr "Activatz los drechess de lectura e d'escritura sul dorsièr raiç de Movim" -#, php-format #~ msgid "Install %s and %s packages" #~ msgstr "Installatz los paquets %s e %s" #~ msgid "Movim's folder must be writable." #~ msgstr "Lo dorsièr Movim deu èsser accessible en escritura" -#, php-format #~ msgid "Movim requires the %s extension." #~ msgstr "Movim a mestièr de l'extension %s." #~ msgid "Proxy Preferences" #~ msgstr "Preferéncias du Proxy" -#, php-format #~ msgid "Couldn't create directory '%s'." #~ msgstr "La creacion del repertòri '%s' es impossibla." -#~ msgid "" -#~ "The following requirements were not met. Please make sure they are all " -#~ "satisfied in order to install Movim." -#~ msgstr "" -#~ "Los elements seguents son pas disponibles. Siatz segur que sián corregits " -#~ "per poder installar Movim." +#~ msgid "The following requirements were not met. Please make sure they are all satisfied in order to install Movim." +#~ msgstr "Los elements seguents son pas disponibles. Siatz segur que sián corregits per poder installar Movim." #~ msgid "Compatibility Test" #~ msgstr "Tèst de compatibilitat" @@ -2697,21 +2818,15 @@ msgstr "" #~ msgid "User not logged in." #~ msgstr "Sètz pas autentificat." -#, php-format #~ msgid "Please remove the %s folder in order to complete the installation" #~ msgstr "Si vos plai, suprimètz lo dorsièr %s per acabar l'installacion" -#, php-format #~ msgid "You can now access your shiny Movim instance %sJump In !%s" #~ msgstr "Ara, podètz accedir a vòstra version de Movim tota nòva %sAnem !%s" #~ msgid "Database Movim schema installed" #~ msgstr "L'esquèma de la banca de donadas es estat installat" -#~ msgid "Database Detected" -#~ msgstr "Banca de donadas detectada" - -#, php-format #~ msgid "jid '%s' is incorrect" #~ msgstr "Lo jid '%s' es incorrècte" @@ -2733,15 +2848,9 @@ msgstr "" #~ msgid "8 characters" #~ msgstr "8 caractèrs" -#~ msgid "Remove this contact" -#~ msgstr "Suprimir aqueste contacte" - #~ msgid "Address" #~ msgstr "Adreça" -#~ msgid "Loading your feed ..." -#~ msgstr "Cargament de vòstre flux ..." - #~ msgid "Debug console" #~ msgstr "Consòla de desbugatge" @@ -2755,16 +2864,10 @@ msgstr "" #~ msgstr "Seguir" #~ msgid "A capital letter, a digit and a special character are recommended" -#~ msgstr "" -#~ "Un bon senhal es compausat d'al mens una majuscula, una chifra e un caractèr " -#~ "especial" +#~ msgstr "Un bon senhal es compausat d'al mens una majuscula, una chifra e un caractèr especial" -#~ msgid "" -#~ "Firstly fill in this blank with a brand new account ID, this address will " -#~ "follow you on all the Movim network !" -#~ msgstr "" -#~ "D'en prumier, completatz quel espaci emb una identificacion de compte tota " -#~ "novela, quela adreça vos segrà pertot sus lo malhum Movim !" +#~ msgid "Firstly fill in this blank with a brand new account ID, this address will follow you on all the Movim network !" +#~ msgstr "D'en prumier, completatz quel espaci emb una identificacion de compte tota novela, quela adreça vos segrà pertot sus lo malhum Movim !" #~ msgid "Client Name" #~ msgstr "Nom dau client" @@ -2772,19 +2875,11 @@ msgstr "" #~ msgid "Client Type" #~ msgstr "Tipe de Client" -#~ msgid "" -#~ "Keep in mind that Movim is still under development and will handle many " -#~ "personal details. Its use can potentially endanger your data. Always pay " -#~ "attention to information that you submit." -#~ msgstr "" -#~ "Oblidatz pas que Movim es enquera en desvelopament e vai manipular de la " -#~ "sinformacions personalaS. Son utilizacion las pòt far córrer un dangier. " -#~ "Fasetz totjorn 'tencion a las informacions qu'enviatz." +#~ msgid "Keep in mind that Movim is still under development and will handle many personal details. Its use can potentially endanger your data. Always pay attention to information that you submit." +#~ msgstr "Oblidatz pas que Movim es enquera en desvelopament e vai manipular de la sinformacions personalaS. Son utilizacion las pòt far córrer un dangier. Fasetz totjorn 'tencion a las informacions qu'enviatz." -#~ msgid "" -#~ "Before you enjoy your social network, a few adjustements are required." -#~ msgstr "" -#~ "Davant d'utilizar vòstre malhum sociau, quauques ajsutaments son necessaris." +#~ msgid "Before you enjoy your social network, a few adjustements are required." +#~ msgstr "Davant d'utilizar vòstre malhum sociau, quauques ajsutaments son necessaris." #~ msgid "Thank you for downloading Movim!" #~ msgstr "Mercés per lo descharjament de Movim !" diff --git a/sources/locales/pt.po b/sources/locales/pt.po index 8c74497..b02e9a3 100644 --- a/sources/locales/pt.po +++ b/sources/locales/pt.po @@ -1,2594 +1,2722 @@ # Portuguese translations for Movim package. # This file is distributed under the same license as the Movim package. # This file was translated from CodingTeam at . +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/About/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Account/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AccountNext/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AdHoc/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AdminDB/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AdminMain/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AdminTest/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Api/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Avatar/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Blog/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Bookmark/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Chat/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Chats/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/ConfigData/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Config/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Contact/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Group/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Groups/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Header/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Hello/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Help/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Init/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Location/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/LoginAnonymous/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Login/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Menu/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/NodeAffiliations/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/NodeSubscriptions/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Notifs/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Post/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Presence/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Publish/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/PubsubSubscriptionConfig/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Rooms/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Roster/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Share/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Statistics/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Subscribe/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Syndication/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Upload/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Vcard4/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/VisioExt/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Visio/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../locales/locales.ini msgid "" msgstr "" "Project-Id-Version: Movim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-06-08 22:06+0200\n" +"POT-Creation-Date: 2015-08-20 15:17+0200\n" "PO-Revision-Date: 2014-06-01 23:11+0000\n" "Last-Translator: edhelas \n" "Language-Team: LANGUAGE \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2015-06-18 21:08+0000\n" "X-Generator: Launchpad (build 17570)\n" -"Language: \n" -#: ../cache/locales.php:2 +#: [about]thanks msgid "Thanks" msgstr "" -#: ../cache/locales.php:3 +#: [about]developers msgid "Developers" msgstr "" -#: ../cache/locales.php:4 +#: [about]translators msgid "Translators" msgstr "" -#: ../cache/locales.php:5 +#: [about]software msgid "Software" msgstr "" -#: ../cache/locales.php:6 +#: [about]resources msgid "Resources" msgstr "" -#: ../cache/locales.php:7 ../cache/locales.php:83 ../cache/locales.php:85 +#: [about]api [schema]api [api]title msgid "API" msgstr "" -#: ../cache/locales.php:8 -msgid "" -"Movim is an XMPP-based communication platform. All the project, except the " -"following software and resources, is under" +#: [about]info +msgid "Movim is an XMPP-based communication platform. All the project, except the following software and resources, is under" msgstr "" -#: ../cache/locales.php:9 +#: [account]title msgid "Account" msgstr "" -#: ../cache/locales.php:10 -msgid "The password has been updated" -msgstr "" +#: [account]password_change_title +#, fuzzy +msgid "Change my password" +msgstr "Senha incorreta" -#: ../cache/locales.php:11 -msgid "Please provide a valid password (6 characters minimum)" -msgstr "" - -#: ../cache/locales.php:12 -msgid "The provided passwords are not the same" -msgstr "" - -#: ../cache/locales.php:13 -msgid "Delete my account" -msgstr "" - -#: ../cache/locales.php:14 -msgid "" -"You will delete your XMPP account and all the relative information linked to " -"it (profile, contacts and publications)." -msgstr "" - -#: ../cache/locales.php:15 -msgid "Are you sure that you want to delete it ?" -msgstr "" - -#: ../cache/locales.php:16 ../cache/locales.php:411 -msgid "Create a new account" -msgstr "Criar uma nova conta" - -#: ../cache/locales.php:17 -msgid "No account creation form found on the server" -msgstr "" - -#: ../cache/locales.php:18 ../cache/locales.php:172 -msgid "on" -msgstr "" - -#: ../cache/locales.php:19 -msgid "Your acccount has been successfully registered" -msgstr "" - -#: ../cache/locales.php:20 -msgid "Loading" -msgstr "" - -#: ../cache/locales.php:21 -msgid "Not Acceptable" -msgstr "" - -#: ../cache/locales.php:22 -msgid "The registration system of this server is currently unavailable" -msgstr "" - -#: ../cache/locales.php:23 -msgid "" -"This server use an external system for the registration, please click on the " -"following URL." -msgstr "" - -#: ../cache/locales.php:24 -msgid "Actions" -msgstr "Ações" - -#: ../cache/locales.php:25 ../cache/locales.php:82 -msgid "Database" -msgstr "" - -#: ../cache/locales.php:26 -msgid "Modl wasn't able to connect to the database" -msgstr "" - -#: ../cache/locales.php:27 -msgid "Movim is connected to the database" -msgstr "" - -#: ../cache/locales.php:28 -msgid "The database need to be updated" -msgstr "" - -#: ../cache/locales.php:29 -msgid "Movim database is up to date" -msgstr "" - -#: ../cache/locales.php:30 -msgid "Database Type" -msgstr "" - -#: ../cache/locales.php:31 ../cache/locales.php:50 ../cache/locales.php:540 -msgid "Username" -msgstr "" - -#: ../cache/locales.php:32 ../cache/locales.php:51 ../cache/locales.php:282 -#: ../cache/locales.php:541 +#: [account]password [db]password [credentials]password [form]password +#: [input]password msgid "Password" msgstr "Senha" -#: ../cache/locales.php:33 +#: [account]password_confirmation +#, fuzzy +msgid "Password confirmation" +msgstr "%s - Configuraçāo" + +#: [account]password_changed +msgid "The password has been updated" +msgstr "" + +#: [account]password_not_valid +msgid "Please provide a valid password (6 characters minimum)" +msgstr "" + +#: [account]password_not_same +msgid "The provided passwords are not the same" +msgstr "" + +#: [account]delete_title +msgid "Delete my account" +msgstr "" + +#: [account]delete +#, fuzzy +msgid "Delete your account" +msgstr "Criar uma nova conta" + +#: [account]delete_text +msgid "You will delete your XMPP account and all the relative information linked to it (profile, contacts and publications)." +msgstr "" + +#: [account]delete_text_confirm +msgid "Are you sure that you want to delete it ?" +msgstr "" + +#: [account]gateway_title +msgid "Gateway" +msgstr "" + +#: [create]title [subscribe]title +msgid "Create a new account" +msgstr "Criar uma nova conta" + +#: [create]notfound +msgid "No account creation form found on the server" +msgstr "" + +#: [create]server_on +msgid "on" +msgstr "" + +#: [create]successfull +msgid "Your acccount has been successfully registered" +msgstr "" + +#: [create]loading +msgid "Loading" +msgstr "" + +#: [error]not_acceptable +msgid "Not Acceptable" +msgstr "" + +#: [error]service_unavailable +msgid "The registration system of this server is currently unavailable" +msgstr "" + +#: [oob]about +msgid "This server use an external system for the registration, please click on the following URL." +msgstr "" + +#: [adhoc]title +msgid "Actions" +msgstr "Ações" + +#: [db]legend [schema]database +msgid "Database" +msgstr "" + +#: [db]connect_error +msgid "Modl wasn't able to connect to the database" +msgstr "" + +#: [db]connect_success +msgid "Movim is connected to the database" +msgstr "" + +#: [db]update +msgid "The database need to be updated" +msgstr "" + +#: [db]up_to_date +msgid "Movim database is up to date" +msgstr "" + +#: [db]type +msgid "Database Type" +msgstr "" + +#: [db]username [credentials]username [input]username +msgid "Username" +msgstr "" + +#: [db]host msgid "Host" msgstr "" -#: ../cache/locales.php:34 +#: [db]port msgid "Port" msgstr "" -#: ../cache/locales.php:35 -msgid "Database Name" -msgstr "" +#: [db]name +#, fuzzy +msgid "Database sName" +msgstr "Banco de dados detectado" -#: ../cache/locales.php:36 +#: [admin]general msgid "General Settings" msgstr "" -#: ../cache/locales.php:37 +#: [general]theme msgid "Theme" msgstr "" -#: ../cache/locales.php:38 +#: [general]language msgid "Default language" msgstr "" -#: ../cache/locales.php:39 -msgid "Environment" -msgstr "" - -#: ../cache/locales.php:40 +#: [general]log_verbosity msgid "Log verbosity" msgstr "" -#: ../cache/locales.php:41 +#: [general]timezone msgid "Server Timezone" msgstr "" -#: ../cache/locales.php:42 +#: [general]limit msgid "User folder size limit (in bytes)" msgstr "" -#: ../cache/locales.php:43 +#: [websocket]title msgid "WebSocket Configuration" msgstr "" -#: ../cache/locales.php:44 +#: [websocket]info msgid "Enter here a valid WebSocket URI in the form" msgstr "" -#: ../cache/locales.php:45 +#: [websocket]label msgid "WebSocket URI" msgstr "" -#: ../cache/locales.php:46 -msgid "" -"If you change the URI, please restart the daemon to reload the configuration" +#: [websocket]save_info +msgid "If you change the URI, please restart the daemon to reload the configuration" msgstr "" -#: ../cache/locales.php:47 +#: [websocket]publics msgid "Public WebSockets" msgstr "" -#: ../cache/locales.php:48 +#: [credentials]title msgid "Administration Credential" msgstr "" -#: ../cache/locales.php:49 +#: [credentials]info msgid "Change the default credentials admin/password" msgstr "" -#: ../cache/locales.php:52 +#: [credentials]re_password msgid "Retype password" msgstr "" -#: ../cache/locales.php:53 +#: [whitelist]title msgid "Whitelist - XMPP Server" msgstr "" -#: ../cache/locales.php:54 -msgid "" -"If you want to specify a list of authorized XMPP servers on your Movim pod " -"and forbid the connection on all the others please put their domain name " -"here, with comma (ex: movim.eu,jabber.fr)" +#: [whitelist]info1 +msgid "If you want to specify a list of authorized XMPP servers on your Movim pod and forbid the connection on all the others please put their domain name here, with comma (ex: movim.eu,jabber.fr)" msgstr "" -#: ../cache/locales.php:55 -msgid "" -"Leave this field blank if you allow the access to all the XMPP accounts." +#: [whitelist]info2 +msgid "Leave this field blank if you allow the access to all the XMPP accounts." msgstr "" -#: ../cache/locales.php:56 +#: [whitelist]label msgid "List of whitelisted XMPP servers" msgstr "" -#: ../cache/locales.php:57 ../cache/locales.php:61 +#: [information]title +#, fuzzy +msgctxt "[information]title" msgid "Information Message" -msgstr "" +msgstr "Informações do Cliente" -#: ../cache/locales.php:58 +#: [information]description msgid "Description" msgstr "" -#: ../cache/locales.php:59 +#: [information]info1 msgid "This message will be displayed on the login page" msgstr "" -#: ../cache/locales.php:60 -msgid "Leave this field blank if you don't want to show any message." +#: [information]info2 +msgid "Leave this field blank if you dont want to show any message." msgstr "" -#: ../cache/locales.php:62 +#: [information]label +#, fuzzy +msgctxt "[information]label" +msgid "Information Message" +msgstr "Informações do Cliente" + +#: [log]empty msgid "Empty" msgstr "" -#: ../cache/locales.php:63 +#: [log]syslog msgid "Syslog" msgstr "" -#: ../cache/locales.php:64 +#: [log]syslog_files msgid "Syslog and files" msgstr "" -#: ../cache/locales.php:65 +#: [rewrite]title msgid "URL Rewriting" msgstr "" -#: ../cache/locales.php:66 +#: [rewrite]info msgid "The URL Rewriting can be enabled" msgstr "" -#: ../cache/locales.php:67 +#: [admin]compatibility msgid "General Overview" msgstr "" -#: ../cache/locales.php:68 -msgid "" -"Movim has found some issues or things that need to be fixed or improved" +#: [compatibility]info +msgid "Movim has found some issues or things that need to be fixed or improved" msgstr "" -#: ../cache/locales.php:69 -#, php-format +#: [compatibility]php1 msgid "Update your PHP-Version: %s" msgstr "" -#: ../cache/locales.php:70 +#: [compatibility]php2 msgid "Required: 5.3.0" msgstr "" -#: ../cache/locales.php:71 +#: [compatibility]curl msgid "Install the php5-curl library" msgstr "" -#: ../cache/locales.php:72 +#: [compatibility]imagick msgid "Install the php5-imagick library" msgstr "" -#: ../cache/locales.php:73 +#: [compatibility]gd msgid "Install the php5-gd library" msgstr "" -#: ../cache/locales.php:74 -msgid "Read and write rights for the webserver in Movim's root directory" -msgstr "" +#: [compatibility]rights +#, fuzzy +msgid "Read and write rights for the webserver in Movims root directory" +msgstr "Habilitar permissões de leitura e escrita na pasta raiz do Movim" -#: ../cache/locales.php:75 +#: [compatibility]rewrite msgid "The URL Rewriting support is currently disabled" msgstr "" -#: ../cache/locales.php:76 +#: [compatibility]db msgid "The database need to be updated, go to the database panel to fix this" msgstr "" -#: ../cache/locales.php:77 -msgid "" -"WebSocket connection error, check if the Movim Daemon is running and is " -"reacheable" +#: [compatibility]websocket +msgid "WebSocket connection error, check if the Movim Daemon is running and is reachable" msgstr "" -#: ../cache/locales.php:78 -msgid "" -"XMPP Websocket connection error, please check the validity of the URL given " -"in the General Configuration" +#: [compatibility]xmpp_websocket +msgid "XMPP Websocket connection error, please check the validity of the URL given in the General Configuration" msgstr "" -#: ../cache/locales.php:79 +#: [schema]browser msgid "Browser" msgstr "" -#: ../cache/locales.php:80 +#: [schema]movim msgid "Movim Core" msgstr "" -#: ../cache/locales.php:81 +#: [schema]daemon msgid "Movim Daemon" msgstr "" -#: ../cache/locales.php:84 +#: [schema]xmpp msgid "XMPP" msgstr "" -#: ../cache/locales.php:86 -#, php-format -msgid "" -"Here you can register your pod on the official %sMovim API%s and be listed " -"on %sthe pods page%s." +#: [api]info +msgid "Here you can register your pod on the official %sMovim API%s and be listed on %sthe pods page%s." msgstr "" -#: ../cache/locales.php:87 +#: [api]register msgid "Your pod is not registered on the API" msgstr "" -#: ../cache/locales.php:88 +#: [api]registered msgid "Your pod is registered on the API" msgstr "" -#: ../cache/locales.php:89 +#: [api]wait msgid "Your pod is not yet validated" msgstr "" -#: ../cache/locales.php:90 +#: [api]validated msgid "Your pod is validated" msgstr "" -#: ../cache/locales.php:91 -msgid "" -"You asked to be removed from the API, this request will be processed in a " -"couple of hours" +#: [api]unregister +msgid "You asked to be removed from the API, this request will be processed in a couple of hours" msgstr "" -#: ../cache/locales.php:92 ../cache/locales.php:147 +#: [api]conf_updated [config]updated msgid "Configuration updated" msgstr "" -#: ../cache/locales.php:93 +#: [avatar]file msgid "File" msgstr "" -#: ../cache/locales.php:94 +#: [avatar]use_it msgid "Use it" msgstr "" -#: ../cache/locales.php:95 +#: [avatar]webcam msgid "Webcam" msgstr "" -#: ../cache/locales.php:96 +#: [avatar]cheese msgid "Cheese !" msgstr "" -#: ../cache/locales.php:97 +#: [avatar]snapshot msgid "Take a webcam snapshot" msgstr "" -#: ../cache/locales.php:98 +#: [avatar]updated msgid "Avatar Updated" msgstr "" -#: ../cache/locales.php:99 +#: [avatar]not_updated msgid "Avatar Not Updated" msgstr "" -#: ../cache/locales.php:100 ../cache/locales.php:415 -#, php-format +#: [blog]title [feed]title msgid "%s's feed" msgstr "" -#: ../cache/locales.php:101 +#: [blog]empty msgid "This user has not posted anything right now" msgstr "" -#: ../cache/locales.php:102 +#: [title]conferences msgid "Conferences" msgstr "" -#: ../cache/locales.php:103 ../cache/locales.php:193 ../cache/locales.php:217 -#: ../cache/locales.php:468 +#: [title]groups [group]empty_title [menu]groups [page]groups msgid "Groups" msgstr "" -#: ../cache/locales.php:104 +#: [chatroom]add msgid "Add a new Chat Room" msgstr "" -#: ../cache/locales.php:105 ../cache/locales.php:368 +#: [chatroom]id [chatrooms]id msgid "Chat Room ID" msgstr "" -#: ../cache/locales.php:106 ../cache/locales.php:116 ../cache/locales.php:156 -#: ../cache/locales.php:361 ../cache/locales.php:369 ../cache/locales.php:424 +#: [chatroom]name +#, fuzzy +msgctxt "[chatroom]name" msgid "Name" msgstr "Nome" -#: ../cache/locales.php:107 ../cache/locales.php:157 ../cache/locales.php:371 -#: ../cache/locales.php:425 +#: [chatroom]nickname [general]nickname [chatrooms]nickname msgid "Nickname" msgstr "Apelido" -#: ../cache/locales.php:108 +#: [chatroom]autojoin_label msgid "Do you want do join automaticaly this Chat Room ?" msgstr "" -#: ../cache/locales.php:109 ../cache/locales.php:372 +#: [chatroom]bad_id [chatrooms]bad_id msgid "Bad Chatroom ID" msgstr "" -#: ../cache/locales.php:110 ../cache/locales.php:373 +#: [chatroom]empty_name [chatrooms]empty_name msgid "Empty name" msgstr "" -#: ../cache/locales.php:111 ../cache/locales.php:380 +#: [bookmarks]updated msgid "Bookmarks updated" msgstr "" -#: ../cache/locales.php:112 -msgid "An error occured : " +#: [bookmarks]error +msgid "An error occured :" msgstr "" -#: ../cache/locales.php:113 +#: [bookmarks]configure msgid "Configure" msgstr "" -#: ../cache/locales.php:114 +#: [url]add msgid "Add a new URL" msgstr "" -#: ../cache/locales.php:115 +#: [url]url msgid "URL" msgstr "" -#: ../cache/locales.php:117 +#: [url]name +#, fuzzy +msgctxt "[url]name" +msgid "Name" +msgstr "Nome" + +#: [message]published msgid "Message Published" msgstr "" -#: ../cache/locales.php:118 ../cache/locales.php:138 +#: [message]encrypted msgid "Encrypted message" msgstr "" -#: ../cache/locales.php:119 +#: [message]composing [chats]composing msgid "Composing..." msgstr "Escrevendo..." -#: ../cache/locales.php:120 +#: [message]paused [chats]paused msgid "Paused..." msgstr "" -#: ../cache/locales.php:121 +#: [message]gone msgid "Contact gone" msgstr "" -#: ../cache/locales.php:122 -#, php-format +#: [chat]attention msgid "%s needs your attention" msgstr "" -#: ../cache/locales.php:123 +#: [chat]placeholder msgid "Your message here..." msgstr "" -#: ../cache/locales.php:124 +#: [chat]smileys msgid "Smileys" msgstr "" -#: ../cache/locales.php:125 ../cache/locales.php:139 +#: [chat]empty_title [button]chat msgid "Chat" msgstr "Chat" -#: ../cache/locales.php:126 +#: [chat]empty_text msgid "Discuss with your contacts" msgstr "" -#: ../cache/locales.php:127 -msgid "Members" -msgstr "" - -#: ../cache/locales.php:128 ../cache/locales.php:376 -msgid "Connected to the chatroom" -msgstr "" - -#: ../cache/locales.php:129 ../cache/locales.php:377 -msgid "Disconnected from the chatroom" -msgstr "" - -#: ../cache/locales.php:130 ../cache/locales.php:200 ../cache/locales.php:469 -msgid "Configuration" -msgstr "Configuraçāo" - -#: ../cache/locales.php:131 -msgid "Configuration saved" -msgstr "" - -#: ../cache/locales.php:132 -msgid "Subject" -msgstr "" - -#: ../cache/locales.php:133 -msgid "Subject changed" -msgstr "" - -#: ../cache/locales.php:134 -msgid "Open a new conversation by clicking on the plus button bellow" -msgstr "" - -#: ../cache/locales.php:135 -msgid "Chat with a contact" -msgstr "" - -#: ../cache/locales.php:136 +#: [chat]frequent [chats]frequent msgid "Frequent contacts" msgstr "" -#: ../cache/locales.php:137 +#: [chatroom]members +msgid "Members" +msgstr "" + +#: [chatroom]connected [chatrooms]connected +msgid "Connected to the chatroom" +msgstr "" + +#: [chatroom]disconnected [chatrooms]disconnected +msgid "Disconnected from the chatroom" +msgstr "" + +#: [chatroom]config [group]configuration [page]configuration +msgid "Configuration" +msgstr "Configuraçāo" + +#: [chatroom]config_saved +msgid "Configuration saved" +msgstr "" + +#: [chatroom]subject +msgid "Subject" +msgstr "" + +#: [chatroom]subject_changed +msgid "Subject changed" +msgstr "" + +#: [chats]empty_title +msgid "No chats yet..." +msgstr "" + +#: [chats]empty +msgid "Open a new conversation by clicking on the plus button bellow or visit the Contacts page." +msgstr "" + +#: [chats]add +msgid "Chat with a contact" +msgstr "" + +#: [chats]more msgid "Load more contacts" msgstr "" -#: ../cache/locales.php:140 -msgid "General" -msgstr "" - -#: ../cache/locales.php:141 -msgid "Language" -msgstr "Idioma" - -#: ../cache/locales.php:142 -msgid "Roster display" -msgstr "" - -#: ../cache/locales.php:143 -msgid "Show the offline contacts" -msgstr "" - -#: ../cache/locales.php:144 -msgid "Hide the offline contacts" -msgstr "" - -#: ../cache/locales.php:145 -msgid "Appearence" -msgstr "" - -#: ../cache/locales.php:146 -msgid "This configuration is shared wherever you are connected !" -msgstr "" - -#: ../cache/locales.php:148 -msgid "Notify on incoming message" -msgstr "" - -#: ../cache/locales.php:149 -msgid "Use desktop notifications" -msgstr "" - -#: ../cache/locales.php:150 +#: [title]data msgid "Data" msgstr "" -#: ../cache/locales.php:151 +#: [title]cache msgid "Cache" msgstr "" -#: ../cache/locales.php:152 ../cache/locales.php:218 ../cache/locales.php:466 +#: [title]contacts [menu]contacts [page]contacts msgid "Contacts" msgstr "" -#: ../cache/locales.php:153 ../cache/locales.php:480 +#: [title]posts [page]posts msgid "Posts" msgstr "" -#: ../cache/locales.php:154 +#: [title]messages msgid "Messages" msgstr "" -#: ../cache/locales.php:155 ../cache/locales.php:423 +#: [config]general +msgid "General" +msgstr "" + +#: [config]language +msgid "Language" +msgstr "Idioma" + +#: [config]roster +msgid "Roster display" +msgstr "" + +#: [config]roster_show +msgid "Show the offline contacts" +msgstr "" + +#: [config]roster_hide +msgid "Hide the offline contacts" +msgstr "" + +#: [config]appearence +msgid "Appearence" +msgstr "" + +#: [config]info +msgid "This configuration is shared wherever you are connected" +msgstr "" + +#: [notifications]message +msgid "Notify on incoming message" +msgstr "" + +#: [notifications]desktop +msgid "Use desktop notifications" +msgstr "" + +#: [general]legend [general]general_title msgid "General Informations" msgstr "Informações gerais" -#: ../cache/locales.php:158 ../cache/locales.php:427 +#: [general]name [public_groups]name [chatrooms]name +msgid "Name" +msgstr "Nome" + +#: [general]date_of_birth msgid "Date of Birth" msgstr "Data de Nascimento" -#: ../cache/locales.php:159 ../cache/locales.php:428 +#: [general]gender msgid "Gender" msgstr "Sexo" -#: ../cache/locales.php:160 ../cache/locales.php:429 +#: [general]marital msgid "Marital Status" msgstr "Estado Civil" -#: ../cache/locales.php:161 ../cache/locales.php:426 +#: [general]email msgid "Email" msgstr "" -#: ../cache/locales.php:162 ../cache/locales.php:430 +#: [general]website msgid "Website" msgstr "Página Web" -#: ../cache/locales.php:163 ../cache/locales.php:431 +#: [general]about msgid "About Me" msgstr "Sobre Mim" -#: ../cache/locales.php:164 +#: [general]accounts msgid "Other Accounts" msgstr "" -#: ../cache/locales.php:165 +#: [general]tune msgid "Is Listening" msgstr "" -#: ../cache/locales.php:166 ../cache/locales.php:432 +#: [position]legend [position]position_title msgid "Geographic Position" msgstr "" -#: ../cache/locales.php:167 ../cache/locales.php:433 +#: [position]locality msgid "Locality" msgstr "" -#: ../cache/locales.php:168 ../cache/locales.php:434 +#: [position]country msgid "Country" msgstr "" -#: ../cache/locales.php:169 +#: [mood]title msgid "Mood" msgstr "" -#: ../cache/locales.php:170 +#: [mood]im msgid "I'm " msgstr "" -#: ../cache/locales.php:171 +#: [listen]title msgid "Listening" msgstr "" -#: ../cache/locales.php:173 +#: [last]title msgid "Last seen" msgstr "" -#: ../cache/locales.php:174 +#: [client]title msgid "Client Informations" msgstr "Informações do Cliente" -#: ../cache/locales.php:175 +#: [explore]last_registered msgid "Last registered" msgstr "" -#: ../cache/locales.php:176 +#: [explore]explore msgid "Find some new friends" msgstr "" -#: ../cache/locales.php:177 ../cache/locales.php:533 +#: [edit]title [button]edit msgid "Edit" msgstr "" -#: ../cache/locales.php:178 +#: [edit]alias msgid "Alias" msgstr "Alias" -#: ../cache/locales.php:179 +#: [edit]group msgid "Group" msgstr "" -#: ../cache/locales.php:180 ../cache/locales.php:400 +#: [edit]updated [roster]updated msgid "Contact updated" msgstr "" -#: ../cache/locales.php:181 +#: [delete]title msgid "Are you sure?" msgstr "" -#: ../cache/locales.php:182 -msgid "" -"You are going to delete one of your contacts, please confirm your action" +#: [delete]text +msgid "You are going to delete one of your contacts, please confirm your action" msgstr "" -#: ../cache/locales.php:183 -#, php-format +#: [age]years msgid "%s years" msgstr "" -#: ../cache/locales.php:184 +#: [blog]last msgid "Last public post" msgstr "" -#: ../cache/locales.php:185 +#: [subscription]to +#, fuzzy +msgid "You can see this contact status" +msgstr "Remover este contato" + +#: [subscription]to_button +msgid "Share my status" +msgstr "" + +#: [subscription]to_text +msgid "But this contact cannot see yours" +msgstr "" + +#: [subscription]from +msgid "You are not subscribed to this contact" +msgstr "" + +#: [subscription]from_button +msgid "Ask to subscribe" +msgstr "" + +#: [subscription]from_text +msgid "But this contact can still see if you are online" +msgstr "" + +#: [subscription]nil +msgid "No subscriptions" +msgstr "" + +#: [subscription]nil_button +msgid "Invite" +msgstr "" + +#: [subscription]nil_text +msgid "This contact is in your contact list but there is no subscriptions between the two accounts" +msgstr "" + +#: [group]subscribe msgid "Subscribe" msgstr "" -#: ../cache/locales.php:186 +#: [group]subscribed msgid "Subscribed" msgstr "" -#: ../cache/locales.php:187 +#: [group]unsubscribe msgid "Unsubscribe" msgstr "" -#: ../cache/locales.php:188 +#: [group]unsubscribe_text msgid "You are going to unsubscribe from this Group" msgstr "" -#: ../cache/locales.php:189 +#: [group]unsubscribed msgid "Unsubscribed" msgstr "" -#: ../cache/locales.php:190 +#: [group]share_label msgid "Make your membership to this group public to your friends" msgstr "" -#: ../cache/locales.php:191 +#: [group]label_label msgid "Give a label for this group" msgstr "" -#: ../cache/locales.php:192 +#: [group]sure msgid "Are you sure ?" msgstr "" -#: ../cache/locales.php:194 +#: [group]empty_text msgid "Discover, follow and share" msgstr "" -#: ../cache/locales.php:195 +#: [group]empty msgid "Something bad happened to this group" msgstr "" -#: ../cache/locales.php:196 +#: [group]config_saved msgid "Group configuration saved" msgstr "" -#: ../cache/locales.php:197 +#: [group]delete_title msgid "Delete the group" msgstr "" -#: ../cache/locales.php:198 -msgid "" -"You are going to delete the following group. Please confirm your action." +#: [group]delete_text +msgid "You are going to delete the following group. Please confirm your action." msgstr "" -#: ../cache/locales.php:199 -msgid "" -"It seems that this group doesn't exists anymore. Do you want to remove it " -"from your subscriptions?" +#: [group]delete_clean_text +msgid "It seems that this group doesn't exists anymore. Do you want to remove it from your subscriptions?" msgstr "" -#: ../cache/locales.php:201 ../cache/locales.php:408 +#: [group]counter +msgid "%s groups on this server" +msgstr "" + +#: [group]subscriptions [statistics]subscriptions msgid "Subscriptions" msgstr "" -#: ../cache/locales.php:202 ../cache/locales.php:290 +#: [group]servers +msgid "Groups servers" +msgstr "" + +#: [group]search_server +msgid "Search for a new server" +msgstr "" + +#: [group]help_info1 +msgid "Groups are the perfect way to share posts about topics that you like with all the other Movim's users." +msgstr "" + +#: [group]help_info2 +msgid "Choose a server and a Group and subscribe to it using the %s button in the header. You can also create a new one using the %s button." +msgstr "" + +#: [group]help_info3 +msgid "Done? You can now publish a new post in the Group by using the %s button." +msgstr "" + +#: [group]help_info4 +msgid "You will find a list of all your subscribed Groups in My Subscriptions and receive instantly all the new incoming posts in the %sNews%s page." +msgstr "" + +#: [groups]empty_title msgid "Hello" msgstr "" -#: ../cache/locales.php:203 ../cache/locales.php:225 ../cache/locales.php:291 +#: [groups]contact_post [hello]contact_post [menu]contact_post msgid "Contact post" msgstr "" -#: ../cache/locales.php:204 -msgid "" -"You don't have any subscriptions yet, select a group server above to start " -"exploring." +#: [groups]empty_text1 +msgid "You don't have any subscriptions yet, select a group server above to start exploring." msgstr "" -#: ../cache/locales.php:205 +#: [groups]empty_text2 msgid "Subscribe to your favorite feeds by bookmarking them." msgstr "" -#: ../cache/locales.php:206 +#: [groups]subscriptions msgid "My Subscriptions" msgstr "" -#: ../cache/locales.php:207 +#: [groups]add msgid "Create a new Group" msgstr "" -#: ../cache/locales.php:208 +#: [groups]name msgid "Group name" msgstr "" -#: ../cache/locales.php:209 +#: [groups]name_example msgid "My Little Pony - Fan Club" msgstr "" -#: ../cache/locales.php:210 +#: [groups]created msgid "Group created successfully" msgstr "" -#: ../cache/locales.php:211 +#: [groups]deleted msgid "Group deleted successfully" msgstr "" -#: ../cache/locales.php:212 +#: [groups]name_error msgid "Please provide a valid group name (4 characters minimum)" msgstr "" -#: ../cache/locales.php:213 +#: [groups]no_creation msgid "You cannot create a new Group on this server" msgstr "" -#: ../cache/locales.php:214 -#, php-format +#: [groups]sub msgid "%s subscribers" msgstr "" -#: ../cache/locales.php:215 -#, php-format +#: [groups]num msgid "%s posts" msgstr "" -#: ../cache/locales.php:216 +#: [groups]disco_error +#, fuzzy +msgid "This server doesn't exists" +msgstr "Este servidor hospeda %s contas" + +#: [menu]all msgid "All" msgstr "Tudo" -#: ../cache/locales.php:219 +#: [menu]refresh msgid "Refresh all the streams" msgstr "" -#: ../cache/locales.php:220 ../cache/locales.php:402 -msgid "Search" +#: [roster]search +msgid "Search in your contacts" msgstr "" -#: ../cache/locales.php:221 +#: [hello]active_contacts +#, fuzzy +msgid "Active contacts" +msgstr "Ações" + +#: [hello]chat msgid "Go on the Chat page" msgstr "" -#: ../cache/locales.php:222 -msgid "Read all theses articles on the News page" -msgstr "" - -#: ../cache/locales.php:223 -msgid "Visit your public blog" -msgstr "" - -#: ../cache/locales.php:224 -msgid "See your public posts and share them with all your contacts" -msgstr "" - -#: ../cache/locales.php:226 -msgid "Universal share button" -msgstr "" - -#: ../cache/locales.php:227 -msgid "" -"Bookmark or drag and drop the following button in your toolbar and use it on " -"all the pages you want to share on Movim" -msgstr "" - -#: ../cache/locales.php:228 -msgid "Share on Movim" -msgstr "" - -#: ../cache/locales.php:229 -msgid "Frequently Asked Questions" -msgstr "" - -#: ../cache/locales.php:230 -msgid "What do the little banners refer to ?" -msgstr "O que os banners pequenos se refere ?" - -#: ../cache/locales.php:231 -msgid "" -"Thanks to these five little banners, you can quickly identitfy the level of " -"confdentiality applied to the information you provide." -msgstr "" -"Graças a estes cinco banners pequenos, você pode rapidamente identitfy o " -"nível de confdentiality aplicada às informações que você fornecer." - -#: ../cache/locales.php:232 -msgid "White, only you can see the information" -msgstr "Branco, somente você pode ver a informação" - -#: ../cache/locales.php:233 -msgid "Green, you have chosen some contacts who can see your information" -msgstr "" -"Verde, você deve ter escolhido alguns contatos que podem ver suas informações" - -#: ../cache/locales.php:234 -msgid "Orange, all your contact list can see your information" -msgstr "Laranja, todos os seus contatos podem ver suas informações" - -#: ../cache/locales.php:235 -msgid "Red, everybody in the XMPP network can see your information" -msgstr "Vermelho, todos na rede XMPP podem ver suas informações" - -#: ../cache/locales.php:236 -msgid "Black, the whole Internet can see your information" -msgstr "Preto, a internet inteira pode ver suas informações" - -#: ../cache/locales.php:237 -msgid "Looking for some documentation ?" -msgstr "" - -#: ../cache/locales.php:238 -msgid "Read the Wiki" -msgstr "" - -#: ../cache/locales.php:239 -msgid "Talk with us by email ?" -msgstr "" - -#: ../cache/locales.php:240 -msgid "Join the Mailing List" -msgstr "" - -#: ../cache/locales.php:241 -msgid "Chat with the team ?" -msgstr "" - -#: ../cache/locales.php:242 -msgid "Join the Chatroom" -msgstr "" - -#: ../cache/locales.php:243 -msgid "Location node created" -msgstr "" - -#: ../cache/locales.php:244 -msgid "Bookmark node created" -msgstr "" - -#: ../cache/locales.php:245 -msgid "Profile node created" -msgstr "" - -#: ../cache/locales.php:246 -msgid "Avatar node created" -msgstr "" - -#: ../cache/locales.php:247 -msgid "Subscriptions node created" -msgstr "" - -#: ../cache/locales.php:248 -msgid "Microblog node created" -msgstr "" - -#: ../cache/locales.php:249 -msgid "Location" -msgstr "" - -#: ../cache/locales.php:250 -msgid "Wrong position" -msgstr "" - -#: ../cache/locales.php:251 -msgid "Location updated" -msgstr "" - -#: ../cache/locales.php:252 -msgid "Update my position" -msgstr "" - -#: ../cache/locales.php:253 -msgid "Wrong username" -msgstr "Nome de usuário errado" - -#: ../cache/locales.php:254 -msgid "Invalid JID" -msgstr "JID Inválido" - -#: ../cache/locales.php:255 -msgid "Empty Challenge from the server" -msgstr "" - -#: ../cache/locales.php:256 -msgid "XMPP Domain error, your account is not a correct Jabber ID" -msgstr "Erro de domínio XMPP, sua conta não é um Jabber ID correta" - -#: ../cache/locales.php:257 -msgid "Some data are missing !" -msgstr "Alguns dados estão perdidos!" - -#: ../cache/locales.php:258 -msgid "Wrong password" -msgstr "Senha incorreta" - -#: ../cache/locales.php:259 -msgid "Internal server error" -msgstr "Erro interno de servidor" - -#: ../cache/locales.php:260 -msgid "Session error" -msgstr "Erro de sessão" - -#: ../cache/locales.php:261 -msgid "Account successfully created" -msgstr "Conta criada com sucesso" - -#: ../cache/locales.php:262 ../cache/locales.php:271 -msgid "Your XMPP server is unauthorized" -msgstr "" - -#: ../cache/locales.php:263 -msgid "The server takes too much time to respond" -msgstr "" - -#: ../cache/locales.php:264 -msgid "Your web browser is too old to use with Movim." -msgstr "seu navegador é muito antigo para usar com o Movim" - -#: ../cache/locales.php:265 -msgid "" -"Movim cannot talk with the server, please try again later (Websocket " -"connection error)" -msgstr "" - -#: ../cache/locales.php:266 -msgid "Impossible login" -msgstr "" - -#: ../cache/locales.php:267 -msgid "Oops!" -msgstr "" - -#: ../cache/locales.php:268 ../cache/locales.php:449 ../cache/locales.php:455 -msgid "Unknown error" -msgstr "Erro desconhecido" - -#: ../cache/locales.php:269 -msgid "Invalid username format" -msgstr "" - -#: ../cache/locales.php:270 -msgid "Invalid password format" -msgstr "" - -#: ../cache/locales.php:272 -msgid "A Movim session is already open on an other device" -msgstr "" - -#: ../cache/locales.php:273 -msgid "Movim failed to authenticate. You entered wrong data" -msgstr "Falha na autenticação do Movim. Dado errados foram inseridos." - -#: ../cache/locales.php:274 -msgid "Authentication mechanism not supported by Movim" -msgstr "" - -#: ../cache/locales.php:275 -msgid "The XMPP authentification failed" -msgstr "A autenticação XMPP falhou" - -#: ../cache/locales.php:276 -#, php-format -msgid "" -"You can login with Facebook (chat only) using %syour.id@chat.facebook.com%s " -"and your password" -msgstr "" - -#: ../cache/locales.php:277 -#, php-format -msgid "%sGmail accounts are also compatible%s but are not fully supported" -msgstr "" - -#: ../cache/locales.php:278 -msgid "You can login using your favorite Jabber account" -msgstr "" - -#: ../cache/locales.php:279 -msgid "or with our demonstration account" -msgstr "" - -#: ../cache/locales.php:280 ../cache/locales.php:435 -msgid "Accounts" -msgstr "" - -#: ../cache/locales.php:281 -msgid "My address" -msgstr "Meu endereço" - -#: ../cache/locales.php:283 -msgid "Create one !" -msgstr "" - -#: ../cache/locales.php:284 -msgid "No account yet ?" -msgstr "" - -#: ../cache/locales.php:285 -msgid "Another account" -msgstr "" - -#: ../cache/locales.php:286 -msgid "You can login with accounts from theses servers" -msgstr "" - -#: ../cache/locales.php:287 -msgid "Connected" -msgstr "" - -#: ../cache/locales.php:288 -msgid "Population" -msgstr "" - -#: ../cache/locales.php:289 -msgid "Bad nickname (between 4 and 40 characters)" -msgstr "" - -#: ../cache/locales.php:292 -msgid "" -"Welcome on your news feed, here you will see all the posts published in the " -"groups you have subscribed." -msgstr "" - -#: ../cache/locales.php:293 -msgid "Refreshing all the streams" -msgstr "" - -#: ../cache/locales.php:294 -msgid "This post is public" -msgstr "" - -#: ../cache/locales.php:295 -msgid "Manage your members" -msgstr "" - -#: ../cache/locales.php:296 -msgid "Get the members" -msgstr "" - -#: ../cache/locales.php:297 -msgid "Affiliations saved" -msgstr "" - -#: ../cache/locales.php:298 -msgid "Manage your subscriptions" -msgstr "" - -#: ../cache/locales.php:299 -msgid "Manage the subscriptions" -msgstr "" - -#: ../cache/locales.php:300 -msgid "Get the subscriptions" -msgstr "" - -#: ../cache/locales.php:301 -msgid "Subscriptions saved" -msgstr "" - -#: ../cache/locales.php:302 -msgid "Pending Invitations" -msgstr "" - -#: ../cache/locales.php:303 -#, php-format -msgid "%s wants to talk with you" -msgstr "" - -#: ../cache/locales.php:304 -msgid "Manage" -msgstr "" - -#: ../cache/locales.php:305 ../cache/locales.php:338 -msgid "News Feed" -msgstr "" - -#: ../cache/locales.php:306 ../cache/locales.php:339 -msgid "Discover and register to the groups you are interested in" -msgstr "" - -#: ../cache/locales.php:307 ../cache/locales.php:340 ../cache/locales.php:482 -msgid "Preview" -msgstr "" - -#: ../cache/locales.php:308 ../cache/locales.php:341 ../cache/locales.php:478 -msgid "Help" -msgstr "Ajuda" - -#: ../cache/locales.php:309 ../cache/locales.php:342 -msgid "More help" -msgstr "" - -#: ../cache/locales.php:310 ../cache/locales.php:343 -msgid "Markdown syntax manual" -msgstr "" - -#: ../cache/locales.php:311 ../cache/locales.php:344 ../cache/locales.php:681 -msgid "Title" -msgstr "" - -#: ../cache/locales.php:312 ../cache/locales.php:345 -msgid "Content" -msgstr "" - -#: ../cache/locales.php:313 ../cache/locales.php:346 -msgid "Link" -msgstr "" - -#: ../cache/locales.php:314 ../cache/locales.php:347 -msgid "Tags" -msgstr "" - -#: ../cache/locales.php:315 ../cache/locales.php:348 -msgid "Please enter a valid url" -msgstr "" - -#: ../cache/locales.php:316 ../cache/locales.php:349 -msgid "No content to preview" -msgstr "" - -#: ../cache/locales.php:317 ../cache/locales.php:350 ../cache/locales.php:687 -msgid "No content" -msgstr "" - -#: ../cache/locales.php:318 ../cache/locales.php:351 -msgid "Post published" -msgstr "" - -#: ../cache/locales.php:319 ../cache/locales.php:352 -msgid "Post deleted" -msgstr "" - -#: ../cache/locales.php:320 ../cache/locales.php:353 -msgid "This picture will be added to your gallery" -msgstr "" - -#: ../cache/locales.php:321 ../cache/locales.php:354 -msgid "What's Hot" -msgstr "" - -#: ../cache/locales.php:322 ../cache/locales.php:355 -msgid "New post" -msgstr "" - -#: ../cache/locales.php:323 ../cache/locales.php:357 -msgid "" -"You can also use services like Imgur or Flickr to host your picture and " -"paste the link here." -msgstr "" - -#: ../cache/locales.php:324 -#, php-format -msgid "This is a re-post from %s" -msgstr "" - -#: ../cache/locales.php:325 -#, php-format -msgid "See %s profile" -msgstr "" - -#: ../cache/locales.php:326 -msgid "Publish this post on your public feed?" -msgstr "" - -#: ../cache/locales.php:327 -msgid "Post published on your blog" -msgstr "" - -#: ../cache/locales.php:328 -msgid "Post removed from your blog" -msgstr "" - -#: ../cache/locales.php:329 ../cache/locales.php:701 -msgid "Delete this post" -msgstr "" - -#: ../cache/locales.php:330 -msgid "You are going to delete this post, please confirm your action" -msgstr "" - -#: ../cache/locales.php:331 -msgid "Comments disabled" -msgstr "" - -#: ../cache/locales.php:332 -msgid "Comment published" -msgstr "" - -#: ../cache/locales.php:333 -msgid "Disconnect" -msgstr "" - -#: ../cache/locales.php:334 -msgid "Your status here !" -msgstr "" - -#: ../cache/locales.php:335 -msgid "Status updated" -msgstr "" - -#: ../cache/locales.php:336 -msgid "Status" -msgstr "" - -#: ../cache/locales.php:337 -msgid "Presence" -msgstr "" - -#: ../cache/locales.php:356 -msgid "Publish" -msgstr "" - -#: ../cache/locales.php:358 -msgid "You cannot publish a post on this Group" -msgstr "" - -#: ../cache/locales.php:359 -msgid "" -"Some fields have been filled in. Do you still want to go back and loose " -"their content?" -msgstr "" - -#: ../cache/locales.php:360 -msgid "Shared" -msgstr "" - -#: ../cache/locales.php:362 -#, php-format -msgid "%s has been added to your public groups" -msgstr "" - -#: ../cache/locales.php:363 -#, php-format -msgid "%s has been removed from your public groups" -msgstr "" - -#: ../cache/locales.php:364 -msgid "Add a chatroom" -msgstr "" - -#: ../cache/locales.php:365 -msgid "You don't have any chatroom yet." -msgstr "" - -#: ../cache/locales.php:366 -msgid "Add one by clicking on the add button in the header." -msgstr "" - -#: ../cache/locales.php:367 -msgid "Chatrooms" -msgstr "" - -#: ../cache/locales.php:370 -msgid "My Favorite Room" -msgstr "" - -#: ../cache/locales.php:374 -msgid "Remove a chatroom" -msgstr "" - -#: ../cache/locales.php:375 -msgid "" -"You are going to remove the following chatroom. Please confirm your action." -msgstr "" - -#: ../cache/locales.php:378 -msgid "Users in the room" -msgstr "" - -#: ../cache/locales.php:379 -msgid "Please enter a correct nickname (6 to 40 characters)" -msgstr "" - -#: ../cache/locales.php:381 -msgid "Public chatroom" -msgstr "" - -#: ../cache/locales.php:382 -msgid "Please provide a room address" -msgstr "" - -#: ../cache/locales.php:383 -msgid "You are currently logued as an anonymous user." -msgstr "" - -#: ../cache/locales.php:384 -msgid "" -"You can join using your own account or create one on the login page by " -"loging out using the cross in the top-right corner." -msgstr "" - -#: ../cache/locales.php:385 -#, php-format -msgid "Login on %s" -msgstr "" - -#: ../cache/locales.php:386 -msgid "Your nickname" -msgstr "" - -#: ../cache/locales.php:387 -msgid "Ungrouped" -msgstr "Sem Grupo" - -#: ../cache/locales.php:388 -msgid "Show disconnected contacts" -msgstr "" - -#: ../cache/locales.php:389 -msgid "Hide disconnected contacts" -msgstr "" - -#: ../cache/locales.php:390 -#, php-format -msgid "Show group %s" -msgstr "" - -#: ../cache/locales.php:391 -#, php-format -msgid "Hide group %s" -msgstr "" - -#: ../cache/locales.php:392 -msgid "Please enter a valid Jabber ID" -msgstr "" - -#: ../cache/locales.php:393 -msgid "" -"No contacts ? You can add one using the + button bellow or going to the " -"Explore page" -msgstr "" - -#: ../cache/locales.php:394 -msgid "Show/Hide" -msgstr "" - -#: ../cache/locales.php:395 -msgid "Enter the Jabber ID of your contact." -msgstr "" - -#: ../cache/locales.php:396 -msgid "Press enter to validate." -msgstr "" - -#: ../cache/locales.php:397 -msgid "JID" -msgstr "" - -#: ../cache/locales.php:398 -msgid "Results" -msgstr "" - -#: ../cache/locales.php:399 -msgid "Contact added" -msgstr "" - -#: ../cache/locales.php:401 -msgid "Contact deleted" -msgstr "" - -#: ../cache/locales.php:403 -msgid "This is not a valid url" -msgstr "" - -#: ../cache/locales.php:404 -msgid "Sharing the URL" -msgstr "" - -#: ../cache/locales.php:405 -msgid "Statistics" -msgstr "" - -#: ../cache/locales.php:406 -msgid "Since" -msgstr "" - -#: ../cache/locales.php:407 -msgid "Sessions" -msgstr "" - -#: ../cache/locales.php:409 -msgid "Monthly Subscriptions" -msgstr "" - -#: ../cache/locales.php:410 -msgid "Monthly Subscriptions Cumulated" -msgstr "" - -#: ../cache/locales.php:412 -msgid "" -"Movim is a decentralized social network, before creating a new account you " -"need to choose a server to register." -msgstr "" - -#: ../cache/locales.php:413 -msgid "Your server here ?" -msgstr "" - -#: ../cache/locales.php:414 -msgid "Contact us to add yours to the officially supported servers list" -msgstr "" - -#: ../cache/locales.php:416 -msgid "No public feed for this contact" -msgstr "" - -#: ../cache/locales.php:417 -msgid "No contact specified" -msgstr "" - -#: ../cache/locales.php:418 ../cache/locales.php:473 -msgid "Profile" -msgstr "Perfil" - -#: ../cache/locales.php:419 -msgid "Profile Updated" -msgstr "" - -#: ../cache/locales.php:420 -msgid "Profile Not Updated" -msgstr "" - -#: ../cache/locales.php:421 -msgid "Your profile is now public" -msgstr "" - -#: ../cache/locales.php:422 -msgid "Your profile is now restricted" -msgstr "" - -#: ../cache/locales.php:436 -msgid "Twitter" -msgstr "" - -#: ../cache/locales.php:437 -msgid "Skype" -msgstr "" - -#: ../cache/locales.php:438 -msgid "Yahoo" -msgstr "" - -#: ../cache/locales.php:439 -msgid "Privacy Level" -msgstr "" - -#: ../cache/locales.php:440 -msgid "Is this profile public ?" -msgstr "" - -#: ../cache/locales.php:441 -msgid "" -"Please pay attention ! By making your profile public, all the information " -"listed above will be available for all the Movim users and on the whole " -"Internet." -msgstr "" - -#: ../cache/locales.php:442 -msgid "Call" -msgstr "" - -#: ../cache/locales.php:443 -msgid "Hang up" -msgstr "" - -#: ../cache/locales.php:444 -msgid "Connection" -msgstr "" - -#: ../cache/locales.php:445 ../cache/locales.php:451 -msgid "Hung up" -msgstr "" - -#: ../cache/locales.php:446 ../cache/locales.php:452 -msgid "Your contact is busy" -msgstr "" - -#: ../cache/locales.php:447 ../cache/locales.php:453 -msgid "Declined" -msgstr "" - -#: ../cache/locales.php:448 ../cache/locales.php:454 -msgid "Remote application incompatible" -msgstr "" - -#: ../cache/locales.php:450 ../cache/locales.php:456 -msgid "Is calling you" -msgstr "" - -#: ../cache/locales.php:457 -msgid "You don't have javascript enabled. Good luck with that." -msgstr "" - -#: ../cache/locales.php:458 -msgid "" -"Movim is a kickass distributed social networking platform that protect your " -"privacy an comes with a set of awesome features." -msgstr "" - -#: ../cache/locales.php:459 -msgid "Administration" -msgstr "" - -#: ../cache/locales.php:460 -msgid "Home" -msgstr "Início" - -#: ../cache/locales.php:461 -msgid "Discover" -msgstr "" - -#: ../cache/locales.php:462 -msgid "Explore" -msgstr "" - -#: ../cache/locales.php:463 -msgid "Account Creation" -msgstr "Criar uma Conta" - -#: ../cache/locales.php:464 +#: [hello]news [page]news msgid "News" msgstr "" -#: ../cache/locales.php:465 -msgid "Avatar" -msgstr "Avatar" - -#: ../cache/locales.php:467 -msgid "Chats" +#: [hello]news_page +msgid "Read all theses articles on the News page" msgstr "" -#: ../cache/locales.php:470 -msgid "Server" +#: [hello]blog_title +msgid "Visit your public blog" msgstr "" -#: ../cache/locales.php:471 -msgid "Public Groups" +#: [hello]blog_text +msgid "See your public posts and share them with all your contacts" msgstr "" -#: ../cache/locales.php:472 -msgid "Viewer" +#: [hello]share_title +msgid "Universal share button" msgstr "" -#: ../cache/locales.php:474 -msgid "Media" +#: [hello]share_text +msgid "Bookmark or drag and drop the following button in your toolbar and use it on all the pages you want to share on Movim" msgstr "" -#: ../cache/locales.php:475 -msgid "Blog" +#: [hello]share_button +msgid "Share on Movim" msgstr "" -#: ../cache/locales.php:476 -msgid "About" +#: [help]faq +msgid "Frequently Asked Questions" msgstr "" -#: ../cache/locales.php:477 -msgid "Login" +#: [banner]title +msgid "What do the little banners refer to ?" +msgstr "O que os banners pequenos se refere ?" + +#: [banner]info1 +msgid "Thanks to these five little banners, you can quickly identitfy the level of confdentiality applied to the information you provide." +msgstr "Graças a estes cinco banners pequenos, você pode rapidamente identitfy o nível de confdentiality aplicada às informações que você fornecer." + +#: [banner]white +msgid "White, only you can see the information" +msgstr "Branco, somente você pode ver a informação" + +#: [banner]green +msgid "Green, you have chosen some contacts who can see your information" +msgstr "Verde, você deve ter escolhido alguns contatos que podem ver suas informações" + +#: [banner]orange +msgid "Orange, all your contact list can see your information" +msgstr "Laranja, todos os seus contatos podem ver suas informações" + +#: [banner]red +msgid "Red, everybody in the XMPP network can see your information" +msgstr "Vermelho, todos na rede XMPP podem ver suas informações" + +#: [banner]black +msgid "Black, the whole Internet can see your information" +msgstr "Preto, a internet inteira pode ver suas informações" + +#: [wiki]question +msgid "Looking for some documentation ?" msgstr "" -#: ../cache/locales.php:479 -msgid "Feed" -msgstr "Retorno do contato" - -#: ../cache/locales.php:481 -msgid "Gallery" +#: [wiki]button +msgid "Read the Wiki" msgstr "" -#: ../cache/locales.php:483 -msgid "Visio-conference" +#: [ml]question +msgid "Talk with us by email ?" msgstr "" -#: ../cache/locales.php:484 -msgid "Pods" +#: [ml]button +msgid "Join the Mailing List" msgstr "" -#: ../cache/locales.php:485 -msgid "Share" +#: [chatroom]question +msgid "Chat with the team ?" msgstr "" -#: ../cache/locales.php:486 -msgid "Room" +#: [chatroom]button +msgid "Join the Chatroom" msgstr "" -#: ../cache/locales.php:487 -#, php-format -msgid "Error: %s" -msgstr "Erro: %s" - -#: ../cache/locales.php:488 -#, php-format -msgid "Cannot load file '%s'" -msgstr "Não carregou arquivo '%s'" - -#: ../cache/locales.php:489 -#, php-format -msgid "Route error, please set all the parameters for the page %s" +#: [init]location +msgid "Location node created" msgstr "" -#: ../cache/locales.php:490 -#, php-format -msgid "Requested widget '%s' doesn't exist." +#: [init]bookmark +msgid "Bookmark node created" msgstr "" -#: ../cache/locales.php:491 -#, php-format -msgid "Requested event '%s' not registered." +#: [init]vcard4 +msgid "Profile node created" msgstr "" -#: ../cache/locales.php:492 -msgid "Whoops!" +#: [init]avatar +msgid "Avatar node created" msgstr "" -#: ../cache/locales.php:493 -msgid "It seem that you don't have any pictures here?" +#: [init]subscriptions +msgid "Subscriptions node created" msgstr "" -#: ../cache/locales.php:494 -msgid "You can try to upload a couple by going to the Media page" +#: [init]microblog +msgid "Microblog node created" msgstr "" -#: ../cache/locales.php:495 -#, php-format -msgid "%s - About" +#: [location]title +msgid "Location" msgstr "" -#: ../cache/locales.php:496 -#, php-format -msgid "%s - Account" +#: [location]wrong_postition +msgid "Wrong position" msgstr "" -#: ../cache/locales.php:497 -#, php-format -msgid "%s - Administration Panel" +#: [location]updated +msgid "Location updated" msgstr "" -#: ../cache/locales.php:498 -#, php-format -msgid "%s - Blog" +#: [location]update +msgid "Update my position" msgstr "" -#: ../cache/locales.php:499 -#, php-format -msgid "%s - Configuration" -msgstr "%s - Configuraçāo" - -#: ../cache/locales.php:500 -#, php-format -msgid "%s - Discover" +#: [login_anonymous]bad_username +msgid "Bad nickname (between 4 and 40 characters)" msgstr "" -#: ../cache/locales.php:501 -#, php-format -msgid "%s - Explore" +#: [error]username +msgid "Wrong username" +msgstr "Nome de usuário errado" + +#: [error]jid +msgid "Invalid JID" +msgstr "JID Inválido" + +#: [error]empty_challenge +msgid "Empty Challenge from the server" msgstr "" -#: ../cache/locales.php:502 -#, php-format -msgid "%s - Help Page" -msgstr "%s - Página de ajuda" +#: [error]dns +msgid "XMPP Domain error, your account is not a correct Jabber ID" +msgstr "Erro de domínio XMPP, sua conta não é um Jabber ID correta" -#: ../cache/locales.php:503 -#, php-format -msgid "%s - Login to Movim" -msgstr "%s - Entrar no Movim" +#: [error]data_missings +msgid "Some data are missing !" +msgstr "Alguns dados estão perdidos!" -#: ../cache/locales.php:504 -#, php-format -msgid "%s - Welcome to Movim" -msgstr "%s - Bem vindo ao Movim" +#: [error]wrong_password +msgid "Wrong password" +msgstr "Senha incorreta" -#: ../cache/locales.php:505 -#, php-format -msgid "%s - Media" +#: [error]internal +msgid "Internal server error" +msgstr "Erro interno de servidor" + +#: [error]session +msgid "Session error" +msgstr "Erro de sessão" + +#: [error]account_created +msgid "Account successfully created" +msgstr "Conta criada com sucesso" + +#: [error]xmpp_unauthorized +msgctxt "[error]xmpp_unauthorized" +msgid "Your XMPP server is unauthorized" msgstr "" -#: ../cache/locales.php:506 -#, php-format -msgid "%s - News" +#: [error]mec_error +msgid "The server takes too much time to respond" msgstr "" -#: ../cache/locales.php:507 -#, php-format -msgid "%s - Group Configuration" +#: [error]too_old +msgid "Your web browser is too old to use with Movim." +msgstr "seu navegador é muito antigo para usar com o Movim" + +#: [error]websocket +msgid "Movim cannot talk with the server, please try again later (Websocket connection error)" msgstr "" -#: ../cache/locales.php:508 -#, php-format -msgid "%s - Group" +#: [error]impossible +msgid "Impossible login" msgstr "" -#: ../cache/locales.php:509 -#, php-format -msgid "%s - 404" +#: [error]title +msgid "Oops!" msgstr "" -#: ../cache/locales.php:510 -#, php-format -msgid "%s - Profile" -msgstr "%s - Perfil" +#: [error]default [visio]unknown_error +msgid "Unknown error" +msgstr "Erro desconhecido" -#: ../cache/locales.php:511 -#, php-format -msgid "%s - Server" +#: [error]login_format +msgid "Invalid username format" msgstr "" -#: ../cache/locales.php:512 -msgid "Validate" +#: [error]password_format +msgid "Invalid password format" msgstr "" -#: ../cache/locales.php:513 -msgid "Refresh" +#: [error]unauthorized +msgctxt "[error]unauthorized" +msgid "Your XMPP server is unauthorized" msgstr "" -#: ../cache/locales.php:514 -msgid "Add" -msgstr "Adicionar" - -#: ../cache/locales.php:515 -msgid "Delete" +#: [error]conflict +msgid "A Movim session is already open on an other device" msgstr "" -#: ../cache/locales.php:516 -msgid "Remove" +#: [error]wrong_account +msgid "Movim failed to authenticate. You entered wrong data" +msgstr "Falha na autenticação do Movim. Dado errados foram inseridos." + +#: [error]mechanism +msgid "Authentication mechanism not supported by Movim" msgstr "" -#: ../cache/locales.php:517 -msgid "Cancel" -msgstr "Cancelar" +#: [error]fail_auth +msgid "The XMPP authentification failed" +msgstr "A autenticação XMPP falhou" -#: ../cache/locales.php:518 -msgid "Close" +#: [account]title [accounts]accounts_title +msgid "Accounts" msgstr "" -#: ../cache/locales.php:519 -msgid "Update" +#: [form]username +msgid "My address" +msgstr "Meu endereço" + +#: [form]create_one +msgid "Create one !" msgstr "" -#: ../cache/locales.php:520 -msgid "Updating" +#: [form]another_account +msgid "Another account" msgstr "" -#: ../cache/locales.php:521 +#: [form]no_account +msgid "No account yet ?" +msgstr "" + +#: [form]whitelist.info +msgid "You can login with accounts from theses servers" +msgstr "" + +#: [form]connected +msgid "Connected" +msgstr "" + +#: [form]population +msgid "Population" +msgstr "" + +#: [menu]empty_title +msgid "No news yet..." +msgstr "" + +#: [menu]empty +msgid "Welcome on your news feed, here you will see all the posts published by your contacts and in the groups you have subscribed." +msgstr "" + +#: [menu]refresh +msgid "Refreshing all the streams" +msgstr "" + +#: [menu]public +msgid "This post is public" +msgstr "" + +#: [affiliations]title +msgid "Manage your members" +msgstr "" + +#: [affiliations]get +msgid "Get the members" +msgstr "" + +#: [affiliations]saved +msgid "Affiliations saved" +msgstr "" + +#: [subscriptions]title +msgid "Manage your subscriptions" +msgstr "" + +#: [subscriptions]info +msgid "Manage the subscriptions" +msgstr "" + +#: [subscriptions]get +msgid "Get the subscriptions" +msgstr "" + +#: [subscriptions]saved +msgid "Subscriptions saved" +msgstr "" + +#: [notifs]title +msgid "Pending Invitations" +msgstr "" + +#: [notifs]wants_to_talk +msgid "%s wants to talk with you" +msgstr "" + +#: [notifs]manage +msgid "Manage" +msgstr "" + +#: [post]news_feed +msgid "News Feed" +msgstr "" + +#: [post]placeholder +msgid "Discover and register to the groups you are interested in" +msgstr "" + +#: [post]preview [page]preview +msgid "Preview" +msgstr "" + +#: [post]help [page]help +msgid "Help" +msgstr "Ajuda" + +#: [post]help_more +msgid "More help" +msgstr "" + +#: [post]help_manual +msgid "Markdown syntax manual" +msgstr "" + +#: [post]title +msgid "Title" +msgstr "" + +#: [post]content +msgid "Content" +msgstr "" + +#: [post]link +msgid "Link" +msgstr "" + +#: [post]tags +msgid "Tags" +msgstr "" + +#: [post]valid_url [publish]valid_url +msgid "Please enter a valid url" +msgstr "" + +#: [post]no_content_preview [publish]no_content_preview +msgid "No content to preview" +msgstr "" + +#: [post]no_content [publish]no_content [post]empty +msgid "No content" +msgstr "" + +#: [post]published +msgid "Post published" +msgstr "" + +#: [post]deleted +msgid "Post deleted" +msgstr "" + +#: [post]gallery +msgid "This picture will be added to your gallery" +msgstr "" + +#: [post]hot +msgid "What's Hot" +msgstr "" + +#: [post]hot_text +msgid "Posts recently published in Groups that you are not subscribed (yet)" +msgstr "" + +#: [post]new [publish]new +msgid "New post" +msgstr "" + +#: [post]embed_tip +msgid "You can also use services like Imgur or Flickr to host your picture and paste the link here." +msgstr "" + +#: [post]repost +msgid "This is a re-post from %s" +msgstr "" + +#: [post]repost_profile +msgid "See %s profile" +msgstr "" + +#: [post]public +msgid "Publish this post publicly?" +msgstr "" + +#: [post]blog_add +msgid "Post published on your blog" +msgstr "" + +#: [post]blog_remove +msgid "Post removed from your blog" +msgstr "" + +#: [post]delete_title [post]delete +msgid "Delete this post" +msgstr "" + +#: [post]delete_text +msgid "You are going to delete this post, please confirm your action" +msgstr "" + +#: [post]comments_disabled +msgid "Comments disabled" +msgstr "" + +#: [post]comment_published +msgid "Comment published" +msgstr "" + +#: [status]disconnect +msgid "Disconnect" +msgstr "" + +#: [status]here +msgid "Your status here !" +msgstr "" + +#: [status]updated +msgid "Status updated" +msgstr "" + +#: [status]status +msgid "Status" +msgstr "" + +#: [status]presence +msgid "Presence" +msgstr "" + +#: [status]online +msgid "Online with Movim" +msgstr "" + +#: [publish]title +msgid "Publish" +msgstr "" + +#: [publish]attach +msgid "Add a file or a picture to your post" +msgstr "" + +#: [publish]no_publication +msgid "You cannot publish a post on this Group" +msgstr "" + +#: [publish]form_filled +msgid "Some fields have been filled in. Do you still want to go back and loose their content?" +msgstr "" + +#: [public_groups]shared +msgid "Shared" +msgstr "" + +#: [public_groups]added +msgid "%s has been added to your public groups" +msgstr "" + +#: [rooms]add +msgid "Add a chatroom" +msgstr "" + +#: [rooms]empty_text1 +msgid "You don't have any chatroom yet." +msgstr "" + +#: [rooms]empty_text2 +msgid "Add one by clicking on the add button in the header." +msgstr "" + +#: [chatrooms]title +msgid "Chatrooms" +msgstr "" + +#: [chatrooms]name_placeholder +msgid "My Favorite Room" +msgstr "" + +#: [chatrooms]users +msgid "Users in the room" +msgstr "" + +#: [chatrooms]bad_nickname +msgid "Please enter a correct nickname (2 to 40 characters)" +msgstr "" + +#: [room]anonymous_title +msgid "Public chatroom" +msgstr "" + +#: [room]no_room +msgid "Please provide a room address" +msgstr "" + +#: [room]anonymous_text1 +msgid "You are currently logued as an anonymous user." +msgstr "" + +#: [room]anonymous_text2 +msgid "You can join using your own account or create one on the login page by loging out using the cross in the top-right corner." +msgstr "" + +#: [room]anonymous_login +msgid "Login on %s" +msgstr "" + +#: [room]nick +msgid "Your nickname" +msgstr "" + +#: [roster]ungrouped +msgid "Ungrouped" +msgstr "Sem Grupo" + +#: [roster]show_disconnected +msgid "Show disconnected contacts" +msgstr "" + +#: [roster]hide_disconnected +msgid "Hide disconnected contacts" +msgstr "" + +#: [roster]show_group +msgid "Show group %s" +msgstr "" + +#: [roster]hide_group +msgid "Hide group %s" +msgstr "" + +#: [roster]jid_error +msgid "Please enter a valid Jabber ID" +msgstr "" + +#: [roster]no_contacts_title +#, fuzzy +msgid "No contacts ?" +msgstr "Contatos (%s)" + +#: [roster]no_contacts_text +msgid "You can add one using the + button bellow" +msgstr "" + +#: [roster]show_hide +msgid "Show/Hide" +msgstr "" + +#: [roster]add_contact_info1 +msgid "Enter the Jabber ID of your contact." +msgstr "" + +#: [roster]add_contact_info2 +msgid "Press enter to validate." +msgstr "" + +#: [roster]jid +msgid "JID" +msgstr "" + +#: [roster]results +msgid "Results" +msgstr "" + +#: [roster]added +msgid "Contact added" +msgstr "" + +#: [roster]deleted +msgid "Contact deleted" +msgstr "" + +#: [roster]search +msgid "Search" +msgstr "" + +#: [share]error +msgid "This is not a valid url" +msgstr "" + +#: [share]success +msgid "Sharing the URL" +msgstr "" + +#: [statistics]title +msgid "Statistics" +msgstr "" + +#: [statistics]since +msgid "Since" +msgstr "" + +#: [statistics]sessions +msgid "Sessions" +msgstr "" + +#: [statistics]monthly_sub +msgid "Monthly Subscriptions" +msgstr "" + +#: [statistics]monthly_sub_cum +msgid "Monthly Subscriptions Cumulated" +msgstr "" + +#: [subscribe]info +msgid "Movim is a decentralized social network, before creating a new account you need to choose a server to register." +msgstr "" + +#: [subscribe]server_question +msgid "Your server here ?" +msgstr "" + +#: [subscribe]server_contact +msgid "Contact us to add yours to the officially supported servers list" +msgstr "" + +#: [feed]nope +msgid "No public feed for this contact" +msgstr "" + +#: [feed]nope_contact +msgid "No contact specified" +msgstr "" + +#: [upload]title +msgid "Upload a file" +msgstr "" + +#: [upload]choose +msgid "Choose a file to upload" +msgstr "" + +#: [vcard]title [page]profile +msgid "Profile" +msgstr "Perfil" + +#: [vcard]updated +msgid "Profile Updated" +msgstr "" + +#: [vcard]not_updated +msgid "Profile Not Updated" +msgstr "" + +#: [vcard]public +msgid "Your profile is now public" +msgstr "" + +#: [vcard]restricted +msgid "Your profile is now restricted" +msgstr "" + +#: [general]nickname +#, fuzzy +msgctxt "[general]nickname" +msgid "Nickname" +msgstr "Apelido" + +#: [accounts]twitter +msgid "Twitter" +msgstr "" + +#: [accounts]skype +msgid "Skype" +msgstr "" + +#: [accounts]yahoo +msgid "Yahoo" +msgstr "" + +#: [accounts]accounts_nickname +#, fuzzy +msgctxt "[accounts]accounts_nickname" +msgid "Nickname" +msgstr "Apelido" + +#: [accounts]accounts_yahoo +msgid "Yahoo Account" +msgstr "" + +#: [privacy]privacy_title +msgid "Privacy Level" +msgstr "" + +#: [privacy]privacy_question +msgid "Is this profile public ?" +msgstr "" + +#: [privacy]privacy_info +msgid "Please pay attention ! By making your profile public, all the information listed above will be available for all the Movim users and on the whole Internet." +msgstr "" + +#: [save]submit [button]submit msgid "Submit" msgstr "Enviar" -#: ../cache/locales.php:522 -msgid "Submitting" -msgstr "Submeter" - -#: ../cache/locales.php:523 +#: [save]reset [button]reset msgid "Reset" msgstr "Limpar" -#: ../cache/locales.php:524 +#: [visio]hung_up +msgid "Hung up" +msgstr "" + +#: [visio]busy +msgid "Your contact is busy" +msgstr "" + +#: [visio]declined +msgid "Declined" +msgstr "" + +#: [visio]calling +msgid "Is calling you" +msgstr "" + +#: [visio]call +msgid "Call" +msgstr "" + +#: [visio]hang_up +msgid "Hang up" +msgstr "" + +#: [visio]connection +msgid "Connection" +msgstr "" + +#: [global]no_js +msgid "You don't have javascript enabled. Good luck with that." +msgstr "" + +#: [global]description +msgid "Movim is a kickass distributed social networking platform that protect your privacy an comes with a set of awesome features." +msgstr "" + +#: [page]administration +msgid "Administration" +msgstr "" + +#: [page]home +msgid "Home" +msgstr "Início" + +#: [page]discover +msgid "Discover" +msgstr "" + +#: [page]explore +msgid "Explore" +msgstr "" + +#: [page]account_creation +msgid "Account Creation" +msgstr "Criar uma Conta" + +#: [page]avatar +msgid "Avatar" +msgstr "Avatar" + +#: [page]chats +msgid "Chats" +msgstr "" + +#: [page]server +msgid "Server" +msgstr "" + +#: [page]public_groups +msgid "Public Groups" +msgstr "" + +#: [page]viewer +msgid "Viewer" +msgstr "" + +#: [page]media +msgid "Media" +msgstr "" + +#: [page]blog +msgid "Blog" +msgstr "" + +#: [page]about +msgid "About" +msgstr "" + +#: [page]login +msgid "Login" +msgstr "" + +#: [page]feed +msgid "Feed" +msgstr "Retorno do contato" + +#: [page]gallery +msgid "Gallery" +msgstr "" + +#: [page]visio +msgid "Visio-conference" +msgstr "" + +#: [page]pods +msgid "Pods" +msgstr "" + +#: [page]share +msgid "Share" +msgstr "" + +#: [page]room +msgid "Room" +msgstr "" + +#: [error]error +msgid "Error: %s" +msgstr "Erro: %s" + +#: [error]cannot_load_file +msgid "Cannot load file '%s'" +msgstr "Não carregou arquivo '%s'" + +#: [error]route +msgid "Route error, please set all the parameters for the page %s" +msgstr "" + +#: [error]widget_load_error +msgid "Requested widget '%s' doesn't exist." +msgstr "" + +#: [error]widget_call_error +msgid "Requested event '%s' not registered." +msgstr "" + +#: [error]whoops +msgid "Whoops!" +msgstr "" + +#: [error]media_not_found +msgid "It seem that you don't have any pictures here?" +msgstr "" + +#: [error]media_ask_upload +msgid "You can try to upload a couple by going to the Media page" +msgstr "" + +#: [title]about +msgid "%s - About" +msgstr "" + +#: [title]account +msgid "%s - Account" +msgstr "" + +#: [title]administration +msgid "%s - Administration Panel" +msgstr "" + +#: [title]blog +msgid "%s - Blog" +msgstr "" + +#: [title]configuration +msgid "%s - Configuration" +msgstr "%s - Configuraçāo" + +#: [title]discover +msgid "%s - Discover" +msgstr "" + +#: [title]explore +msgid "%s - Explore" +msgstr "" + +#: [title]help +msgid "%s - Help Page" +msgstr "%s - Página de ajuda" + +#: [title]login +msgid "%s - Login to Movim" +msgstr "%s - Entrar no Movim" + +#: [title]main +msgid "%s - Welcome to Movim" +msgstr "%s - Bem vindo ao Movim" + +#: [title]media +msgid "%s - Media" +msgstr "" + +#: [title]news +msgid "%s - News" +msgstr "" + +#: [title]node_configuration +msgid "%s - Group Configuration" +msgstr "" + +#: [title]node +msgid "%s - Group" +msgstr "" + +#: [title]not_found +msgid "%s - 404" +msgstr "" + +#: [title]profile +msgid "%s - Profile" +msgstr "%s - Perfil" + +#: [title]server +msgid "%s - Server" +msgstr "" + +#: [button]validate +msgid "Validate" +msgstr "" + +#: [button]refresh +msgid "Refresh" +msgstr "" + +#: [button]add +msgid "Add" +msgstr "Adicionar" + +#: [button]delete +msgid "Delete" +msgstr "" + +#: [button]cancel +msgid "Cancel" +msgstr "Cancelar" + +#: [button]close +msgid "Close" +msgstr "" + +#: [button]update +msgid "Update" +msgstr "" + +#: [button]updating +msgid "Updating" +msgstr "" + +#: [button]submitting +msgid "Submitting" +msgstr "Submeter" + +#: [button]register msgid "Register" msgstr "" -#: ../cache/locales.php:525 +#: [button]unregister msgid "Unregister" msgstr "" -#: ../cache/locales.php:526 +#: [button]save msgid "Save" msgstr "" -#: ../cache/locales.php:527 +#: [button]clear msgid "Clear" msgstr "" -#: ../cache/locales.php:528 +#: [button]upload msgid "Upload" msgstr "" -#: ../cache/locales.php:529 +#: [button]come_in msgid "Come in!" msgstr "Faça Parte!" -#: ../cache/locales.php:530 +#: [button]connecting msgid "Connecting" msgstr "" -#: ../cache/locales.php:531 +#: [button]bool_yes msgid "Yes" msgstr "Sim" -#: ../cache/locales.php:532 +#: [button]bool_no msgid "No" msgstr "Não" -#: ../cache/locales.php:534 +#: [button]return msgid "Return" msgstr "" -#: ../cache/locales.php:535 +#: [button]accept msgid "Accept" msgstr "Aceitar" -#: ../cache/locales.php:536 +#: [button]refuse msgid "Refuse" msgstr "" -#: ../cache/locales.php:537 +#: [button]next msgid "Next" msgstr "" -#: ../cache/locales.php:538 +#: [button]previous msgid "Previous" msgstr "" -#: ../cache/locales.php:539 -#, php-format +#: [step]step msgid "Step %s" msgstr "" -#: ../cache/locales.php:542 +#: [day]title msgid "Day" msgstr "Dia" -#: ../cache/locales.php:543 +#: [day]monday msgid "Monday" msgstr "Segunda-feira" -#: ../cache/locales.php:544 +#: [day]tuesday msgid "Tuesday" msgstr "Terça-feira" -#: ../cache/locales.php:545 +#: [day]wednesday msgid "Wednesday" msgstr "Quarta-feira" -#: ../cache/locales.php:546 +#: [day]thursday msgid "Thursday" msgstr "Quinta-feira" -#: ../cache/locales.php:547 +#: [day]friday msgid "Friday" msgstr "Sexta-feira" -#: ../cache/locales.php:548 +#: [day]saturday msgid "Saturday" msgstr "Sábado" -#: ../cache/locales.php:549 +#: [day]sunday msgid "Sunday" msgstr "" -#: ../cache/locales.php:550 ../cache/locales.php:559 +#: [gender]nil +#, fuzzy +msgctxt "[gender]nil" msgid "None" msgstr "Nenhum" -#: ../cache/locales.php:551 +#: [gender]male msgid "Male" msgstr "Masculino" -#: ../cache/locales.php:552 +#: [gender]female msgid "Female" msgstr "Feminino" -#: ../cache/locales.php:553 +#: [gender]other msgid "Other" msgstr "Outro" -#: ../cache/locales.php:554 +#: [client]bot msgid "Bot" msgstr "Bot" -#: ../cache/locales.php:555 +#: [client]desktop msgid "Desktop" msgstr "Ambiente de trabalho" -#: ../cache/locales.php:556 +#: [client]phone msgid "Phone" msgstr "Telefone" -#: ../cache/locales.php:557 +#: [client]web msgid "Web" msgstr "" -#: ../cache/locales.php:558 +#: [client]registered msgid "Registered" msgstr "" -#: ../cache/locales.php:560 +#: [marital]nil +#, fuzzy +msgctxt "[marital]nil" +msgid "None" +msgstr "Nenhum" + +#: [marital]single msgid "Single" msgstr "Solteiro(a)" -#: ../cache/locales.php:561 +#: [marital]relationship msgid "In a relationship" msgstr "Em um relacionamento" -#: ../cache/locales.php:562 +#: [marital]married msgid "Married" msgstr "Casado(a)" -#: ../cache/locales.php:563 +#: [marital]divorced msgid "Divorced" msgstr "Divorciado(a)" -#: ../cache/locales.php:564 +#: [marital]widowed msgid "Widowed" msgstr "Viúvo(a)" -#: ../cache/locales.php:565 +#: [marital]cohabiting msgid "Cohabiting" msgstr "Morando junto" -#: ../cache/locales.php:566 +#: [marital]union msgid "Civil Union" msgstr "União Civil" -#: ../cache/locales.php:567 +#: [flag]white msgid "Not shared" msgstr "" -#: ../cache/locales.php:568 +#: [flag]green msgid "Shared with one contact" msgstr "" -#: ../cache/locales.php:569 +#: [flag]orange msgid "Shared with all contacts" msgstr "" -#: ../cache/locales.php:570 +#: [flag]red msgid "Shared with the XMPP network" msgstr "" -#: ../cache/locales.php:571 +#: [flag]black msgid "Shared with the whole Internet" msgstr "" -#: ../cache/locales.php:572 +#: [presence]online msgid "Online" msgstr "Online" -#: ../cache/locales.php:573 +#: [presence]away msgid "Away" msgstr "Ausente" -#: ../cache/locales.php:574 +#: [presence]dnd msgid "Do Not Disturb" msgstr "Não Perturbe" -#: ../cache/locales.php:575 +#: [presence]xa msgid "Extended Away" msgstr "Ausência Prolongada" -#: ../cache/locales.php:576 +#: [presence]offline msgid "Offline" msgstr "Indisponível" -#: ../cache/locales.php:577 +#: [presence]error msgid "Error" msgstr "" -#: ../cache/locales.php:578 +#: [mood]afraid msgid "afraid" msgstr "" -#: ../cache/locales.php:579 +#: [mood]amazed msgid "amazed" msgstr "" -#: ../cache/locales.php:580 +#: [mood]amorous msgid "amorous" msgstr "" -#: ../cache/locales.php:581 +#: [mood]angry msgid "angry" msgstr "zangado" -#: ../cache/locales.php:582 +#: [mood]annoyed msgid "annoyed" msgstr "" -#: ../cache/locales.php:583 +#: [mood]anxious msgid "anxious" msgstr "" -#: ../cache/locales.php:584 +#: [mood]aroused msgid "aroused" msgstr "" -#: ../cache/locales.php:585 +#: [mood]ashamed msgid "ashamed" msgstr "" -#: ../cache/locales.php:586 +#: [mood]bored msgid "bored" msgstr "" -#: ../cache/locales.php:587 +#: [mood]brave msgid "brave" msgstr "" -#: ../cache/locales.php:588 +#: [mood]calm msgid "calm" msgstr "" -#: ../cache/locales.php:589 +#: [mood]cautious msgid "cautious" msgstr "" -#: ../cache/locales.php:590 +#: [mood]cold msgid "cold" msgstr "" -#: ../cache/locales.php:591 +#: [mood]confident msgid "confident" msgstr "" -#: ../cache/locales.php:592 +#: [mood]confused msgid "confused" msgstr "" -#: ../cache/locales.php:593 +#: [mood]contemplative msgid "contemplative" msgstr "" -#: ../cache/locales.php:594 +#: [mood]contented msgid "contented" msgstr "" -#: ../cache/locales.php:595 +#: [mood]cranky msgid "cranky" msgstr "" -#: ../cache/locales.php:596 +#: [mood]crazy msgid "crazy" msgstr "" -#: ../cache/locales.php:597 +#: [mood]creative msgid "creative" msgstr "" -#: ../cache/locales.php:598 +#: [mood]curious msgid "curious" msgstr "" -#: ../cache/locales.php:599 +#: [mood]dejected msgid "dejected" msgstr "" -#: ../cache/locales.php:600 +#: [mood]depressed msgid "depressed" msgstr "" -#: ../cache/locales.php:601 +#: [mood]disappointed msgid "disappointed" msgstr "" -#: ../cache/locales.php:602 +#: [mood]disgusted msgid "disgusted" msgstr "" -#: ../cache/locales.php:603 +#: [mood]dismayed msgid "dismayed" msgstr "" -#: ../cache/locales.php:604 +#: [mood]distracted msgid "distracted" msgstr "" -#: ../cache/locales.php:605 +#: [mood]embarrassed msgid "embarrassed" msgstr "" -#: ../cache/locales.php:606 +#: [mood]envious msgid "envious" msgstr "" -#: ../cache/locales.php:607 +#: [mood]excited msgid "excited" msgstr "" -#: ../cache/locales.php:608 +#: [mood]flirtatious msgid "flirtatious" msgstr "" -#: ../cache/locales.php:609 +#: [mood]frustated msgid "frustated" msgstr "" -#: ../cache/locales.php:610 +#: [mood]grateful msgid "grateful" msgstr "" -#: ../cache/locales.php:611 +#: [mood]grieving msgid "grieving" msgstr "" -#: ../cache/locales.php:612 +#: [mood]grumpy msgid "grumpy" msgstr "" -#: ../cache/locales.php:613 +#: [mood]guilty msgid "guilty" msgstr "" -#: ../cache/locales.php:614 +#: [mood]happy msgid "happy" msgstr "" -#: ../cache/locales.php:615 +#: [mood]hopeful msgid "hopeful" msgstr "" -#: ../cache/locales.php:616 +#: [mood]hot msgid "hot" msgstr "" -#: ../cache/locales.php:617 +#: [mood]humbled msgid "humbled" msgstr "" -#: ../cache/locales.php:618 +#: [mood]humiliated msgid "humiliated" msgstr "" -#: ../cache/locales.php:619 +#: [mood]hungry msgid "hungry" msgstr "" -#: ../cache/locales.php:620 +#: [mood]hurt msgid "hurt" msgstr "" -#: ../cache/locales.php:621 +#: [mood]impressed msgid "impressed" msgstr "" -#: ../cache/locales.php:622 +#: [mood]in_awe msgid "in awe" msgstr "" -#: ../cache/locales.php:623 +#: [mood]in_love msgid "in love" msgstr "" -#: ../cache/locales.php:624 +#: [mood]indignant msgid "indignant" msgstr "" -#: ../cache/locales.php:625 +#: [mood]interested msgid "interested" msgstr "" -#: ../cache/locales.php:626 +#: [mood]intoxicated msgid "intoxicated" msgstr "" -#: ../cache/locales.php:627 +#: [mood]invincible msgid "invincible" msgstr "" -#: ../cache/locales.php:628 +#: [mood]jealous msgid "jealous" msgstr "" -#: ../cache/locales.php:629 +#: [mood]lonely msgid "lonely" msgstr "" -#: ../cache/locales.php:630 +#: [mood]lost msgid "lost" msgstr "" -#: ../cache/locales.php:631 +#: [mood]lucky msgid "lucky" msgstr "" -#: ../cache/locales.php:632 +#: [mood]mean msgid "mean" msgstr "" -#: ../cache/locales.php:633 +#: [mood]moody msgid "moody" msgstr "" -#: ../cache/locales.php:634 +#: [mood]nervous msgid "nervous" msgstr "" -#: ../cache/locales.php:635 +#: [mood]neutral msgid "neutral" msgstr "" -#: ../cache/locales.php:636 +#: [mood]offended msgid "offended" msgstr "" -#: ../cache/locales.php:637 +#: [mood]outraged msgid "outraged" msgstr "" -#: ../cache/locales.php:638 +#: [mood]playful msgid "playful" msgstr "" -#: ../cache/locales.php:639 +#: [mood]proud msgid "proud" msgstr "" -#: ../cache/locales.php:640 +#: [mood]relaxed msgid "relaxed" msgstr "" -#: ../cache/locales.php:641 +#: [mood]relieved msgid "relieved" msgstr "" -#: ../cache/locales.php:642 -msgid "remorseful" -msgstr "" - -#: ../cache/locales.php:643 +#: [mood]restless msgid "restless" msgstr "" -#: ../cache/locales.php:644 +#: [mood]sad msgid "sad" msgstr "" -#: ../cache/locales.php:645 +#: [mood]sarcastic msgid "sarcastic" msgstr "" -#: ../cache/locales.php:646 +#: [mood]satisfied msgid "satisfied" msgstr "" -#: ../cache/locales.php:647 +#: [mood]serious msgid "serious" msgstr "" -#: ../cache/locales.php:648 +#: [mood]shocked msgid "shocked" msgstr "" -#: ../cache/locales.php:649 +#: [mood]shy msgid "shy" msgstr "" -#: ../cache/locales.php:650 +#: [mood]sick msgid "sick" msgstr "" -#: ../cache/locales.php:651 +#: [mood]sleepy msgid "sleepy" msgstr "" -#: ../cache/locales.php:652 +#: [mood]spontaneous msgid "spontaneous" msgstr "" -#: ../cache/locales.php:653 +#: [mood]stressed msgid "stressed" msgstr "" -#: ../cache/locales.php:654 +#: [mood]strong msgid "strong" msgstr "" -#: ../cache/locales.php:655 +#: [mood]surprised msgid "surprised" msgstr "" -#: ../cache/locales.php:656 +#: [mood]thankful msgid "thankful" msgstr "" -#: ../cache/locales.php:657 +#: [mood]thirsty msgid "thirsty" msgstr "" -#: ../cache/locales.php:658 +#: [mood]tired msgid "tired" msgstr "" -#: ../cache/locales.php:659 +#: [mood]undefined msgid "undefined" msgstr "" -#: ../cache/locales.php:660 +#: [mood]weak msgid "weak" msgstr "" -#: ../cache/locales.php:661 +#: [mood]worried msgid "worried" msgstr "" -#: ../cache/locales.php:662 +#: [month]title msgid "Month" msgstr "Mês" -#: ../cache/locales.php:663 +#: [month]january msgid "January" msgstr "Janeiro" -#: ../cache/locales.php:664 +#: [month]february msgid "February" msgstr "Fevereiro" -#: ../cache/locales.php:665 +#: [month]march msgid "March" msgstr "Março" -#: ../cache/locales.php:666 +#: [month]april msgid "April" msgstr "Abril" -#: ../cache/locales.php:667 +#: [month]may msgid "May" msgstr "Maio" -#: ../cache/locales.php:668 +#: [month]june msgid "June" msgstr "Junho" -#: ../cache/locales.php:669 +#: [month]july msgid "July" msgstr "Julho" -#: ../cache/locales.php:670 +#: [month]august msgid "August" msgstr "Agosto" -#: ../cache/locales.php:671 +#: [month]september msgid "September" msgstr "Setembro" -#: ../cache/locales.php:672 +#: [month]october msgid "October" msgstr "Outubro" -#: ../cache/locales.php:673 +#: [month]november msgid "November" msgstr "Novembro" -#: ../cache/locales.php:674 +#: [month]december msgid "December" msgstr "Dezembro" -#: ../cache/locales.php:675 +#: [year]title msgid "Year" msgstr "Ano" -#: ../cache/locales.php:676 +#: [date]today msgid "Today" msgstr "Hoje" -#: ../cache/locales.php:677 +#: [date]tomorrow msgid "Tomorrow" msgstr "Amanhã" -#: ../cache/locales.php:678 +#: [date]yesterday msgid "Yesterday" msgstr "Ontem" -#: ../cache/locales.php:679 -#, php-format -msgid " %d days ago" +#: [date]ago +#, fuzzy +msgid "%d days ago" msgstr " %d dias atrás" -#: ../cache/locales.php:680 +#: [date]day msgid "day" msgstr "Dia" -#: ../cache/locales.php:682 +#: [post]whats_new msgid "What's new ?" msgstr "" -#: ../cache/locales.php:683 +#: [post]place msgid "Place" msgstr "" -#: ../cache/locales.php:684 +#: [post]by msgid "by" msgstr "" -#: ../cache/locales.php:685 +#: [post]geolocalisation msgid "Geolocalisation" msgstr "" -#: ../cache/locales.php:686 +#: [post]email msgid "email" msgstr "" -#: ../cache/locales.php:688 +#: [post]no_comments msgid "No comments yet" msgstr "" -#: ../cache/locales.php:689 +#: [post]no_comments_stream msgid "No comments stream" msgstr "" -#: ../cache/locales.php:690 +#: [post]no_load msgid "Your feed cannot be loaded." msgstr "Sua feed não pode ser carregado." -#: ../cache/locales.php:691 +#: [post]older msgid "Get older posts" msgstr "Obter postagens mais antigas" -#: ../cache/locales.php:692 -#, php-format +#: [post]new_items msgid "%s new items" msgstr "" -#: ../cache/locales.php:693 +#: [post]comment_error msgid "Comment publication error" msgstr "" -#: ../cache/locales.php:694 +#: [post]comments_older msgid "Show the older comments" msgstr "" -#: ../cache/locales.php:695 -msgid "Loading comments ..." -msgstr "" +#: [post]comments_loading +#, fuzzy +msgid "Loading comments..." +msgstr "Carregando seu feed ..." -#: ../cache/locales.php:696 +#: [post]comments_get msgid "Get the comments" msgstr "" -#: ../cache/locales.php:697 +#: [post]comment_add msgid "Add a comment" msgstr "" -#: ../cache/locales.php:698 +#: [post]share msgid "Share with" msgstr "" -#: ../cache/locales.php:699 +#: [post]share_everyone msgid "Everyone" msgstr "" -#: ../cache/locales.php:700 +#: [post]share_your_contacts msgid "Your contacts" msgstr "" -#: ../cache/locales.php:702 +#: [post]updated msgid "Updated" msgstr "" -#: ../cache/locales.php:703 +#: [post]content_not_found msgid "Content not found" msgstr "" -#: ../cache/locales.php:704 +#: [post]default_title msgid "Contact publication" msgstr "" -#: ../cache/locales.php:705 +#: [post]comments msgid "Comments" msgstr "" -#: ../cache/locales.php:706 +#: [api]error msgid "The API is not reachable, try again later" msgstr "" -#: ../cache/locales.php:707 +#: [field]type_here msgid "Type here" msgstr "" #~ msgid "PHP version mismatch. Movim requires PHP 5.3 minimum." #~ msgstr "Versão errada do PHP. O Movim requer no mínimo PHP 5.3." -#, php-format #~ msgid "Movim requires the %s extension." #~ msgstr "Movim requer a extensão %s." @@ -2598,23 +2726,17 @@ msgstr "" #~ msgid "Movim Installer" #~ msgstr "Instalar Movim" -#, php-format #~ msgid "Couldn't create directory '%s'." #~ msgstr "Não foi possível criar o diretório '%s'." -#, php-format #~ msgid "Couldn't create configuration file '%s'." #~ msgstr "Não foi possível criar o arquivo de configuração '%s'." #~ msgid "Compatibility Test" #~ msgstr "Teste de compatibilidade" -#~ msgid "" -#~ "The following requirements were not met. Please make sure they are all " -#~ "satisfied in order to install Movim." -#~ msgstr "" -#~ "Os seguintes requisitos não foram encontrados. Por favor, tenha certeza de " -#~ "que todos estão satisfeitos para que a instalação prossiga." +#~ msgid "The following requirements were not met. Please make sure they are all satisfied in order to install Movim." +#~ msgstr "Os seguintes requisitos não foram encontrados. Por favor, tenha certeza de que todos estão satisfeitos para que a instalação prossiga." #~ msgid "User not logged in." #~ msgstr "Usuário não logado." @@ -2622,21 +2744,15 @@ msgstr "" #~ msgid "JID not provided." #~ msgstr "JID não disponível." -#, php-format #~ msgid "jid '%s' is incorrect" #~ msgstr "O jid '%s' está incorreto" -#, php-format #~ msgid "Cannot open log file '%s'" #~ msgstr "Não foi possível abrir o arquivo de log '%s'." -#, php-format #~ msgid "%s - Account Creation" #~ msgstr "%s - Criação da conta" -#~ msgid "Remove this contact" -#~ msgstr "Remover este contato" - #~ msgid "Debug console" #~ msgstr "Console de debug" @@ -2652,7 +2768,6 @@ msgstr "" #~ msgid "Loading the contact feed ..." #~ msgstr "Carregando retorno do contacto" -#, php-format #~ msgid "Install the %s package" #~ msgstr "Instalar o pacote %s" @@ -2662,16 +2777,11 @@ msgstr "" #~ msgid "Actual version : " #~ msgstr "Versão atual: " -#, php-format #~ msgid "Install %s and %s packages" #~ msgstr "Instalar %s e pacotes %s" #~ msgid "Update your PHP version or contact your server administrator" -#~ msgstr "" -#~ "Atualize a sua versão do PHP ou contate seu administrador do servidor" - -#~ msgid "Enable read and write rights on Movim's root folder" -#~ msgstr "Habilitar permissões de leitura e escrita na pasta raiz do Movim" +#~ msgstr "Atualize a sua versão do PHP ou contate seu administrador do servidor" #~ msgid "Thank you for downloading Movim!" #~ msgstr "Obrigado por baixar o Movim!" @@ -2685,18 +2795,11 @@ msgstr "" #~ msgid "empty" #~ msgstr "vazio" -#~ msgid "" -#~ "Some errors were detected. Please correct them for the installation to " -#~ "proceed." -#~ msgstr "" -#~ "Alguns erros foram detectados. Por favor, corrija-os para prosseguir com a " -#~ "instalação." +#~ msgid "Some errors were detected. Please correct them for the installation to proceed." +#~ msgstr "Alguns erros foram detectados. Por favor, corrija-os para prosseguir com a instalação." -#~ msgid "" -#~ "Before you enjoy your social network, a few adjustements are required." -#~ msgstr "" -#~ "Antes de você aproveitar nossa rede social, uns poucos ajustes devem ser " -#~ "feitos." +#~ msgid "Before you enjoy your social network, a few adjustements are required." +#~ msgstr "Antes de você aproveitar nossa rede social, uns poucos ajustes devem ser feitos." #~ msgid "BOSH Connection Preferences" #~ msgstr "Preferências da conexão BOSH" @@ -2704,7 +2807,6 @@ msgstr "" #~ msgid "Proxy Preferences" #~ msgstr "Preferências do proxy" -#, php-format #~ msgid "Please remove the %s folder in order to complete the installation" #~ msgstr "Por favor, remova a pasta %s para completar a instalação" @@ -2714,9 +2816,6 @@ msgstr "" #~ msgid "Database Movim schema installed" #~ msgstr "Banco de dados Movim instalado" -#~ msgid "Database Detected" -#~ msgstr "Banco de dados detectado" - #~ msgid "Valid Bosh" #~ msgstr "Bosh válido" @@ -2739,8 +2838,7 @@ msgstr "" #~ msgstr "Tenha certeza que sua senha é segura:" #~ msgid "A capital letter, a digit and a special character are recommended" -#~ msgstr "" -#~ "Recomenda-se o uso de uma letra maiúscula, um número e um caracter especial" +#~ msgstr "Recomenda-se o uso de uma letra maiúscula, um número e um caracter especial" #~ msgid "8 characters" #~ msgstr "8 caracteres" @@ -2781,39 +2879,23 @@ msgstr "" #~ msgid "My Posts" #~ msgstr "Minhas Postagens" -#, php-format #~ msgid "%s - Add An Account" #~ msgstr "%s - Adicionar Uma Conta" #~ msgid "Could not connect to the XMPP server" #~ msgstr "Não foi possível conectar ao servidor XMPP" -#, php-format -#~ msgid "" -#~ "Go to the %s to the Frequently Asked Questions %s or come ask your question " -#~ "on the official chatroom %s or via our mailing-list (%s see the dedicated " -#~ "page %s)." -#~ msgstr "" -#~ "Vá para %s Perguntas Frequentes (FAQ) %s ou faça sua pergunta na sala de " -#~ "chat oficial %s ou via nossa lista de email (%s veja a página específica %s)." +#~ msgid "Go to the %s to the Frequently Asked Questions %s or come ask your question on the official chatroom %s or via our mailing-list (%s see the dedicated page %s)." +#~ msgstr "Vá para %s Perguntas Frequentes (FAQ) %s ou faça sua pergunta na sala de chat oficial %s ou via nossa lista de email (%s veja a página específica %s)." -#, php-format -#~ msgid "" -#~ "Don't forget that Movim is an open source project, a helping hand is always " -#~ "welcome (see %s Can I participate %s)" -#~ msgstr "" -#~ "Não se esqueça que Movim é um projeto de código aberto (open source), " -#~ "qualquer ajuda é sempre bemvinda (veja %s Como posso participar %s)" +#~ msgid "Don't forget that Movim is an open source project, a helping hand is always welcome (see %s Can I participate %s)" +#~ msgstr "Não se esqueça que Movim é um projeto de código aberto (open source), qualquer ajuda é sempre bemvinda (veja %s Como posso participar %s)" #~ msgid "I can't find the answer to my question here" #~ msgstr "Não consigo encontrar a resposta para a minha pergunta aqui" -#~ msgid "" -#~ "Some features are missing/I can't do everything I used to do on other social " -#~ "networks" -#~ msgstr "" -#~ "Alguns recursos estão faltando/Eu não posso fazer nada do que eu costumava " -#~ "fazer em outras redes sociais" +#~ msgid "Some features are missing/I can't do everything I used to do on other social networks" +#~ msgstr "Alguns recursos estão faltando/Eu não posso fazer nada do que eu costumava fazer em outras redes sociais" #~ msgid "The current BOSH URL in invalid" #~ msgstr "A URL BOSH atual não é válida." @@ -2821,10 +2903,6 @@ msgstr "" #~ msgid "No profile yet ?" #~ msgstr "Sem perfil ainda?" -#, php-format -#~ msgid "Contacts (%s)" -#~ msgstr "Contatos (%s)" - #~ msgid "Edit my Profile" #~ msgstr "Editar meu Perfil" @@ -2846,81 +2924,44 @@ msgstr "" #~ msgid "terse" #~ msgstr "terso" -#~ msgid "" -#~ "Keep in mind that Movim is still under development and will handle many " -#~ "personal details. Its use can potentially endanger your data. Always pay " -#~ "attention to information that you submit." -#~ msgstr "" -#~ "Tenha em mente que Movim ainda está em desenvolvimento e irá lidar com " -#~ "muitos detalhes pessoais. Seu uso pode eventualmente comprometer seus dados. " -#~ "Sempre preste atenção às informações que você envia." +#~ msgid "Keep in mind that Movim is still under development and will handle many personal details. Its use can potentially endanger your data. Always pay attention to information that you submit." +#~ msgstr "Tenha em mente que Movim ainda está em desenvolvimento e irá lidar com muitos detalhes pessoais. Seu uso pode eventualmente comprometer seus dados. Sempre preste atenção às informações que você envia." -#, php-format #~ msgid "You can now access your shiny Movim instance %sJump In !%s" #~ msgstr "Agora você pode acessar Ir seu exemplo brilhante Movim %s em ! %s" -#~ msgid "" -#~ "Firstly fill in this blank with a brand new account ID, this address will " -#~ "follow you on all the Movim network !" -#~ msgstr "" -#~ "Em primeiro lugar preencher este vazio com uma ID de conta nova, este " -#~ "endereço vai segui-lo em todos os Movim rede!" +#~ msgid "Firstly fill in this blank with a brand new account ID, this address will follow you on all the Movim network !" +#~ msgstr "Em primeiro lugar preencher este vazio com uma ID de conta nova, este endereço vai segui-lo em todos os Movim rede!" -#~ msgid "Loading your feed ..." -#~ msgstr "Carregando seu feed ..." - -#~ msgid "" -#~ "Your server doesn't support post publication, you can only read contact's " -#~ "feeds" -#~ msgstr "" -#~ "Seu servidor não suporta a publicação post, você só pode ler feeds contato" +#~ msgid "Your server doesn't support post publication, you can only read contact's feeds" +#~ msgstr "Seu servidor não suporta a publicação post, você só pode ler feeds contato" #~ msgid "Link my current account" #~ msgstr "Vincular a minha conta corrente" -#, php-format -#~ msgid "" -#~ "Visit the page %s What is Movim ? %s to know more about the project, its " -#~ "aims and understand how it works." -#~ msgstr "" -#~ "Visite a página %s ¿ Que é Movim ? %s para saber mais sobre o projeto, seus " -#~ "objetivos e compreender como ele funciona." +#~ msgid "Visit the page %s What is Movim ? %s to know more about the project, its aims and understand how it works." +#~ msgstr "Visite a página %s ¿ Que é Movim ? %s para saber mais sobre o projeto, seus objetivos e compreender como ele funciona." -#, php-format -#~ msgid "" -#~ "Although Movim is evolving fast, many (many) features are missing. Be " -#~ "patient ;). You can have a look %s at next versions's roadmaps %s to know if " -#~ "the one you want is on its way." -#~ msgstr "" -#~ "Embora Movim está evoluindo rápido, muitos (muitos) recursos estão faltando. " -#~ "Seja paciente ;). Você pode ter um %s olhada roteiros próximas versões das " -#~ "%s para saber se o que você quer é o seu caminho." +#~ msgid "Although Movim is evolving fast, many (many) features are missing. Be patient ;). You can have a look %s at next versions's roadmaps %s to know if the one you want is on its way." +#~ msgstr "Embora Movim está evoluindo rápido, muitos (muitos) recursos estão faltando. Seja paciente ;). Você pode ter um %s olhada roteiros próximas versões das %s para saber se o que você quer é o seu caminho." -#, php-format #~ msgid "Cannot load element value '%s'" #~ msgstr "Não foi possível carregar o valor do elemento '%s'" #~ msgid "What is Movim?" #~ msgstr "O que é o Movim?" -#, php-format #~ msgid "Bosh connection failed with error '%s'" #~ msgstr "A conexão Bosh falhou com erro '%s'" #~ msgid "Send request" #~ msgstr "Enviar pedido" -#, php-format #~ msgid "XMPP connection through Bosh failed with error '%s'" #~ msgstr "A conexão XMPP através do Bosh falhou com erro '%s'" -#, php-format -#~ msgid "This server hosts %s accounts" -#~ msgstr "Este servidor hospeda %s contas" - #~ msgid "Invite this user" #~ msgstr "Convidar este usuário" -#, php-format #~ msgid "Database connection failed with error '%s'" #~ msgstr "A conexão com o banco de dados falhou com erro '%s'" diff --git a/sources/locales/ro.po b/sources/locales/ro.po index 2df6175..769f603 100644 --- a/sources/locales/ro.po +++ b/sources/locales/ro.po @@ -1,2590 +1,2712 @@ # Romanian translations for Movim package. # This file is distributed under the same license as the Movim package. # This file was translated from CodingTeam at . +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/About/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Account/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AccountNext/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AdHoc/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AdminDB/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AdminMain/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AdminTest/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Api/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Avatar/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Blog/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Bookmark/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Chat/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Chats/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/ConfigData/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Config/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Contact/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Group/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Groups/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Header/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Hello/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Help/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Init/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Location/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/LoginAnonymous/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Login/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Menu/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/NodeAffiliations/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/NodeSubscriptions/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Notifs/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Post/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Presence/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Publish/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/PubsubSubscriptionConfig/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Rooms/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Roster/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Share/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Statistics/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Subscribe/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Syndication/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Upload/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Vcard4/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/VisioExt/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Visio/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../locales/locales.ini msgid "" msgstr "" "Project-Id-Version: Movim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-06-08 22:06+0200\n" +"POT-Creation-Date: 2015-08-20 15:17+0200\n" "PO-Revision-Date: 2011-10-26 21:35+0000\n" "Last-Translator: edhelas \n" "Language-Team: LANGUAGE \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2015-06-18 21:08+0000\n" "X-Generator: Launchpad (build 17570)\n" -#: ../cache/locales.php:2 +#: [about]thanks msgid "Thanks" msgstr "" -#: ../cache/locales.php:3 +#: [about]developers msgid "Developers" msgstr "" -#: ../cache/locales.php:4 +#: [about]translators msgid "Translators" msgstr "" -#: ../cache/locales.php:5 +#: [about]software msgid "Software" msgstr "" -#: ../cache/locales.php:6 +#: [about]resources msgid "Resources" msgstr "" -#: ../cache/locales.php:7 ../cache/locales.php:83 ../cache/locales.php:85 +#: [about]api [schema]api [api]title msgid "API" msgstr "" -#: ../cache/locales.php:8 -msgid "" -"Movim is an XMPP-based communication platform. All the project, except the " -"following software and resources, is under" +#: [about]info +msgid "Movim is an XMPP-based communication platform. All the project, except the following software and resources, is under" msgstr "" -#: ../cache/locales.php:9 +#: [account]title msgid "Account" msgstr "" -#: ../cache/locales.php:10 -msgid "The password has been updated" -msgstr "" +#: [account]password_change_title +#, fuzzy +msgid "Change my password" +msgstr "Parola gresita" -#: ../cache/locales.php:11 -msgid "Please provide a valid password (6 characters minimum)" -msgstr "" - -#: ../cache/locales.php:12 -msgid "The provided passwords are not the same" -msgstr "" - -#: ../cache/locales.php:13 -msgid "Delete my account" -msgstr "" - -#: ../cache/locales.php:14 -msgid "" -"You will delete your XMPP account and all the relative information linked to " -"it (profile, contacts and publications)." -msgstr "" - -#: ../cache/locales.php:15 -msgid "Are you sure that you want to delete it ?" -msgstr "" - -#: ../cache/locales.php:16 ../cache/locales.php:411 -msgid "Create a new account" -msgstr "" - -#: ../cache/locales.php:17 -msgid "No account creation form found on the server" -msgstr "" - -#: ../cache/locales.php:18 ../cache/locales.php:172 -msgid "on" -msgstr "" - -#: ../cache/locales.php:19 -msgid "Your acccount has been successfully registered" -msgstr "" - -#: ../cache/locales.php:20 -msgid "Loading" -msgstr "" - -#: ../cache/locales.php:21 -msgid "Not Acceptable" -msgstr "" - -#: ../cache/locales.php:22 -msgid "The registration system of this server is currently unavailable" -msgstr "" - -#: ../cache/locales.php:23 -msgid "" -"This server use an external system for the registration, please click on the " -"following URL." -msgstr "" - -#: ../cache/locales.php:24 -msgid "Actions" -msgstr "" - -#: ../cache/locales.php:25 ../cache/locales.php:82 -msgid "Database" -msgstr "" - -#: ../cache/locales.php:26 -msgid "Modl wasn't able to connect to the database" -msgstr "" - -#: ../cache/locales.php:27 -msgid "Movim is connected to the database" -msgstr "" - -#: ../cache/locales.php:28 -msgid "The database need to be updated" -msgstr "" - -#: ../cache/locales.php:29 -msgid "Movim database is up to date" -msgstr "" - -#: ../cache/locales.php:30 -msgid "Database Type" -msgstr "" - -#: ../cache/locales.php:31 ../cache/locales.php:50 ../cache/locales.php:540 -msgid "Username" -msgstr "" - -#: ../cache/locales.php:32 ../cache/locales.php:51 ../cache/locales.php:282 -#: ../cache/locales.php:541 +#: [account]password [db]password [credentials]password [form]password +#: [input]password msgid "Password" msgstr "Parola" -#: ../cache/locales.php:33 +#: [account]password_confirmation +#, fuzzy +msgid "Password confirmation" +msgstr "%s - Configurare" + +#: [account]password_changed +msgid "The password has been updated" +msgstr "" + +#: [account]password_not_valid +msgid "Please provide a valid password (6 characters minimum)" +msgstr "" + +#: [account]password_not_same +msgid "The provided passwords are not the same" +msgstr "" + +#: [account]delete_title +msgid "Delete my account" +msgstr "" + +#: [account]delete +msgid "Delete your account" +msgstr "" + +#: [account]delete_text +msgid "You will delete your XMPP account and all the relative information linked to it (profile, contacts and publications)." +msgstr "" + +#: [account]delete_text_confirm +msgid "Are you sure that you want to delete it ?" +msgstr "" + +#: [account]gateway_title +msgid "Gateway" +msgstr "" + +#: [create]title [subscribe]title +msgid "Create a new account" +msgstr "" + +#: [create]notfound +msgid "No account creation form found on the server" +msgstr "" + +#: [create]server_on +msgid "on" +msgstr "" + +#: [create]successfull +msgid "Your acccount has been successfully registered" +msgstr "" + +#: [create]loading +msgid "Loading" +msgstr "" + +#: [error]not_acceptable +msgid "Not Acceptable" +msgstr "" + +#: [error]service_unavailable +msgid "The registration system of this server is currently unavailable" +msgstr "" + +#: [oob]about +msgid "This server use an external system for the registration, please click on the following URL." +msgstr "" + +#: [adhoc]title +msgid "Actions" +msgstr "" + +#: [db]legend [schema]database +msgid "Database" +msgstr "" + +#: [db]connect_error +msgid "Modl wasn't able to connect to the database" +msgstr "" + +#: [db]connect_success +msgid "Movim is connected to the database" +msgstr "" + +#: [db]update +msgid "The database need to be updated" +msgstr "" + +#: [db]up_to_date +msgid "Movim database is up to date" +msgstr "" + +#: [db]type +msgid "Database Type" +msgstr "" + +#: [db]username [credentials]username [input]username +msgid "Username" +msgstr "" + +#: [db]host msgid "Host" msgstr "" -#: ../cache/locales.php:34 +#: [db]port msgid "Port" msgstr "" -#: ../cache/locales.php:35 -msgid "Database Name" +#: [db]name +msgid "Database sName" msgstr "" -#: ../cache/locales.php:36 +#: [admin]general msgid "General Settings" msgstr "" -#: ../cache/locales.php:37 +#: [general]theme msgid "Theme" msgstr "" -#: ../cache/locales.php:38 +#: [general]language msgid "Default language" msgstr "" -#: ../cache/locales.php:39 -msgid "Environment" -msgstr "" - -#: ../cache/locales.php:40 +#: [general]log_verbosity msgid "Log verbosity" msgstr "" -#: ../cache/locales.php:41 +#: [general]timezone msgid "Server Timezone" msgstr "" -#: ../cache/locales.php:42 +#: [general]limit msgid "User folder size limit (in bytes)" msgstr "" -#: ../cache/locales.php:43 +#: [websocket]title msgid "WebSocket Configuration" msgstr "" -#: ../cache/locales.php:44 +#: [websocket]info msgid "Enter here a valid WebSocket URI in the form" msgstr "" -#: ../cache/locales.php:45 +#: [websocket]label msgid "WebSocket URI" msgstr "" -#: ../cache/locales.php:46 -msgid "" -"If you change the URI, please restart the daemon to reload the configuration" +#: [websocket]save_info +msgid "If you change the URI, please restart the daemon to reload the configuration" msgstr "" -#: ../cache/locales.php:47 +#: [websocket]publics msgid "Public WebSockets" msgstr "" -#: ../cache/locales.php:48 +#: [credentials]title msgid "Administration Credential" msgstr "" -#: ../cache/locales.php:49 +#: [credentials]info msgid "Change the default credentials admin/password" msgstr "" -#: ../cache/locales.php:52 +#: [credentials]re_password msgid "Retype password" msgstr "" -#: ../cache/locales.php:53 +#: [whitelist]title msgid "Whitelist - XMPP Server" msgstr "" -#: ../cache/locales.php:54 -msgid "" -"If you want to specify a list of authorized XMPP servers on your Movim pod " -"and forbid the connection on all the others please put their domain name " -"here, with comma (ex: movim.eu,jabber.fr)" +#: [whitelist]info1 +msgid "If you want to specify a list of authorized XMPP servers on your Movim pod and forbid the connection on all the others please put their domain name here, with comma (ex: movim.eu,jabber.fr)" msgstr "" -#: ../cache/locales.php:55 -msgid "" -"Leave this field blank if you allow the access to all the XMPP accounts." +#: [whitelist]info2 +msgid "Leave this field blank if you allow the access to all the XMPP accounts." msgstr "" -#: ../cache/locales.php:56 +#: [whitelist]label msgid "List of whitelisted XMPP servers" msgstr "" -#: ../cache/locales.php:57 ../cache/locales.php:61 +#: [information]title +#, fuzzy +msgctxt "[information]title" msgid "Information Message" -msgstr "" +msgstr "Informatii generale" -#: ../cache/locales.php:58 +#: [information]description msgid "Description" msgstr "" -#: ../cache/locales.php:59 +#: [information]info1 msgid "This message will be displayed on the login page" msgstr "" -#: ../cache/locales.php:60 -msgid "Leave this field blank if you don't want to show any message." +#: [information]info2 +msgid "Leave this field blank if you dont want to show any message." msgstr "" -#: ../cache/locales.php:62 +#: [information]label +#, fuzzy +msgctxt "[information]label" +msgid "Information Message" +msgstr "Informatii generale" + +#: [log]empty msgid "Empty" msgstr "" -#: ../cache/locales.php:63 +#: [log]syslog msgid "Syslog" msgstr "" -#: ../cache/locales.php:64 +#: [log]syslog_files msgid "Syslog and files" msgstr "" -#: ../cache/locales.php:65 +#: [rewrite]title msgid "URL Rewriting" msgstr "" -#: ../cache/locales.php:66 +#: [rewrite]info msgid "The URL Rewriting can be enabled" msgstr "" -#: ../cache/locales.php:67 +#: [admin]compatibility msgid "General Overview" msgstr "" -#: ../cache/locales.php:68 -msgid "" -"Movim has found some issues or things that need to be fixed or improved" +#: [compatibility]info +msgid "Movim has found some issues or things that need to be fixed or improved" msgstr "" -#: ../cache/locales.php:69 -#, php-format +#: [compatibility]php1 msgid "Update your PHP-Version: %s" msgstr "" -#: ../cache/locales.php:70 +#: [compatibility]php2 msgid "Required: 5.3.0" msgstr "" -#: ../cache/locales.php:71 +#: [compatibility]curl msgid "Install the php5-curl library" msgstr "" -#: ../cache/locales.php:72 +#: [compatibility]imagick msgid "Install the php5-imagick library" msgstr "" -#: ../cache/locales.php:73 +#: [compatibility]gd msgid "Install the php5-gd library" msgstr "" -#: ../cache/locales.php:74 -msgid "Read and write rights for the webserver in Movim's root directory" +#: [compatibility]rights +msgid "Read and write rights for the webserver in Movims root directory" msgstr "" -#: ../cache/locales.php:75 +#: [compatibility]rewrite msgid "The URL Rewriting support is currently disabled" msgstr "" -#: ../cache/locales.php:76 +#: [compatibility]db msgid "The database need to be updated, go to the database panel to fix this" msgstr "" -#: ../cache/locales.php:77 -msgid "" -"WebSocket connection error, check if the Movim Daemon is running and is " -"reacheable" +#: [compatibility]websocket +msgid "WebSocket connection error, check if the Movim Daemon is running and is reachable" msgstr "" -#: ../cache/locales.php:78 -msgid "" -"XMPP Websocket connection error, please check the validity of the URL given " -"in the General Configuration" +#: [compatibility]xmpp_websocket +msgid "XMPP Websocket connection error, please check the validity of the URL given in the General Configuration" msgstr "" -#: ../cache/locales.php:79 +#: [schema]browser msgid "Browser" msgstr "" -#: ../cache/locales.php:80 +#: [schema]movim msgid "Movim Core" msgstr "" -#: ../cache/locales.php:81 +#: [schema]daemon msgid "Movim Daemon" msgstr "" -#: ../cache/locales.php:84 +#: [schema]xmpp msgid "XMPP" msgstr "" -#: ../cache/locales.php:86 -#, php-format -msgid "" -"Here you can register your pod on the official %sMovim API%s and be listed " -"on %sthe pods page%s." +#: [api]info +msgid "Here you can register your pod on the official %sMovim API%s and be listed on %sthe pods page%s." msgstr "" -#: ../cache/locales.php:87 +#: [api]register msgid "Your pod is not registered on the API" msgstr "" -#: ../cache/locales.php:88 +#: [api]registered msgid "Your pod is registered on the API" msgstr "" -#: ../cache/locales.php:89 +#: [api]wait msgid "Your pod is not yet validated" msgstr "" -#: ../cache/locales.php:90 +#: [api]validated msgid "Your pod is validated" msgstr "" -#: ../cache/locales.php:91 -msgid "" -"You asked to be removed from the API, this request will be processed in a " -"couple of hours" +#: [api]unregister +msgid "You asked to be removed from the API, this request will be processed in a couple of hours" msgstr "" -#: ../cache/locales.php:92 ../cache/locales.php:147 +#: [api]conf_updated [config]updated msgid "Configuration updated" msgstr "" -#: ../cache/locales.php:93 +#: [avatar]file msgid "File" msgstr "" -#: ../cache/locales.php:94 +#: [avatar]use_it msgid "Use it" msgstr "" -#: ../cache/locales.php:95 +#: [avatar]webcam msgid "Webcam" msgstr "" -#: ../cache/locales.php:96 +#: [avatar]cheese msgid "Cheese !" msgstr "" -#: ../cache/locales.php:97 +#: [avatar]snapshot msgid "Take a webcam snapshot" msgstr "" -#: ../cache/locales.php:98 +#: [avatar]updated msgid "Avatar Updated" msgstr "" -#: ../cache/locales.php:99 +#: [avatar]not_updated msgid "Avatar Not Updated" msgstr "" -#: ../cache/locales.php:100 ../cache/locales.php:415 -#, php-format +#: [blog]title [feed]title msgid "%s's feed" msgstr "" -#: ../cache/locales.php:101 +#: [blog]empty msgid "This user has not posted anything right now" msgstr "" -#: ../cache/locales.php:102 +#: [title]conferences msgid "Conferences" msgstr "" -#: ../cache/locales.php:103 ../cache/locales.php:193 ../cache/locales.php:217 -#: ../cache/locales.php:468 +#: [title]groups [group]empty_title [menu]groups [page]groups msgid "Groups" msgstr "" -#: ../cache/locales.php:104 +#: [chatroom]add msgid "Add a new Chat Room" msgstr "" -#: ../cache/locales.php:105 ../cache/locales.php:368 +#: [chatroom]id [chatrooms]id msgid "Chat Room ID" msgstr "" -#: ../cache/locales.php:106 ../cache/locales.php:116 ../cache/locales.php:156 -#: ../cache/locales.php:361 ../cache/locales.php:369 ../cache/locales.php:424 +#: [chatroom]name +#, fuzzy +msgctxt "[chatroom]name" msgid "Name" msgstr "Nume" -#: ../cache/locales.php:107 ../cache/locales.php:157 ../cache/locales.php:371 -#: ../cache/locales.php:425 +#: [chatroom]nickname [general]nickname [chatrooms]nickname msgid "Nickname" msgstr "Porecla" -#: ../cache/locales.php:108 +#: [chatroom]autojoin_label msgid "Do you want do join automaticaly this Chat Room ?" msgstr "" -#: ../cache/locales.php:109 ../cache/locales.php:372 +#: [chatroom]bad_id [chatrooms]bad_id msgid "Bad Chatroom ID" msgstr "" -#: ../cache/locales.php:110 ../cache/locales.php:373 +#: [chatroom]empty_name [chatrooms]empty_name msgid "Empty name" msgstr "" -#: ../cache/locales.php:111 ../cache/locales.php:380 +#: [bookmarks]updated msgid "Bookmarks updated" msgstr "" -#: ../cache/locales.php:112 -msgid "An error occured : " +#: [bookmarks]error +msgid "An error occured :" msgstr "" -#: ../cache/locales.php:113 +#: [bookmarks]configure msgid "Configure" msgstr "" -#: ../cache/locales.php:114 +#: [url]add msgid "Add a new URL" msgstr "" -#: ../cache/locales.php:115 +#: [url]url msgid "URL" msgstr "" -#: ../cache/locales.php:117 +#: [url]name +#, fuzzy +msgctxt "[url]name" +msgid "Name" +msgstr "Nume" + +#: [message]published msgid "Message Published" msgstr "" -#: ../cache/locales.php:118 ../cache/locales.php:138 +#: [message]encrypted msgid "Encrypted message" msgstr "" -#: ../cache/locales.php:119 +#: [message]composing [chats]composing msgid "Composing..." msgstr "" -#: ../cache/locales.php:120 +#: [message]paused [chats]paused msgid "Paused..." msgstr "" -#: ../cache/locales.php:121 +#: [message]gone msgid "Contact gone" msgstr "" -#: ../cache/locales.php:122 -#, php-format +#: [chat]attention msgid "%s needs your attention" msgstr "" -#: ../cache/locales.php:123 +#: [chat]placeholder msgid "Your message here..." msgstr "" -#: ../cache/locales.php:124 +#: [chat]smileys msgid "Smileys" msgstr "" -#: ../cache/locales.php:125 ../cache/locales.php:139 +#: [chat]empty_title [button]chat msgid "Chat" msgstr "Chat" -#: ../cache/locales.php:126 +#: [chat]empty_text msgid "Discuss with your contacts" msgstr "" -#: ../cache/locales.php:127 -msgid "Members" -msgstr "" - -#: ../cache/locales.php:128 ../cache/locales.php:376 -msgid "Connected to the chatroom" -msgstr "" - -#: ../cache/locales.php:129 ../cache/locales.php:377 -msgid "Disconnected from the chatroom" -msgstr "" - -#: ../cache/locales.php:130 ../cache/locales.php:200 ../cache/locales.php:469 -msgid "Configuration" -msgstr "Configurare" - -#: ../cache/locales.php:131 -msgid "Configuration saved" -msgstr "" - -#: ../cache/locales.php:132 -msgid "Subject" -msgstr "" - -#: ../cache/locales.php:133 -msgid "Subject changed" -msgstr "" - -#: ../cache/locales.php:134 -msgid "Open a new conversation by clicking on the plus button bellow" -msgstr "" - -#: ../cache/locales.php:135 -msgid "Chat with a contact" -msgstr "" - -#: ../cache/locales.php:136 +#: [chat]frequent [chats]frequent msgid "Frequent contacts" msgstr "" -#: ../cache/locales.php:137 +#: [chatroom]members +msgid "Members" +msgstr "" + +#: [chatroom]connected [chatrooms]connected +msgid "Connected to the chatroom" +msgstr "" + +#: [chatroom]disconnected [chatrooms]disconnected +msgid "Disconnected from the chatroom" +msgstr "" + +#: [chatroom]config [group]configuration [page]configuration +msgid "Configuration" +msgstr "Configurare" + +#: [chatroom]config_saved +msgid "Configuration saved" +msgstr "" + +#: [chatroom]subject +msgid "Subject" +msgstr "" + +#: [chatroom]subject_changed +msgid "Subject changed" +msgstr "" + +#: [chats]empty_title +msgid "No chats yet..." +msgstr "" + +#: [chats]empty +msgid "Open a new conversation by clicking on the plus button bellow or visit the Contacts page." +msgstr "" + +#: [chats]add +msgid "Chat with a contact" +msgstr "" + +#: [chats]more msgid "Load more contacts" msgstr "" -#: ../cache/locales.php:140 -msgid "General" -msgstr "" - -#: ../cache/locales.php:141 -msgid "Language" -msgstr "Limba" - -#: ../cache/locales.php:142 -msgid "Roster display" -msgstr "" - -#: ../cache/locales.php:143 -msgid "Show the offline contacts" -msgstr "" - -#: ../cache/locales.php:144 -msgid "Hide the offline contacts" -msgstr "" - -#: ../cache/locales.php:145 -msgid "Appearence" -msgstr "" - -#: ../cache/locales.php:146 -msgid "This configuration is shared wherever you are connected !" -msgstr "" - -#: ../cache/locales.php:148 -msgid "Notify on incoming message" -msgstr "" - -#: ../cache/locales.php:149 -msgid "Use desktop notifications" -msgstr "" - -#: ../cache/locales.php:150 +#: [title]data msgid "Data" msgstr "" -#: ../cache/locales.php:151 +#: [title]cache msgid "Cache" msgstr "" -#: ../cache/locales.php:152 ../cache/locales.php:218 ../cache/locales.php:466 +#: [title]contacts [menu]contacts [page]contacts msgid "Contacts" msgstr "" -#: ../cache/locales.php:153 ../cache/locales.php:480 +#: [title]posts [page]posts msgid "Posts" msgstr "" -#: ../cache/locales.php:154 +#: [title]messages msgid "Messages" msgstr "" -#: ../cache/locales.php:155 ../cache/locales.php:423 +#: [config]general +msgid "General" +msgstr "" + +#: [config]language +msgid "Language" +msgstr "Limba" + +#: [config]roster +msgid "Roster display" +msgstr "" + +#: [config]roster_show +msgid "Show the offline contacts" +msgstr "" + +#: [config]roster_hide +msgid "Hide the offline contacts" +msgstr "" + +#: [config]appearence +msgid "Appearence" +msgstr "" + +#: [config]info +msgid "This configuration is shared wherever you are connected" +msgstr "" + +#: [notifications]message +msgid "Notify on incoming message" +msgstr "" + +#: [notifications]desktop +msgid "Use desktop notifications" +msgstr "" + +#: [general]legend [general]general_title msgid "General Informations" msgstr "Informatii generale" -#: ../cache/locales.php:158 ../cache/locales.php:427 +#: [general]name [public_groups]name [chatrooms]name +msgid "Name" +msgstr "Nume" + +#: [general]date_of_birth msgid "Date of Birth" msgstr "Data nasterii" -#: ../cache/locales.php:159 ../cache/locales.php:428 +#: [general]gender msgid "Gender" msgstr "" -#: ../cache/locales.php:160 ../cache/locales.php:429 +#: [general]marital msgid "Marital Status" msgstr "" -#: ../cache/locales.php:161 ../cache/locales.php:426 +#: [general]email msgid "Email" msgstr "" -#: ../cache/locales.php:162 ../cache/locales.php:430 +#: [general]website msgid "Website" msgstr "Website" -#: ../cache/locales.php:163 ../cache/locales.php:431 +#: [general]about msgid "About Me" msgstr "" -#: ../cache/locales.php:164 +#: [general]accounts msgid "Other Accounts" msgstr "" -#: ../cache/locales.php:165 +#: [general]tune msgid "Is Listening" msgstr "" -#: ../cache/locales.php:166 ../cache/locales.php:432 +#: [position]legend [position]position_title msgid "Geographic Position" msgstr "" -#: ../cache/locales.php:167 ../cache/locales.php:433 +#: [position]locality msgid "Locality" msgstr "" -#: ../cache/locales.php:168 ../cache/locales.php:434 +#: [position]country msgid "Country" msgstr "" -#: ../cache/locales.php:169 +#: [mood]title msgid "Mood" msgstr "" -#: ../cache/locales.php:170 +#: [mood]im msgid "I'm " msgstr "" -#: ../cache/locales.php:171 +#: [listen]title msgid "Listening" msgstr "" -#: ../cache/locales.php:173 +#: [last]title msgid "Last seen" msgstr "" -#: ../cache/locales.php:174 +#: [client]title msgid "Client Informations" msgstr "" -#: ../cache/locales.php:175 +#: [explore]last_registered msgid "Last registered" msgstr "" -#: ../cache/locales.php:176 +#: [explore]explore msgid "Find some new friends" msgstr "" -#: ../cache/locales.php:177 ../cache/locales.php:533 +#: [edit]title [button]edit msgid "Edit" msgstr "" -#: ../cache/locales.php:178 +#: [edit]alias msgid "Alias" msgstr "Alias" -#: ../cache/locales.php:179 +#: [edit]group msgid "Group" msgstr "" -#: ../cache/locales.php:180 ../cache/locales.php:400 +#: [edit]updated [roster]updated msgid "Contact updated" msgstr "" -#: ../cache/locales.php:181 +#: [delete]title msgid "Are you sure?" msgstr "" -#: ../cache/locales.php:182 -msgid "" -"You are going to delete one of your contacts, please confirm your action" +#: [delete]text +msgid "You are going to delete one of your contacts, please confirm your action" msgstr "" -#: ../cache/locales.php:183 -#, php-format +#: [age]years msgid "%s years" msgstr "" -#: ../cache/locales.php:184 +#: [blog]last msgid "Last public post" msgstr "" -#: ../cache/locales.php:185 +#: [subscription]to +#, fuzzy +msgid "You can see this contact status" +msgstr "Sterge acest contact" + +#: [subscription]to_button +msgid "Share my status" +msgstr "" + +#: [subscription]to_text +msgid "But this contact cannot see yours" +msgstr "" + +#: [subscription]from +msgid "You are not subscribed to this contact" +msgstr "" + +#: [subscription]from_button +msgid "Ask to subscribe" +msgstr "" + +#: [subscription]from_text +msgid "But this contact can still see if you are online" +msgstr "" + +#: [subscription]nil +msgid "No subscriptions" +msgstr "" + +#: [subscription]nil_button +msgid "Invite" +msgstr "" + +#: [subscription]nil_text +msgid "This contact is in your contact list but there is no subscriptions between the two accounts" +msgstr "" + +#: [group]subscribe msgid "Subscribe" msgstr "" -#: ../cache/locales.php:186 +#: [group]subscribed msgid "Subscribed" msgstr "" -#: ../cache/locales.php:187 +#: [group]unsubscribe msgid "Unsubscribe" msgstr "" -#: ../cache/locales.php:188 +#: [group]unsubscribe_text msgid "You are going to unsubscribe from this Group" msgstr "" -#: ../cache/locales.php:189 +#: [group]unsubscribed msgid "Unsubscribed" msgstr "" -#: ../cache/locales.php:190 +#: [group]share_label msgid "Make your membership to this group public to your friends" msgstr "" -#: ../cache/locales.php:191 +#: [group]label_label msgid "Give a label for this group" msgstr "" -#: ../cache/locales.php:192 +#: [group]sure msgid "Are you sure ?" msgstr "" -#: ../cache/locales.php:194 +#: [group]empty_text msgid "Discover, follow and share" msgstr "" -#: ../cache/locales.php:195 +#: [group]empty msgid "Something bad happened to this group" msgstr "" -#: ../cache/locales.php:196 +#: [group]config_saved msgid "Group configuration saved" msgstr "" -#: ../cache/locales.php:197 +#: [group]delete_title msgid "Delete the group" msgstr "" -#: ../cache/locales.php:198 -msgid "" -"You are going to delete the following group. Please confirm your action." +#: [group]delete_text +msgid "You are going to delete the following group. Please confirm your action." msgstr "" -#: ../cache/locales.php:199 -msgid "" -"It seems that this group doesn't exists anymore. Do you want to remove it " -"from your subscriptions?" +#: [group]delete_clean_text +msgid "It seems that this group doesn't exists anymore. Do you want to remove it from your subscriptions?" msgstr "" -#: ../cache/locales.php:201 ../cache/locales.php:408 +#: [group]counter +msgid "%s groups on this server" +msgstr "" + +#: [group]subscriptions [statistics]subscriptions msgid "Subscriptions" msgstr "" -#: ../cache/locales.php:202 ../cache/locales.php:290 +#: [group]servers +msgid "Groups servers" +msgstr "" + +#: [group]search_server +msgid "Search for a new server" +msgstr "" + +#: [group]help_info1 +msgid "Groups are the perfect way to share posts about topics that you like with all the other Movim's users." +msgstr "" + +#: [group]help_info2 +msgid "Choose a server and a Group and subscribe to it using the %s button in the header. You can also create a new one using the %s button." +msgstr "" + +#: [group]help_info3 +msgid "Done? You can now publish a new post in the Group by using the %s button." +msgstr "" + +#: [group]help_info4 +msgid "You will find a list of all your subscribed Groups in My Subscriptions and receive instantly all the new incoming posts in the %sNews%s page." +msgstr "" + +#: [groups]empty_title msgid "Hello" msgstr "" -#: ../cache/locales.php:203 ../cache/locales.php:225 ../cache/locales.php:291 +#: [groups]contact_post [hello]contact_post [menu]contact_post msgid "Contact post" msgstr "" -#: ../cache/locales.php:204 -msgid "" -"You don't have any subscriptions yet, select a group server above to start " -"exploring." +#: [groups]empty_text1 +msgid "You don't have any subscriptions yet, select a group server above to start exploring." msgstr "" -#: ../cache/locales.php:205 +#: [groups]empty_text2 msgid "Subscribe to your favorite feeds by bookmarking them." msgstr "" -#: ../cache/locales.php:206 +#: [groups]subscriptions msgid "My Subscriptions" msgstr "" -#: ../cache/locales.php:207 +#: [groups]add msgid "Create a new Group" msgstr "" -#: ../cache/locales.php:208 +#: [groups]name msgid "Group name" msgstr "" -#: ../cache/locales.php:209 +#: [groups]name_example msgid "My Little Pony - Fan Club" msgstr "" -#: ../cache/locales.php:210 +#: [groups]created msgid "Group created successfully" msgstr "" -#: ../cache/locales.php:211 +#: [groups]deleted msgid "Group deleted successfully" msgstr "" -#: ../cache/locales.php:212 +#: [groups]name_error msgid "Please provide a valid group name (4 characters minimum)" msgstr "" -#: ../cache/locales.php:213 +#: [groups]no_creation msgid "You cannot create a new Group on this server" msgstr "" -#: ../cache/locales.php:214 -#, php-format +#: [groups]sub msgid "%s subscribers" msgstr "" -#: ../cache/locales.php:215 -#, php-format +#: [groups]num msgid "%s posts" msgstr "" -#: ../cache/locales.php:216 +#: [groups]disco_error +msgid "This server doesn't exists" +msgstr "" + +#: [menu]all msgid "All" msgstr "" -#: ../cache/locales.php:219 +#: [menu]refresh msgid "Refresh all the streams" msgstr "" -#: ../cache/locales.php:220 ../cache/locales.php:402 -msgid "Search" +#: [roster]search +msgid "Search in your contacts" msgstr "" -#: ../cache/locales.php:221 +#: [hello]active_contacts +msgid "Active contacts" +msgstr "" + +#: [hello]chat msgid "Go on the Chat page" msgstr "" -#: ../cache/locales.php:222 -msgid "Read all theses articles on the News page" -msgstr "" - -#: ../cache/locales.php:223 -msgid "Visit your public blog" -msgstr "" - -#: ../cache/locales.php:224 -msgid "See your public posts and share them with all your contacts" -msgstr "" - -#: ../cache/locales.php:226 -msgid "Universal share button" -msgstr "" - -#: ../cache/locales.php:227 -msgid "" -"Bookmark or drag and drop the following button in your toolbar and use it on " -"all the pages you want to share on Movim" -msgstr "" - -#: ../cache/locales.php:228 -msgid "Share on Movim" -msgstr "" - -#: ../cache/locales.php:229 -msgid "Frequently Asked Questions" -msgstr "" - -#: ../cache/locales.php:230 -msgid "What do the little banners refer to ?" -msgstr "" - -#: ../cache/locales.php:231 -msgid "" -"Thanks to these five little banners, you can quickly identitfy the level of " -"confdentiality applied to the information you provide." -msgstr "" - -#: ../cache/locales.php:232 -msgid "White, only you can see the information" -msgstr "" - -#: ../cache/locales.php:233 -msgid "Green, you have chosen some contacts who can see your information" -msgstr "" - -#: ../cache/locales.php:234 -msgid "Orange, all your contact list can see your information" -msgstr "" - -#: ../cache/locales.php:235 -msgid "Red, everybody in the XMPP network can see your information" -msgstr "" - -#: ../cache/locales.php:236 -msgid "Black, the whole Internet can see your information" -msgstr "" - -#: ../cache/locales.php:237 -msgid "Looking for some documentation ?" -msgstr "" - -#: ../cache/locales.php:238 -msgid "Read the Wiki" -msgstr "" - -#: ../cache/locales.php:239 -msgid "Talk with us by email ?" -msgstr "" - -#: ../cache/locales.php:240 -msgid "Join the Mailing List" -msgstr "" - -#: ../cache/locales.php:241 -msgid "Chat with the team ?" -msgstr "" - -#: ../cache/locales.php:242 -msgid "Join the Chatroom" -msgstr "" - -#: ../cache/locales.php:243 -msgid "Location node created" -msgstr "" - -#: ../cache/locales.php:244 -msgid "Bookmark node created" -msgstr "" - -#: ../cache/locales.php:245 -msgid "Profile node created" -msgstr "" - -#: ../cache/locales.php:246 -msgid "Avatar node created" -msgstr "" - -#: ../cache/locales.php:247 -msgid "Subscriptions node created" -msgstr "" - -#: ../cache/locales.php:248 -msgid "Microblog node created" -msgstr "" - -#: ../cache/locales.php:249 -msgid "Location" -msgstr "" - -#: ../cache/locales.php:250 -msgid "Wrong position" -msgstr "" - -#: ../cache/locales.php:251 -msgid "Location updated" -msgstr "" - -#: ../cache/locales.php:252 -msgid "Update my position" -msgstr "" - -#: ../cache/locales.php:253 -msgid "Wrong username" -msgstr "" - -#: ../cache/locales.php:254 -msgid "Invalid JID" -msgstr "" - -#: ../cache/locales.php:255 -msgid "Empty Challenge from the server" -msgstr "" - -#: ../cache/locales.php:256 -msgid "XMPP Domain error, your account is not a correct Jabber ID" -msgstr "" - -#: ../cache/locales.php:257 -msgid "Some data are missing !" -msgstr "" - -#: ../cache/locales.php:258 -msgid "Wrong password" -msgstr "Parola gresita" - -#: ../cache/locales.php:259 -msgid "Internal server error" -msgstr "" - -#: ../cache/locales.php:260 -msgid "Session error" -msgstr "" - -#: ../cache/locales.php:261 -msgid "Account successfully created" -msgstr "" - -#: ../cache/locales.php:262 ../cache/locales.php:271 -msgid "Your XMPP server is unauthorized" -msgstr "" - -#: ../cache/locales.php:263 -msgid "The server takes too much time to respond" -msgstr "" - -#: ../cache/locales.php:264 -msgid "Your web browser is too old to use with Movim." -msgstr "" - -#: ../cache/locales.php:265 -msgid "" -"Movim cannot talk with the server, please try again later (Websocket " -"connection error)" -msgstr "" - -#: ../cache/locales.php:266 -msgid "Impossible login" -msgstr "" - -#: ../cache/locales.php:267 -msgid "Oops!" -msgstr "" - -#: ../cache/locales.php:268 ../cache/locales.php:449 ../cache/locales.php:455 -msgid "Unknown error" -msgstr "" - -#: ../cache/locales.php:269 -msgid "Invalid username format" -msgstr "" - -#: ../cache/locales.php:270 -msgid "Invalid password format" -msgstr "" - -#: ../cache/locales.php:272 -msgid "A Movim session is already open on an other device" -msgstr "" - -#: ../cache/locales.php:273 -msgid "Movim failed to authenticate. You entered wrong data" -msgstr "" - -#: ../cache/locales.php:274 -msgid "Authentication mechanism not supported by Movim" -msgstr "" - -#: ../cache/locales.php:275 -msgid "The XMPP authentification failed" -msgstr "" - -#: ../cache/locales.php:276 -#, php-format -msgid "" -"You can login with Facebook (chat only) using %syour.id@chat.facebook.com%s " -"and your password" -msgstr "" - -#: ../cache/locales.php:277 -#, php-format -msgid "%sGmail accounts are also compatible%s but are not fully supported" -msgstr "" - -#: ../cache/locales.php:278 -msgid "You can login using your favorite Jabber account" -msgstr "" - -#: ../cache/locales.php:279 -msgid "or with our demonstration account" -msgstr "" - -#: ../cache/locales.php:280 ../cache/locales.php:435 -msgid "Accounts" -msgstr "" - -#: ../cache/locales.php:281 -msgid "My address" -msgstr "Adresa mea" - -#: ../cache/locales.php:283 -msgid "Create one !" -msgstr "" - -#: ../cache/locales.php:284 -msgid "No account yet ?" -msgstr "" - -#: ../cache/locales.php:285 -msgid "Another account" -msgstr "" - -#: ../cache/locales.php:286 -msgid "You can login with accounts from theses servers" -msgstr "" - -#: ../cache/locales.php:287 -msgid "Connected" -msgstr "" - -#: ../cache/locales.php:288 -msgid "Population" -msgstr "" - -#: ../cache/locales.php:289 -msgid "Bad nickname (between 4 and 40 characters)" -msgstr "" - -#: ../cache/locales.php:292 -msgid "" -"Welcome on your news feed, here you will see all the posts published in the " -"groups you have subscribed." -msgstr "" - -#: ../cache/locales.php:293 -msgid "Refreshing all the streams" -msgstr "" - -#: ../cache/locales.php:294 -msgid "This post is public" -msgstr "" - -#: ../cache/locales.php:295 -msgid "Manage your members" -msgstr "" - -#: ../cache/locales.php:296 -msgid "Get the members" -msgstr "" - -#: ../cache/locales.php:297 -msgid "Affiliations saved" -msgstr "" - -#: ../cache/locales.php:298 -msgid "Manage your subscriptions" -msgstr "" - -#: ../cache/locales.php:299 -msgid "Manage the subscriptions" -msgstr "" - -#: ../cache/locales.php:300 -msgid "Get the subscriptions" -msgstr "" - -#: ../cache/locales.php:301 -msgid "Subscriptions saved" -msgstr "" - -#: ../cache/locales.php:302 -msgid "Pending Invitations" -msgstr "" - -#: ../cache/locales.php:303 -#, php-format -msgid "%s wants to talk with you" -msgstr "" - -#: ../cache/locales.php:304 -msgid "Manage" -msgstr "" - -#: ../cache/locales.php:305 ../cache/locales.php:338 -msgid "News Feed" -msgstr "" - -#: ../cache/locales.php:306 ../cache/locales.php:339 -msgid "Discover and register to the groups you are interested in" -msgstr "" - -#: ../cache/locales.php:307 ../cache/locales.php:340 ../cache/locales.php:482 -msgid "Preview" -msgstr "" - -#: ../cache/locales.php:308 ../cache/locales.php:341 ../cache/locales.php:478 -msgid "Help" -msgstr "" - -#: ../cache/locales.php:309 ../cache/locales.php:342 -msgid "More help" -msgstr "" - -#: ../cache/locales.php:310 ../cache/locales.php:343 -msgid "Markdown syntax manual" -msgstr "" - -#: ../cache/locales.php:311 ../cache/locales.php:344 ../cache/locales.php:681 -msgid "Title" -msgstr "" - -#: ../cache/locales.php:312 ../cache/locales.php:345 -msgid "Content" -msgstr "" - -#: ../cache/locales.php:313 ../cache/locales.php:346 -msgid "Link" -msgstr "" - -#: ../cache/locales.php:314 ../cache/locales.php:347 -msgid "Tags" -msgstr "" - -#: ../cache/locales.php:315 ../cache/locales.php:348 -msgid "Please enter a valid url" -msgstr "" - -#: ../cache/locales.php:316 ../cache/locales.php:349 -msgid "No content to preview" -msgstr "" - -#: ../cache/locales.php:317 ../cache/locales.php:350 ../cache/locales.php:687 -msgid "No content" -msgstr "" - -#: ../cache/locales.php:318 ../cache/locales.php:351 -msgid "Post published" -msgstr "" - -#: ../cache/locales.php:319 ../cache/locales.php:352 -msgid "Post deleted" -msgstr "" - -#: ../cache/locales.php:320 ../cache/locales.php:353 -msgid "This picture will be added to your gallery" -msgstr "" - -#: ../cache/locales.php:321 ../cache/locales.php:354 -msgid "What's Hot" -msgstr "" - -#: ../cache/locales.php:322 ../cache/locales.php:355 -msgid "New post" -msgstr "" - -#: ../cache/locales.php:323 ../cache/locales.php:357 -msgid "" -"You can also use services like Imgur or Flickr to host your picture and " -"paste the link here." -msgstr "" - -#: ../cache/locales.php:324 -#, php-format -msgid "This is a re-post from %s" -msgstr "" - -#: ../cache/locales.php:325 -#, php-format -msgid "See %s profile" -msgstr "" - -#: ../cache/locales.php:326 -msgid "Publish this post on your public feed?" -msgstr "" - -#: ../cache/locales.php:327 -msgid "Post published on your blog" -msgstr "" - -#: ../cache/locales.php:328 -msgid "Post removed from your blog" -msgstr "" - -#: ../cache/locales.php:329 ../cache/locales.php:701 -msgid "Delete this post" -msgstr "" - -#: ../cache/locales.php:330 -msgid "You are going to delete this post, please confirm your action" -msgstr "" - -#: ../cache/locales.php:331 -msgid "Comments disabled" -msgstr "" - -#: ../cache/locales.php:332 -msgid "Comment published" -msgstr "" - -#: ../cache/locales.php:333 -msgid "Disconnect" -msgstr "" - -#: ../cache/locales.php:334 -msgid "Your status here !" -msgstr "" - -#: ../cache/locales.php:335 -msgid "Status updated" -msgstr "" - -#: ../cache/locales.php:336 -msgid "Status" -msgstr "" - -#: ../cache/locales.php:337 -msgid "Presence" -msgstr "" - -#: ../cache/locales.php:356 -msgid "Publish" -msgstr "" - -#: ../cache/locales.php:358 -msgid "You cannot publish a post on this Group" -msgstr "" - -#: ../cache/locales.php:359 -msgid "" -"Some fields have been filled in. Do you still want to go back and loose " -"their content?" -msgstr "" - -#: ../cache/locales.php:360 -msgid "Shared" -msgstr "" - -#: ../cache/locales.php:362 -#, php-format -msgid "%s has been added to your public groups" -msgstr "" - -#: ../cache/locales.php:363 -#, php-format -msgid "%s has been removed from your public groups" -msgstr "" - -#: ../cache/locales.php:364 -msgid "Add a chatroom" -msgstr "" - -#: ../cache/locales.php:365 -msgid "You don't have any chatroom yet." -msgstr "" - -#: ../cache/locales.php:366 -msgid "Add one by clicking on the add button in the header." -msgstr "" - -#: ../cache/locales.php:367 -msgid "Chatrooms" -msgstr "" - -#: ../cache/locales.php:370 -msgid "My Favorite Room" -msgstr "" - -#: ../cache/locales.php:374 -msgid "Remove a chatroom" -msgstr "" - -#: ../cache/locales.php:375 -msgid "" -"You are going to remove the following chatroom. Please confirm your action." -msgstr "" - -#: ../cache/locales.php:378 -msgid "Users in the room" -msgstr "" - -#: ../cache/locales.php:379 -msgid "Please enter a correct nickname (6 to 40 characters)" -msgstr "" - -#: ../cache/locales.php:381 -msgid "Public chatroom" -msgstr "" - -#: ../cache/locales.php:382 -msgid "Please provide a room address" -msgstr "" - -#: ../cache/locales.php:383 -msgid "You are currently logued as an anonymous user." -msgstr "" - -#: ../cache/locales.php:384 -msgid "" -"You can join using your own account or create one on the login page by " -"loging out using the cross in the top-right corner." -msgstr "" - -#: ../cache/locales.php:385 -#, php-format -msgid "Login on %s" -msgstr "" - -#: ../cache/locales.php:386 -msgid "Your nickname" -msgstr "" - -#: ../cache/locales.php:387 -msgid "Ungrouped" -msgstr "" - -#: ../cache/locales.php:388 -msgid "Show disconnected contacts" -msgstr "" - -#: ../cache/locales.php:389 -msgid "Hide disconnected contacts" -msgstr "" - -#: ../cache/locales.php:390 -#, php-format -msgid "Show group %s" -msgstr "" - -#: ../cache/locales.php:391 -#, php-format -msgid "Hide group %s" -msgstr "" - -#: ../cache/locales.php:392 -msgid "Please enter a valid Jabber ID" -msgstr "" - -#: ../cache/locales.php:393 -msgid "" -"No contacts ? You can add one using the + button bellow or going to the " -"Explore page" -msgstr "" - -#: ../cache/locales.php:394 -msgid "Show/Hide" -msgstr "" - -#: ../cache/locales.php:395 -msgid "Enter the Jabber ID of your contact." -msgstr "" - -#: ../cache/locales.php:396 -msgid "Press enter to validate." -msgstr "" - -#: ../cache/locales.php:397 -msgid "JID" -msgstr "" - -#: ../cache/locales.php:398 -msgid "Results" -msgstr "" - -#: ../cache/locales.php:399 -msgid "Contact added" -msgstr "" - -#: ../cache/locales.php:401 -msgid "Contact deleted" -msgstr "" - -#: ../cache/locales.php:403 -msgid "This is not a valid url" -msgstr "" - -#: ../cache/locales.php:404 -msgid "Sharing the URL" -msgstr "" - -#: ../cache/locales.php:405 -msgid "Statistics" -msgstr "" - -#: ../cache/locales.php:406 -msgid "Since" -msgstr "" - -#: ../cache/locales.php:407 -msgid "Sessions" -msgstr "" - -#: ../cache/locales.php:409 -msgid "Monthly Subscriptions" -msgstr "" - -#: ../cache/locales.php:410 -msgid "Monthly Subscriptions Cumulated" -msgstr "" - -#: ../cache/locales.php:412 -msgid "" -"Movim is a decentralized social network, before creating a new account you " -"need to choose a server to register." -msgstr "" - -#: ../cache/locales.php:413 -msgid "Your server here ?" -msgstr "" - -#: ../cache/locales.php:414 -msgid "Contact us to add yours to the officially supported servers list" -msgstr "" - -#: ../cache/locales.php:416 -msgid "No public feed for this contact" -msgstr "" - -#: ../cache/locales.php:417 -msgid "No contact specified" -msgstr "" - -#: ../cache/locales.php:418 ../cache/locales.php:473 -msgid "Profile" -msgstr "Profil" - -#: ../cache/locales.php:419 -msgid "Profile Updated" -msgstr "" - -#: ../cache/locales.php:420 -msgid "Profile Not Updated" -msgstr "" - -#: ../cache/locales.php:421 -msgid "Your profile is now public" -msgstr "" - -#: ../cache/locales.php:422 -msgid "Your profile is now restricted" -msgstr "" - -#: ../cache/locales.php:436 -msgid "Twitter" -msgstr "" - -#: ../cache/locales.php:437 -msgid "Skype" -msgstr "" - -#: ../cache/locales.php:438 -msgid "Yahoo" -msgstr "" - -#: ../cache/locales.php:439 -msgid "Privacy Level" -msgstr "" - -#: ../cache/locales.php:440 -msgid "Is this profile public ?" -msgstr "" - -#: ../cache/locales.php:441 -msgid "" -"Please pay attention ! By making your profile public, all the information " -"listed above will be available for all the Movim users and on the whole " -"Internet." -msgstr "" - -#: ../cache/locales.php:442 -msgid "Call" -msgstr "" - -#: ../cache/locales.php:443 -msgid "Hang up" -msgstr "" - -#: ../cache/locales.php:444 -msgid "Connection" -msgstr "" - -#: ../cache/locales.php:445 ../cache/locales.php:451 -msgid "Hung up" -msgstr "" - -#: ../cache/locales.php:446 ../cache/locales.php:452 -msgid "Your contact is busy" -msgstr "" - -#: ../cache/locales.php:447 ../cache/locales.php:453 -msgid "Declined" -msgstr "" - -#: ../cache/locales.php:448 ../cache/locales.php:454 -msgid "Remote application incompatible" -msgstr "" - -#: ../cache/locales.php:450 ../cache/locales.php:456 -msgid "Is calling you" -msgstr "" - -#: ../cache/locales.php:457 -msgid "You don't have javascript enabled. Good luck with that." -msgstr "" - -#: ../cache/locales.php:458 -msgid "" -"Movim is a kickass distributed social networking platform that protect your " -"privacy an comes with a set of awesome features." -msgstr "" - -#: ../cache/locales.php:459 -msgid "Administration" -msgstr "" - -#: ../cache/locales.php:460 -msgid "Home" -msgstr "Pagina Principala" - -#: ../cache/locales.php:461 -msgid "Discover" -msgstr "" - -#: ../cache/locales.php:462 -msgid "Explore" -msgstr "" - -#: ../cache/locales.php:463 -msgid "Account Creation" -msgstr "Cont nou" - -#: ../cache/locales.php:464 +#: [hello]news [page]news msgid "News" msgstr "" -#: ../cache/locales.php:465 -msgid "Avatar" -msgstr "Avatar" - -#: ../cache/locales.php:467 -msgid "Chats" +#: [hello]news_page +msgid "Read all theses articles on the News page" msgstr "" -#: ../cache/locales.php:470 -msgid "Server" +#: [hello]blog_title +msgid "Visit your public blog" msgstr "" -#: ../cache/locales.php:471 -msgid "Public Groups" +#: [hello]blog_text +msgid "See your public posts and share them with all your contacts" msgstr "" -#: ../cache/locales.php:472 -msgid "Viewer" +#: [hello]share_title +msgid "Universal share button" msgstr "" -#: ../cache/locales.php:474 -msgid "Media" +#: [hello]share_text +msgid "Bookmark or drag and drop the following button in your toolbar and use it on all the pages you want to share on Movim" msgstr "" -#: ../cache/locales.php:475 -msgid "Blog" +#: [hello]share_button +msgid "Share on Movim" msgstr "" -#: ../cache/locales.php:476 -msgid "About" +#: [help]faq +msgid "Frequently Asked Questions" msgstr "" -#: ../cache/locales.php:477 -msgid "Login" +#: [banner]title +msgid "What do the little banners refer to ?" msgstr "" -#: ../cache/locales.php:479 -msgid "Feed" +#: [banner]info1 +msgid "Thanks to these five little banners, you can quickly identitfy the level of confdentiality applied to the information you provide." msgstr "" -#: ../cache/locales.php:481 -msgid "Gallery" +#: [banner]white +msgid "White, only you can see the information" msgstr "" -#: ../cache/locales.php:483 -msgid "Visio-conference" +#: [banner]green +msgid "Green, you have chosen some contacts who can see your information" msgstr "" -#: ../cache/locales.php:484 -msgid "Pods" +#: [banner]orange +msgid "Orange, all your contact list can see your information" msgstr "" -#: ../cache/locales.php:485 -msgid "Share" +#: [banner]red +msgid "Red, everybody in the XMPP network can see your information" msgstr "" -#: ../cache/locales.php:486 -msgid "Room" +#: [banner]black +msgid "Black, the whole Internet can see your information" msgstr "" -#: ../cache/locales.php:487 -#, php-format -msgid "Error: %s" -msgstr "Eroare: %s" - -#: ../cache/locales.php:488 -#, php-format -msgid "Cannot load file '%s'" -msgstr "Fisierul '%s' nu poate fi incarcat." - -#: ../cache/locales.php:489 -#, php-format -msgid "Route error, please set all the parameters for the page %s" +#: [wiki]question +msgid "Looking for some documentation ?" msgstr "" -#: ../cache/locales.php:490 -#, php-format -msgid "Requested widget '%s' doesn't exist." +#: [wiki]button +msgid "Read the Wiki" msgstr "" -#: ../cache/locales.php:491 -#, php-format -msgid "Requested event '%s' not registered." +#: [ml]question +msgid "Talk with us by email ?" msgstr "" -#: ../cache/locales.php:492 -msgid "Whoops!" +#: [ml]button +msgid "Join the Mailing List" msgstr "" -#: ../cache/locales.php:493 -msgid "It seem that you don't have any pictures here?" +#: [chatroom]question +msgid "Chat with the team ?" msgstr "" -#: ../cache/locales.php:494 -msgid "You can try to upload a couple by going to the Media page" +#: [chatroom]button +msgid "Join the Chatroom" msgstr "" -#: ../cache/locales.php:495 -#, php-format -msgid "%s - About" +#: [init]location +msgid "Location node created" msgstr "" -#: ../cache/locales.php:496 -#, php-format -msgid "%s - Account" +#: [init]bookmark +msgid "Bookmark node created" msgstr "" -#: ../cache/locales.php:497 -#, php-format -msgid "%s - Administration Panel" +#: [init]vcard4 +msgid "Profile node created" msgstr "" -#: ../cache/locales.php:498 -#, php-format -msgid "%s - Blog" +#: [init]avatar +msgid "Avatar node created" msgstr "" -#: ../cache/locales.php:499 -#, php-format -msgid "%s - Configuration" -msgstr "%s - Configurare" - -#: ../cache/locales.php:500 -#, php-format -msgid "%s - Discover" +#: [init]subscriptions +msgid "Subscriptions node created" msgstr "" -#: ../cache/locales.php:501 -#, php-format -msgid "%s - Explore" +#: [init]microblog +msgid "Microblog node created" msgstr "" -#: ../cache/locales.php:502 -#, php-format -msgid "%s - Help Page" +#: [location]title +msgid "Location" msgstr "" -#: ../cache/locales.php:503 -#, php-format -msgid "%s - Login to Movim" -msgstr "%s - Conectare pe Movim" - -#: ../cache/locales.php:504 -#, php-format -msgid "%s - Welcome to Movim" -msgstr "%s - Bine ati venit pe MOVIM" - -#: ../cache/locales.php:505 -#, php-format -msgid "%s - Media" +#: [location]wrong_postition +msgid "Wrong position" msgstr "" -#: ../cache/locales.php:506 -#, php-format -msgid "%s - News" +#: [location]updated +msgid "Location updated" msgstr "" -#: ../cache/locales.php:507 -#, php-format -msgid "%s - Group Configuration" +#: [location]update +msgid "Update my position" msgstr "" -#: ../cache/locales.php:508 -#, php-format -msgid "%s - Group" +#: [login_anonymous]bad_username +msgid "Bad nickname (between 4 and 40 characters)" msgstr "" -#: ../cache/locales.php:509 -#, php-format -msgid "%s - 404" +#: [error]username +msgid "Wrong username" msgstr "" -#: ../cache/locales.php:510 -#, php-format -msgid "%s - Profile" +#: [error]jid +msgid "Invalid JID" msgstr "" -#: ../cache/locales.php:511 -#, php-format -msgid "%s - Server" +#: [error]empty_challenge +msgid "Empty Challenge from the server" msgstr "" -#: ../cache/locales.php:512 -msgid "Validate" +#: [error]dns +msgid "XMPP Domain error, your account is not a correct Jabber ID" msgstr "" -#: ../cache/locales.php:513 -msgid "Refresh" +#: [error]data_missings +msgid "Some data are missing !" msgstr "" -#: ../cache/locales.php:514 -msgid "Add" +#: [error]wrong_password +msgid "Wrong password" +msgstr "Parola gresita" + +#: [error]internal +msgid "Internal server error" msgstr "" -#: ../cache/locales.php:515 -msgid "Delete" +#: [error]session +msgid "Session error" msgstr "" -#: ../cache/locales.php:516 -msgid "Remove" +#: [error]account_created +msgid "Account successfully created" msgstr "" -#: ../cache/locales.php:517 -msgid "Cancel" +#: [error]xmpp_unauthorized +msgctxt "[error]xmpp_unauthorized" +msgid "Your XMPP server is unauthorized" msgstr "" -#: ../cache/locales.php:518 -msgid "Close" +#: [error]mec_error +msgid "The server takes too much time to respond" msgstr "" -#: ../cache/locales.php:519 -msgid "Update" +#: [error]too_old +msgid "Your web browser is too old to use with Movim." msgstr "" -#: ../cache/locales.php:520 -msgid "Updating" +#: [error]websocket +msgid "Movim cannot talk with the server, please try again later (Websocket connection error)" msgstr "" -#: ../cache/locales.php:521 +#: [error]impossible +msgid "Impossible login" +msgstr "" + +#: [error]title +msgid "Oops!" +msgstr "" + +#: [error]default [visio]unknown_error +msgid "Unknown error" +msgstr "" + +#: [error]login_format +msgid "Invalid username format" +msgstr "" + +#: [error]password_format +msgid "Invalid password format" +msgstr "" + +#: [error]unauthorized +msgctxt "[error]unauthorized" +msgid "Your XMPP server is unauthorized" +msgstr "" + +#: [error]conflict +msgid "A Movim session is already open on an other device" +msgstr "" + +#: [error]wrong_account +msgid "Movim failed to authenticate. You entered wrong data" +msgstr "" + +#: [error]mechanism +msgid "Authentication mechanism not supported by Movim" +msgstr "" + +#: [error]fail_auth +msgid "The XMPP authentification failed" +msgstr "" + +#: [account]title [accounts]accounts_title +msgid "Accounts" +msgstr "" + +#: [form]username +msgid "My address" +msgstr "Adresa mea" + +#: [form]create_one +msgid "Create one !" +msgstr "" + +#: [form]another_account +msgid "Another account" +msgstr "" + +#: [form]no_account +msgid "No account yet ?" +msgstr "" + +#: [form]whitelist.info +msgid "You can login with accounts from theses servers" +msgstr "" + +#: [form]connected +msgid "Connected" +msgstr "" + +#: [form]population +msgid "Population" +msgstr "" + +#: [menu]empty_title +msgid "No news yet..." +msgstr "" + +#: [menu]empty +msgid "Welcome on your news feed, here you will see all the posts published by your contacts and in the groups you have subscribed." +msgstr "" + +#: [menu]refresh +msgid "Refreshing all the streams" +msgstr "" + +#: [menu]public +msgid "This post is public" +msgstr "" + +#: [affiliations]title +msgid "Manage your members" +msgstr "" + +#: [affiliations]get +msgid "Get the members" +msgstr "" + +#: [affiliations]saved +msgid "Affiliations saved" +msgstr "" + +#: [subscriptions]title +msgid "Manage your subscriptions" +msgstr "" + +#: [subscriptions]info +msgid "Manage the subscriptions" +msgstr "" + +#: [subscriptions]get +msgid "Get the subscriptions" +msgstr "" + +#: [subscriptions]saved +msgid "Subscriptions saved" +msgstr "" + +#: [notifs]title +msgid "Pending Invitations" +msgstr "" + +#: [notifs]wants_to_talk +msgid "%s wants to talk with you" +msgstr "" + +#: [notifs]manage +msgid "Manage" +msgstr "" + +#: [post]news_feed +msgid "News Feed" +msgstr "" + +#: [post]placeholder +msgid "Discover and register to the groups you are interested in" +msgstr "" + +#: [post]preview [page]preview +msgid "Preview" +msgstr "" + +#: [post]help [page]help +msgid "Help" +msgstr "" + +#: [post]help_more +msgid "More help" +msgstr "" + +#: [post]help_manual +msgid "Markdown syntax manual" +msgstr "" + +#: [post]title +msgid "Title" +msgstr "" + +#: [post]content +msgid "Content" +msgstr "" + +#: [post]link +msgid "Link" +msgstr "" + +#: [post]tags +msgid "Tags" +msgstr "" + +#: [post]valid_url [publish]valid_url +msgid "Please enter a valid url" +msgstr "" + +#: [post]no_content_preview [publish]no_content_preview +msgid "No content to preview" +msgstr "" + +#: [post]no_content [publish]no_content [post]empty +msgid "No content" +msgstr "" + +#: [post]published +msgid "Post published" +msgstr "" + +#: [post]deleted +msgid "Post deleted" +msgstr "" + +#: [post]gallery +msgid "This picture will be added to your gallery" +msgstr "" + +#: [post]hot +msgid "What's Hot" +msgstr "" + +#: [post]hot_text +msgid "Posts recently published in Groups that you are not subscribed (yet)" +msgstr "" + +#: [post]new [publish]new +msgid "New post" +msgstr "" + +#: [post]embed_tip +msgid "You can also use services like Imgur or Flickr to host your picture and paste the link here." +msgstr "" + +#: [post]repost +msgid "This is a re-post from %s" +msgstr "" + +#: [post]repost_profile +msgid "See %s profile" +msgstr "" + +#: [post]public +msgid "Publish this post publicly?" +msgstr "" + +#: [post]blog_add +msgid "Post published on your blog" +msgstr "" + +#: [post]blog_remove +msgid "Post removed from your blog" +msgstr "" + +#: [post]delete_title [post]delete +msgid "Delete this post" +msgstr "" + +#: [post]delete_text +msgid "You are going to delete this post, please confirm your action" +msgstr "" + +#: [post]comments_disabled +msgid "Comments disabled" +msgstr "" + +#: [post]comment_published +msgid "Comment published" +msgstr "" + +#: [status]disconnect +msgid "Disconnect" +msgstr "" + +#: [status]here +msgid "Your status here !" +msgstr "" + +#: [status]updated +msgid "Status updated" +msgstr "" + +#: [status]status +msgid "Status" +msgstr "" + +#: [status]presence +msgid "Presence" +msgstr "" + +#: [status]online +msgid "Online with Movim" +msgstr "" + +#: [publish]title +msgid "Publish" +msgstr "" + +#: [publish]attach +msgid "Add a file or a picture to your post" +msgstr "" + +#: [publish]no_publication +msgid "You cannot publish a post on this Group" +msgstr "" + +#: [publish]form_filled +msgid "Some fields have been filled in. Do you still want to go back and loose their content?" +msgstr "" + +#: [public_groups]shared +msgid "Shared" +msgstr "" + +#: [public_groups]added +msgid "%s has been added to your public groups" +msgstr "" + +#: [rooms]add +msgid "Add a chatroom" +msgstr "" + +#: [rooms]empty_text1 +msgid "You don't have any chatroom yet." +msgstr "" + +#: [rooms]empty_text2 +msgid "Add one by clicking on the add button in the header." +msgstr "" + +#: [chatrooms]title +msgid "Chatrooms" +msgstr "" + +#: [chatrooms]name_placeholder +msgid "My Favorite Room" +msgstr "" + +#: [chatrooms]users +msgid "Users in the room" +msgstr "" + +#: [chatrooms]bad_nickname +msgid "Please enter a correct nickname (2 to 40 characters)" +msgstr "" + +#: [room]anonymous_title +msgid "Public chatroom" +msgstr "" + +#: [room]no_room +msgid "Please provide a room address" +msgstr "" + +#: [room]anonymous_text1 +msgid "You are currently logued as an anonymous user." +msgstr "" + +#: [room]anonymous_text2 +msgid "You can join using your own account or create one on the login page by loging out using the cross in the top-right corner." +msgstr "" + +#: [room]anonymous_login +msgid "Login on %s" +msgstr "" + +#: [room]nick +msgid "Your nickname" +msgstr "" + +#: [roster]ungrouped +msgid "Ungrouped" +msgstr "" + +#: [roster]show_disconnected +msgid "Show disconnected contacts" +msgstr "" + +#: [roster]hide_disconnected +msgid "Hide disconnected contacts" +msgstr "" + +#: [roster]show_group +msgid "Show group %s" +msgstr "" + +#: [roster]hide_group +msgid "Hide group %s" +msgstr "" + +#: [roster]jid_error +msgid "Please enter a valid Jabber ID" +msgstr "" + +#: [roster]no_contacts_title +msgid "No contacts ?" +msgstr "" + +#: [roster]no_contacts_text +msgid "You can add one using the + button bellow" +msgstr "" + +#: [roster]show_hide +msgid "Show/Hide" +msgstr "" + +#: [roster]add_contact_info1 +msgid "Enter the Jabber ID of your contact." +msgstr "" + +#: [roster]add_contact_info2 +msgid "Press enter to validate." +msgstr "" + +#: [roster]jid +msgid "JID" +msgstr "" + +#: [roster]results +msgid "Results" +msgstr "" + +#: [roster]added +msgid "Contact added" +msgstr "" + +#: [roster]deleted +msgid "Contact deleted" +msgstr "" + +#: [roster]search +msgid "Search" +msgstr "" + +#: [share]error +msgid "This is not a valid url" +msgstr "" + +#: [share]success +msgid "Sharing the URL" +msgstr "" + +#: [statistics]title +msgid "Statistics" +msgstr "" + +#: [statistics]since +msgid "Since" +msgstr "" + +#: [statistics]sessions +msgid "Sessions" +msgstr "" + +#: [statistics]monthly_sub +msgid "Monthly Subscriptions" +msgstr "" + +#: [statistics]monthly_sub_cum +msgid "Monthly Subscriptions Cumulated" +msgstr "" + +#: [subscribe]info +msgid "Movim is a decentralized social network, before creating a new account you need to choose a server to register." +msgstr "" + +#: [subscribe]server_question +msgid "Your server here ?" +msgstr "" + +#: [subscribe]server_contact +msgid "Contact us to add yours to the officially supported servers list" +msgstr "" + +#: [feed]nope +msgid "No public feed for this contact" +msgstr "" + +#: [feed]nope_contact +msgid "No contact specified" +msgstr "" + +#: [upload]title +msgid "Upload a file" +msgstr "" + +#: [upload]choose +msgid "Choose a file to upload" +msgstr "" + +#: [vcard]title [page]profile +msgid "Profile" +msgstr "Profil" + +#: [vcard]updated +msgid "Profile Updated" +msgstr "" + +#: [vcard]not_updated +msgid "Profile Not Updated" +msgstr "" + +#: [vcard]public +msgid "Your profile is now public" +msgstr "" + +#: [vcard]restricted +msgid "Your profile is now restricted" +msgstr "" + +#: [general]nickname +#, fuzzy +msgctxt "[general]nickname" +msgid "Nickname" +msgstr "Porecla" + +#: [accounts]twitter +msgid "Twitter" +msgstr "" + +#: [accounts]skype +msgid "Skype" +msgstr "" + +#: [accounts]yahoo +msgid "Yahoo" +msgstr "" + +#: [accounts]accounts_nickname +#, fuzzy +msgctxt "[accounts]accounts_nickname" +msgid "Nickname" +msgstr "Porecla" + +#: [accounts]accounts_yahoo +msgid "Yahoo Account" +msgstr "" + +#: [privacy]privacy_title +msgid "Privacy Level" +msgstr "" + +#: [privacy]privacy_question +msgid "Is this profile public ?" +msgstr "" + +#: [privacy]privacy_info +msgid "Please pay attention ! By making your profile public, all the information listed above will be available for all the Movim users and on the whole Internet." +msgstr "" + +#: [save]submit [button]submit msgid "Submit" msgstr "Inregistrare" -#: ../cache/locales.php:522 -msgid "Submitting" -msgstr "" - -#: ../cache/locales.php:523 +#: [save]reset [button]reset msgid "Reset" msgstr "Reinitializeaza" -#: ../cache/locales.php:524 +#: [visio]hung_up +msgid "Hung up" +msgstr "" + +#: [visio]busy +msgid "Your contact is busy" +msgstr "" + +#: [visio]declined +msgid "Declined" +msgstr "" + +#: [visio]calling +msgid "Is calling you" +msgstr "" + +#: [visio]call +msgid "Call" +msgstr "" + +#: [visio]hang_up +msgid "Hang up" +msgstr "" + +#: [visio]connection +msgid "Connection" +msgstr "" + +#: [global]no_js +msgid "You don't have javascript enabled. Good luck with that." +msgstr "" + +#: [global]description +msgid "Movim is a kickass distributed social networking platform that protect your privacy an comes with a set of awesome features." +msgstr "" + +#: [page]administration +msgid "Administration" +msgstr "" + +#: [page]home +msgid "Home" +msgstr "Pagina Principala" + +#: [page]discover +msgid "Discover" +msgstr "" + +#: [page]explore +msgid "Explore" +msgstr "" + +#: [page]account_creation +msgid "Account Creation" +msgstr "Cont nou" + +#: [page]avatar +msgid "Avatar" +msgstr "Avatar" + +#: [page]chats +msgid "Chats" +msgstr "" + +#: [page]server +msgid "Server" +msgstr "" + +#: [page]public_groups +msgid "Public Groups" +msgstr "" + +#: [page]viewer +msgid "Viewer" +msgstr "" + +#: [page]media +msgid "Media" +msgstr "" + +#: [page]blog +msgid "Blog" +msgstr "" + +#: [page]about +msgid "About" +msgstr "" + +#: [page]login +msgid "Login" +msgstr "" + +#: [page]feed +msgid "Feed" +msgstr "" + +#: [page]gallery +msgid "Gallery" +msgstr "" + +#: [page]visio +msgid "Visio-conference" +msgstr "" + +#: [page]pods +msgid "Pods" +msgstr "" + +#: [page]share +msgid "Share" +msgstr "" + +#: [page]room +msgid "Room" +msgstr "" + +#: [error]error +msgid "Error: %s" +msgstr "Eroare: %s" + +#: [error]cannot_load_file +msgid "Cannot load file '%s'" +msgstr "Fisierul '%s' nu poate fi incarcat." + +#: [error]route +msgid "Route error, please set all the parameters for the page %s" +msgstr "" + +#: [error]widget_load_error +msgid "Requested widget '%s' doesn't exist." +msgstr "" + +#: [error]widget_call_error +msgid "Requested event '%s' not registered." +msgstr "" + +#: [error]whoops +msgid "Whoops!" +msgstr "" + +#: [error]media_not_found +msgid "It seem that you don't have any pictures here?" +msgstr "" + +#: [error]media_ask_upload +msgid "You can try to upload a couple by going to the Media page" +msgstr "" + +#: [title]about +msgid "%s - About" +msgstr "" + +#: [title]account +msgid "%s - Account" +msgstr "" + +#: [title]administration +msgid "%s - Administration Panel" +msgstr "" + +#: [title]blog +msgid "%s - Blog" +msgstr "" + +#: [title]configuration +msgid "%s - Configuration" +msgstr "%s - Configurare" + +#: [title]discover +msgid "%s - Discover" +msgstr "" + +#: [title]explore +msgid "%s - Explore" +msgstr "" + +#: [title]help +msgid "%s - Help Page" +msgstr "" + +#: [title]login +msgid "%s - Login to Movim" +msgstr "%s - Conectare pe Movim" + +#: [title]main +msgid "%s - Welcome to Movim" +msgstr "%s - Bine ati venit pe MOVIM" + +#: [title]media +msgid "%s - Media" +msgstr "" + +#: [title]news +msgid "%s - News" +msgstr "" + +#: [title]node_configuration +msgid "%s - Group Configuration" +msgstr "" + +#: [title]node +msgid "%s - Group" +msgstr "" + +#: [title]not_found +msgid "%s - 404" +msgstr "" + +#: [title]profile +msgid "%s - Profile" +msgstr "" + +#: [title]server +msgid "%s - Server" +msgstr "" + +#: [button]validate +msgid "Validate" +msgstr "" + +#: [button]refresh +msgid "Refresh" +msgstr "" + +#: [button]add +msgid "Add" +msgstr "" + +#: [button]delete +msgid "Delete" +msgstr "" + +#: [button]cancel +msgid "Cancel" +msgstr "" + +#: [button]close +msgid "Close" +msgstr "" + +#: [button]update +msgid "Update" +msgstr "" + +#: [button]updating +msgid "Updating" +msgstr "" + +#: [button]submitting +msgid "Submitting" +msgstr "" + +#: [button]register msgid "Register" msgstr "" -#: ../cache/locales.php:525 +#: [button]unregister msgid "Unregister" msgstr "" -#: ../cache/locales.php:526 +#: [button]save msgid "Save" msgstr "" -#: ../cache/locales.php:527 +#: [button]clear msgid "Clear" msgstr "" -#: ../cache/locales.php:528 +#: [button]upload msgid "Upload" msgstr "" -#: ../cache/locales.php:529 +#: [button]come_in msgid "Come in!" msgstr "Intrati!" -#: ../cache/locales.php:530 +#: [button]connecting msgid "Connecting" msgstr "" -#: ../cache/locales.php:531 +#: [button]bool_yes msgid "Yes" msgstr "" -#: ../cache/locales.php:532 +#: [button]bool_no msgid "No" msgstr "" -#: ../cache/locales.php:534 +#: [button]return msgid "Return" msgstr "" -#: ../cache/locales.php:535 +#: [button]accept msgid "Accept" msgstr "Accepta" -#: ../cache/locales.php:536 +#: [button]refuse msgid "Refuse" msgstr "" -#: ../cache/locales.php:537 +#: [button]next msgid "Next" msgstr "" -#: ../cache/locales.php:538 +#: [button]previous msgid "Previous" msgstr "" -#: ../cache/locales.php:539 -#, php-format +#: [step]step msgid "Step %s" msgstr "" -#: ../cache/locales.php:542 +#: [day]title msgid "Day" msgstr "" -#: ../cache/locales.php:543 +#: [day]monday msgid "Monday" msgstr "" -#: ../cache/locales.php:544 +#: [day]tuesday msgid "Tuesday" msgstr "" -#: ../cache/locales.php:545 +#: [day]wednesday msgid "Wednesday" msgstr "" -#: ../cache/locales.php:546 +#: [day]thursday msgid "Thursday" msgstr "" -#: ../cache/locales.php:547 +#: [day]friday msgid "Friday" msgstr "" -#: ../cache/locales.php:548 +#: [day]saturday msgid "Saturday" msgstr "" -#: ../cache/locales.php:549 +#: [day]sunday msgid "Sunday" msgstr "" -#: ../cache/locales.php:550 ../cache/locales.php:559 +#: [gender]nil +msgctxt "[gender]nil" msgid "None" msgstr "" -#: ../cache/locales.php:551 +#: [gender]male msgid "Male" msgstr "" -#: ../cache/locales.php:552 +#: [gender]female msgid "Female" msgstr "" -#: ../cache/locales.php:553 +#: [gender]other msgid "Other" msgstr "" -#: ../cache/locales.php:554 +#: [client]bot msgid "Bot" msgstr "" -#: ../cache/locales.php:555 +#: [client]desktop msgid "Desktop" msgstr "" -#: ../cache/locales.php:556 +#: [client]phone msgid "Phone" msgstr "" -#: ../cache/locales.php:557 +#: [client]web msgid "Web" msgstr "" -#: ../cache/locales.php:558 +#: [client]registered msgid "Registered" msgstr "" -#: ../cache/locales.php:560 +#: [marital]nil +msgctxt "[marital]nil" +msgid "None" +msgstr "" + +#: [marital]single msgid "Single" msgstr "" -#: ../cache/locales.php:561 +#: [marital]relationship msgid "In a relationship" msgstr "" -#: ../cache/locales.php:562 +#: [marital]married msgid "Married" msgstr "" -#: ../cache/locales.php:563 +#: [marital]divorced msgid "Divorced" msgstr "" -#: ../cache/locales.php:564 +#: [marital]widowed msgid "Widowed" msgstr "" -#: ../cache/locales.php:565 +#: [marital]cohabiting msgid "Cohabiting" msgstr "" -#: ../cache/locales.php:566 +#: [marital]union msgid "Civil Union" msgstr "" -#: ../cache/locales.php:567 +#: [flag]white msgid "Not shared" msgstr "" -#: ../cache/locales.php:568 +#: [flag]green msgid "Shared with one contact" msgstr "" -#: ../cache/locales.php:569 +#: [flag]orange msgid "Shared with all contacts" msgstr "" -#: ../cache/locales.php:570 +#: [flag]red msgid "Shared with the XMPP network" msgstr "" -#: ../cache/locales.php:571 +#: [flag]black msgid "Shared with the whole Internet" msgstr "" -#: ../cache/locales.php:572 +#: [presence]online msgid "Online" msgstr "" -#: ../cache/locales.php:573 +#: [presence]away msgid "Away" msgstr "Plecat" -#: ../cache/locales.php:574 +#: [presence]dnd msgid "Do Not Disturb" msgstr "" -#: ../cache/locales.php:575 +#: [presence]xa msgid "Extended Away" msgstr "" -#: ../cache/locales.php:576 +#: [presence]offline msgid "Offline" msgstr "" -#: ../cache/locales.php:577 +#: [presence]error msgid "Error" msgstr "" -#: ../cache/locales.php:578 +#: [mood]afraid msgid "afraid" msgstr "" -#: ../cache/locales.php:579 +#: [mood]amazed msgid "amazed" msgstr "" -#: ../cache/locales.php:580 +#: [mood]amorous msgid "amorous" msgstr "" -#: ../cache/locales.php:581 +#: [mood]angry msgid "angry" msgstr "" -#: ../cache/locales.php:582 +#: [mood]annoyed msgid "annoyed" msgstr "" -#: ../cache/locales.php:583 +#: [mood]anxious msgid "anxious" msgstr "" -#: ../cache/locales.php:584 +#: [mood]aroused msgid "aroused" msgstr "" -#: ../cache/locales.php:585 +#: [mood]ashamed msgid "ashamed" msgstr "" -#: ../cache/locales.php:586 +#: [mood]bored msgid "bored" msgstr "" -#: ../cache/locales.php:587 +#: [mood]brave msgid "brave" msgstr "" -#: ../cache/locales.php:588 +#: [mood]calm msgid "calm" msgstr "" -#: ../cache/locales.php:589 +#: [mood]cautious msgid "cautious" msgstr "" -#: ../cache/locales.php:590 +#: [mood]cold msgid "cold" msgstr "" -#: ../cache/locales.php:591 +#: [mood]confident msgid "confident" msgstr "" -#: ../cache/locales.php:592 +#: [mood]confused msgid "confused" msgstr "" -#: ../cache/locales.php:593 +#: [mood]contemplative msgid "contemplative" msgstr "" -#: ../cache/locales.php:594 +#: [mood]contented msgid "contented" msgstr "" -#: ../cache/locales.php:595 +#: [mood]cranky msgid "cranky" msgstr "" -#: ../cache/locales.php:596 +#: [mood]crazy msgid "crazy" msgstr "" -#: ../cache/locales.php:597 +#: [mood]creative msgid "creative" msgstr "" -#: ../cache/locales.php:598 +#: [mood]curious msgid "curious" msgstr "" -#: ../cache/locales.php:599 +#: [mood]dejected msgid "dejected" msgstr "" -#: ../cache/locales.php:600 +#: [mood]depressed msgid "depressed" msgstr "" -#: ../cache/locales.php:601 +#: [mood]disappointed msgid "disappointed" msgstr "" -#: ../cache/locales.php:602 +#: [mood]disgusted msgid "disgusted" msgstr "" -#: ../cache/locales.php:603 +#: [mood]dismayed msgid "dismayed" msgstr "" -#: ../cache/locales.php:604 +#: [mood]distracted msgid "distracted" msgstr "" -#: ../cache/locales.php:605 +#: [mood]embarrassed msgid "embarrassed" msgstr "" -#: ../cache/locales.php:606 +#: [mood]envious msgid "envious" msgstr "" -#: ../cache/locales.php:607 +#: [mood]excited msgid "excited" msgstr "" -#: ../cache/locales.php:608 +#: [mood]flirtatious msgid "flirtatious" msgstr "" -#: ../cache/locales.php:609 +#: [mood]frustated msgid "frustated" msgstr "" -#: ../cache/locales.php:610 +#: [mood]grateful msgid "grateful" msgstr "" -#: ../cache/locales.php:611 +#: [mood]grieving msgid "grieving" msgstr "" -#: ../cache/locales.php:612 +#: [mood]grumpy msgid "grumpy" msgstr "" -#: ../cache/locales.php:613 +#: [mood]guilty msgid "guilty" msgstr "" -#: ../cache/locales.php:614 +#: [mood]happy msgid "happy" msgstr "" -#: ../cache/locales.php:615 +#: [mood]hopeful msgid "hopeful" msgstr "" -#: ../cache/locales.php:616 +#: [mood]hot msgid "hot" msgstr "" -#: ../cache/locales.php:617 +#: [mood]humbled msgid "humbled" msgstr "" -#: ../cache/locales.php:618 +#: [mood]humiliated msgid "humiliated" msgstr "" -#: ../cache/locales.php:619 +#: [mood]hungry msgid "hungry" msgstr "" -#: ../cache/locales.php:620 +#: [mood]hurt msgid "hurt" msgstr "" -#: ../cache/locales.php:621 +#: [mood]impressed msgid "impressed" msgstr "" -#: ../cache/locales.php:622 +#: [mood]in_awe msgid "in awe" msgstr "" -#: ../cache/locales.php:623 +#: [mood]in_love msgid "in love" msgstr "" -#: ../cache/locales.php:624 +#: [mood]indignant msgid "indignant" msgstr "" -#: ../cache/locales.php:625 +#: [mood]interested msgid "interested" msgstr "" -#: ../cache/locales.php:626 +#: [mood]intoxicated msgid "intoxicated" msgstr "" -#: ../cache/locales.php:627 +#: [mood]invincible msgid "invincible" msgstr "" -#: ../cache/locales.php:628 +#: [mood]jealous msgid "jealous" msgstr "" -#: ../cache/locales.php:629 +#: [mood]lonely msgid "lonely" msgstr "" -#: ../cache/locales.php:630 +#: [mood]lost msgid "lost" msgstr "" -#: ../cache/locales.php:631 +#: [mood]lucky msgid "lucky" msgstr "" -#: ../cache/locales.php:632 +#: [mood]mean msgid "mean" msgstr "" -#: ../cache/locales.php:633 +#: [mood]moody msgid "moody" msgstr "" -#: ../cache/locales.php:634 +#: [mood]nervous msgid "nervous" msgstr "" -#: ../cache/locales.php:635 +#: [mood]neutral msgid "neutral" msgstr "" -#: ../cache/locales.php:636 +#: [mood]offended msgid "offended" msgstr "" -#: ../cache/locales.php:637 +#: [mood]outraged msgid "outraged" msgstr "" -#: ../cache/locales.php:638 +#: [mood]playful msgid "playful" msgstr "" -#: ../cache/locales.php:639 +#: [mood]proud msgid "proud" msgstr "" -#: ../cache/locales.php:640 +#: [mood]relaxed msgid "relaxed" msgstr "" -#: ../cache/locales.php:641 +#: [mood]relieved msgid "relieved" msgstr "" -#: ../cache/locales.php:642 -msgid "remorseful" -msgstr "" - -#: ../cache/locales.php:643 +#: [mood]restless msgid "restless" msgstr "" -#: ../cache/locales.php:644 +#: [mood]sad msgid "sad" msgstr "" -#: ../cache/locales.php:645 +#: [mood]sarcastic msgid "sarcastic" msgstr "" -#: ../cache/locales.php:646 +#: [mood]satisfied msgid "satisfied" msgstr "" -#: ../cache/locales.php:647 +#: [mood]serious msgid "serious" msgstr "" -#: ../cache/locales.php:648 +#: [mood]shocked msgid "shocked" msgstr "" -#: ../cache/locales.php:649 +#: [mood]shy msgid "shy" msgstr "" -#: ../cache/locales.php:650 +#: [mood]sick msgid "sick" msgstr "" -#: ../cache/locales.php:651 +#: [mood]sleepy msgid "sleepy" msgstr "" -#: ../cache/locales.php:652 +#: [mood]spontaneous msgid "spontaneous" msgstr "" -#: ../cache/locales.php:653 +#: [mood]stressed msgid "stressed" msgstr "" -#: ../cache/locales.php:654 +#: [mood]strong msgid "strong" msgstr "" -#: ../cache/locales.php:655 +#: [mood]surprised msgid "surprised" msgstr "" -#: ../cache/locales.php:656 +#: [mood]thankful msgid "thankful" msgstr "" -#: ../cache/locales.php:657 +#: [mood]thirsty msgid "thirsty" msgstr "" -#: ../cache/locales.php:658 +#: [mood]tired msgid "tired" msgstr "" -#: ../cache/locales.php:659 +#: [mood]undefined msgid "undefined" msgstr "" -#: ../cache/locales.php:660 +#: [mood]weak msgid "weak" msgstr "" -#: ../cache/locales.php:661 +#: [mood]worried msgid "worried" msgstr "" -#: ../cache/locales.php:662 +#: [month]title msgid "Month" msgstr "" -#: ../cache/locales.php:663 +#: [month]january msgid "January" msgstr "" -#: ../cache/locales.php:664 +#: [month]february msgid "February" msgstr "" -#: ../cache/locales.php:665 +#: [month]march msgid "March" msgstr "" -#: ../cache/locales.php:666 +#: [month]april msgid "April" msgstr "" -#: ../cache/locales.php:667 +#: [month]may msgid "May" msgstr "" -#: ../cache/locales.php:668 +#: [month]june msgid "June" msgstr "" -#: ../cache/locales.php:669 +#: [month]july msgid "July" msgstr "" -#: ../cache/locales.php:670 +#: [month]august msgid "August" msgstr "" -#: ../cache/locales.php:671 +#: [month]september msgid "September" msgstr "" -#: ../cache/locales.php:672 +#: [month]october msgid "October" msgstr "" -#: ../cache/locales.php:673 +#: [month]november msgid "November" msgstr "" -#: ../cache/locales.php:674 +#: [month]december msgid "December" msgstr "" -#: ../cache/locales.php:675 +#: [year]title msgid "Year" msgstr "" -#: ../cache/locales.php:676 +#: [date]today msgid "Today" msgstr "" -#: ../cache/locales.php:677 +#: [date]tomorrow msgid "Tomorrow" msgstr "" -#: ../cache/locales.php:678 +#: [date]yesterday msgid "Yesterday" msgstr "" -#: ../cache/locales.php:679 -#, php-format -msgid " %d days ago" +#: [date]ago +msgid "%d days ago" msgstr "" -#: ../cache/locales.php:680 +#: [date]day msgid "day" msgstr "" -#: ../cache/locales.php:682 +#: [post]whats_new msgid "What's new ?" msgstr "" -#: ../cache/locales.php:683 +#: [post]place msgid "Place" msgstr "" -#: ../cache/locales.php:684 +#: [post]by msgid "by" msgstr "" -#: ../cache/locales.php:685 +#: [post]geolocalisation msgid "Geolocalisation" msgstr "" -#: ../cache/locales.php:686 +#: [post]email msgid "email" msgstr "" -#: ../cache/locales.php:688 +#: [post]no_comments msgid "No comments yet" msgstr "" -#: ../cache/locales.php:689 +#: [post]no_comments_stream msgid "No comments stream" msgstr "" -#: ../cache/locales.php:690 +#: [post]no_load msgid "Your feed cannot be loaded." msgstr "" -#: ../cache/locales.php:691 +#: [post]older msgid "Get older posts" msgstr "" -#: ../cache/locales.php:692 -#, php-format +#: [post]new_items msgid "%s new items" msgstr "" -#: ../cache/locales.php:693 +#: [post]comment_error msgid "Comment publication error" msgstr "" -#: ../cache/locales.php:694 +#: [post]comments_older msgid "Show the older comments" msgstr "" -#: ../cache/locales.php:695 -msgid "Loading comments ..." +#: [post]comments_loading +msgid "Loading comments..." msgstr "" -#: ../cache/locales.php:696 +#: [post]comments_get msgid "Get the comments" msgstr "" -#: ../cache/locales.php:697 +#: [post]comment_add msgid "Add a comment" msgstr "" -#: ../cache/locales.php:698 +#: [post]share msgid "Share with" msgstr "" -#: ../cache/locales.php:699 +#: [post]share_everyone msgid "Everyone" msgstr "" -#: ../cache/locales.php:700 +#: [post]share_your_contacts msgid "Your contacts" msgstr "" -#: ../cache/locales.php:702 +#: [post]updated msgid "Updated" msgstr "" -#: ../cache/locales.php:703 +#: [post]content_not_found msgid "Content not found" msgstr "" -#: ../cache/locales.php:704 +#: [post]default_title msgid "Contact publication" msgstr "" -#: ../cache/locales.php:705 +#: [post]comments msgid "Comments" msgstr "" -#: ../cache/locales.php:706 +#: [api]error msgid "The API is not reachable, try again later" msgstr "" -#: ../cache/locales.php:707 +#: [field]type_here msgid "Type here" msgstr "" #~ msgid "Logout" #~ msgstr "Delogare" -#, php-format #~ msgid "%s - Account Creation" #~ msgstr "%s - Cont nou" @@ -2594,7 +2716,6 @@ msgstr "" #~ msgid "PHP version mismatch. Movim requires PHP 5.3 minimum." #~ msgstr "Versiune de PHP nepotrivita. Movim necesita PHP 5.3 sau mai mare." -#, php-format #~ msgid "Movim requires the %s extension." #~ msgstr "Movin necesita extensia %s." @@ -2604,34 +2725,24 @@ msgstr "" #~ msgid "Movim Installer" #~ msgstr "Instalator Movim" -#, php-format #~ msgid "Couldn't create directory '%s'." #~ msgstr "Directorul '%s' nu a putut fi creat." -#, php-format #~ msgid "Couldn't create configuration file '%s'." #~ msgstr "Fisierul de configuratie '%s' nu poate fi creat" #~ msgid "Compatibility Test" #~ msgstr "Test de compatibilitate" -#~ msgid "" -#~ "The following requirements were not met. Please make sure they are all " -#~ "satisfied in order to install Movim." -#~ msgstr "" -#~ "Urmatoarele cerinte nu sunt satisfacute. Asigura-te ca sunt satisfacute " -#~ "toate inainte sa instalezi Movim." +#~ msgid "The following requirements were not met. Please make sure they are all satisfied in order to install Movim." +#~ msgstr "Urmatoarele cerinte nu sunt satisfacute. Asigura-te ca sunt satisfacute toate inainte sa instalezi Movim." #~ msgid "User not logged in." #~ msgstr "Utilizatorul nu este logat." -#, php-format #~ msgid "Cannot open log file '%s'" #~ msgstr "Fisierul jurnal %s un a putut fi deschis." -#~ msgid "Remove this contact" -#~ msgstr "Sterge acest contact" - #~ msgid "wants to talk with you" #~ msgstr "vrea sa vorbeasca cu tine" diff --git a/sources/locales/ru.po b/sources/locales/ru.po index aa794b9..f32bbbe 100644 --- a/sources/locales/ru.po +++ b/sources/locales/ru.po @@ -1,2630 +1,2767 @@ # Russian translations for Movim package. # This file is distributed under the same license as the Movim package. # This file was translated from CodingTeam at . +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/About/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Account/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AccountNext/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AdHoc/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AdminDB/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AdminMain/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AdminTest/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Api/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Avatar/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Blog/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Bookmark/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Chat/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Chats/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/ConfigData/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Config/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Contact/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Group/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Groups/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Header/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Hello/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Help/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Init/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Location/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/LoginAnonymous/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Login/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Menu/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/NodeAffiliations/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/NodeSubscriptions/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Notifs/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Post/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Presence/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Publish/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/PubsubSubscriptionConfig/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Rooms/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Roster/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Share/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Statistics/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Subscribe/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Syndication/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Upload/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Vcard4/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/VisioExt/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Visio/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../locales/locales.ini msgid "" msgstr "" "Project-Id-Version: Movim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-06-08 22:06+0200\n" +"POT-Creation-Date: 2015-08-20 15:17+0200\n" "PO-Revision-Date: 2015-06-09 12:19+0000\n" "Last-Translator: Paul \n" "Language-Team: LANGUAGE \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2015-06-18 21:08+0000\n" "X-Generator: Launchpad (build 17570)\n" -"Language: \n" -#: ../cache/locales.php:2 +#: [about]thanks msgid "Thanks" msgstr "Спасибо" -#: ../cache/locales.php:3 +#: [about]developers msgid "Developers" msgstr "Разработчики" -#: ../cache/locales.php:4 +#: [about]translators msgid "Translators" msgstr "Переводчики" -#: ../cache/locales.php:5 +#: [about]software msgid "Software" msgstr "Программа" -#: ../cache/locales.php:6 +#: [about]resources msgid "Resources" msgstr "Ресурсы" -#: ../cache/locales.php:7 ../cache/locales.php:83 ../cache/locales.php:85 +#: [about]api [schema]api [api]title msgid "API" msgstr "API" -#: ../cache/locales.php:8 -msgid "" -"Movim is an XMPP-based communication platform. All the project, except the " -"following software and resources, is under" -msgstr "" -"Movim — основанная на XMPP платформа для коммуникаций. Весь проект, кроме " -"следующих программ, находится под" +#: [about]info +msgid "Movim is an XMPP-based communication platform. All the project, except the following software and resources, is under" +msgstr "Movim — основанная на XMPP платформа для коммуникаций. Весь проект, кроме следующих программ, находится под" -#: ../cache/locales.php:9 +#: [account]title msgid "Account" msgstr "" -#: ../cache/locales.php:10 -msgid "The password has been updated" -msgstr "" +#: [account]password_change_title +#, fuzzy +msgid "Change my password" +msgstr "Неверный пароль" -#: ../cache/locales.php:11 -msgid "Please provide a valid password (6 characters minimum)" -msgstr "" - -#: ../cache/locales.php:12 -msgid "The provided passwords are not the same" -msgstr "" - -#: ../cache/locales.php:13 -msgid "Delete my account" -msgstr "" - -#: ../cache/locales.php:14 -msgid "" -"You will delete your XMPP account and all the relative information linked to " -"it (profile, contacts and publications)." -msgstr "" - -#: ../cache/locales.php:15 -msgid "Are you sure that you want to delete it ?" -msgstr "" - -#: ../cache/locales.php:16 ../cache/locales.php:411 -msgid "Create a new account" -msgstr "Создать новую учётную запись" - -#: ../cache/locales.php:17 -msgid "No account creation form found on the server" -msgstr "На сервере не найдена форма создания учетной записи" - -#: ../cache/locales.php:18 ../cache/locales.php:172 -msgid "on" -msgstr "на" - -#: ../cache/locales.php:19 -msgid "Your acccount has been successfully registered" -msgstr "Ваша учётная запись была успешно зарегистрирована" - -#: ../cache/locales.php:20 -msgid "Loading" -msgstr "Идёт загрузка" - -#: ../cache/locales.php:21 -msgid "Not Acceptable" -msgstr "Неприменимо" - -#: ../cache/locales.php:22 -msgid "The registration system of this server is currently unavailable" -msgstr "Регистрация на этом сервере в данный момент недоступна" - -#: ../cache/locales.php:23 -msgid "" -"This server use an external system for the registration, please click on the " -"following URL." -msgstr "" -"Серве использует внешнюю систему регистрации, пожалуйста, проследуйте по " -"этому адресу." - -#: ../cache/locales.php:24 -msgid "Actions" -msgstr "Действия" - -#: ../cache/locales.php:25 ../cache/locales.php:82 -msgid "Database" -msgstr "База данных" - -#: ../cache/locales.php:26 -msgid "Modl wasn't able to connect to the database" -msgstr "Modl не смог подключиться к базе данных" - -#: ../cache/locales.php:27 -msgid "Movim is connected to the database" -msgstr "Movim подключился к базе данных" - -#: ../cache/locales.php:28 -msgid "The database need to be updated" -msgstr "База данных нуждается в обновление" - -#: ../cache/locales.php:29 -msgid "Movim database is up to date" -msgstr "База данных Movim обновлена" - -#: ../cache/locales.php:30 -msgid "Database Type" -msgstr "Тип базы данных" - -#: ../cache/locales.php:31 ../cache/locales.php:50 ../cache/locales.php:540 -msgid "Username" -msgstr "Имя пользователя" - -#: ../cache/locales.php:32 ../cache/locales.php:51 ../cache/locales.php:282 -#: ../cache/locales.php:541 +#: [account]password [db]password [credentials]password [form]password +#: [input]password msgid "Password" msgstr "Пароль" -#: ../cache/locales.php:33 +#: [account]password_confirmation +#, fuzzy +msgid "Password confirmation" +msgstr "%s - настройки" + +#: [account]password_changed +msgid "The password has been updated" +msgstr "" + +#: [account]password_not_valid +msgid "Please provide a valid password (6 characters minimum)" +msgstr "" + +#: [account]password_not_same +msgid "The provided passwords are not the same" +msgstr "" + +#: [account]delete_title +msgid "Delete my account" +msgstr "" + +#: [account]delete +#, fuzzy +msgid "Delete your account" +msgstr "Другая учётная запись" + +#: [account]delete_text +msgid "You will delete your XMPP account and all the relative information linked to it (profile, contacts and publications)." +msgstr "" + +#: [account]delete_text_confirm +msgid "Are you sure that you want to delete it ?" +msgstr "" + +#: [account]gateway_title +msgid "Gateway" +msgstr "" + +#: [create]title [subscribe]title +msgid "Create a new account" +msgstr "Создать новую учётную запись" + +#: [create]notfound +msgid "No account creation form found on the server" +msgstr "На сервере не найдена форма создания учетной записи" + +#: [create]server_on +msgid "on" +msgstr "на" + +#: [create]successfull +msgid "Your acccount has been successfully registered" +msgstr "Ваша учётная запись была успешно зарегистрирована" + +#: [create]loading +msgid "Loading" +msgstr "Идёт загрузка" + +#: [error]not_acceptable +msgid "Not Acceptable" +msgstr "Неприменимо" + +#: [error]service_unavailable +msgid "The registration system of this server is currently unavailable" +msgstr "Регистрация на этом сервере в данный момент недоступна" + +#: [oob]about +msgid "This server use an external system for the registration, please click on the following URL." +msgstr "Серве использует внешнюю систему регистрации, пожалуйста, проследуйте по этому адресу." + +#: [adhoc]title +msgid "Actions" +msgstr "Действия" + +#: [db]legend [schema]database +msgid "Database" +msgstr "База данных" + +#: [db]connect_error +msgid "Modl wasn't able to connect to the database" +msgstr "Modl не смог подключиться к базе данных" + +#: [db]connect_success +msgid "Movim is connected to the database" +msgstr "Movim подключился к базе данных" + +#: [db]update +msgid "The database need to be updated" +msgstr "База данных нуждается в обновление" + +#: [db]up_to_date +msgid "Movim database is up to date" +msgstr "База данных Movim обновлена" + +#: [db]type +msgid "Database Type" +msgstr "Тип базы данных" + +#: [db]username [credentials]username [input]username +msgid "Username" +msgstr "Имя пользователя" + +#: [db]host msgid "Host" msgstr "Сервер" -#: ../cache/locales.php:34 +#: [db]port msgid "Port" msgstr "Порт" -#: ../cache/locales.php:35 -msgid "Database Name" +#: [db]name +#, fuzzy +msgid "Database sName" msgstr "Имя базы данных" -#: ../cache/locales.php:36 +#: [admin]general msgid "General Settings" msgstr "Общие параметры" -#: ../cache/locales.php:37 +#: [general]theme msgid "Theme" msgstr "Тема" -#: ../cache/locales.php:38 +#: [general]language msgid "Default language" msgstr "Язык по-умолчанию" -#: ../cache/locales.php:39 -msgid "Environment" -msgstr "Окружение" - -#: ../cache/locales.php:40 +#: [general]log_verbosity msgid "Log verbosity" msgstr "Детализация лога" -#: ../cache/locales.php:41 +#: [general]timezone msgid "Server Timezone" msgstr "Часовой пояс сервера" -#: ../cache/locales.php:42 +#: [general]limit msgid "User folder size limit (in bytes)" msgstr "Предельный размер папки пользователя (в байтах)" -#: ../cache/locales.php:43 +#: [websocket]title msgid "WebSocket Configuration" msgstr "Конфигурация WebSocket" -#: ../cache/locales.php:44 +#: [websocket]info msgid "Enter here a valid WebSocket URI in the form" msgstr "Введите верный WebSocket URI в форму" -#: ../cache/locales.php:45 +#: [websocket]label msgid "WebSocket URI" msgstr "WebSocket URI" -#: ../cache/locales.php:46 -msgid "" -"If you change the URI, please restart the daemon to reload the configuration" -msgstr "" -"Если вы изменили URI, пожалуйста, перезапустите демон для перезагрузки " -"конфигурации" +#: [websocket]save_info +msgid "If you change the URI, please restart the daemon to reload the configuration" +msgstr "Если вы изменили URI, пожалуйста, перезапустите демон для перезагрузки конфигурации" -#: ../cache/locales.php:47 +#: [websocket]publics msgid "Public WebSockets" msgstr "Публичные WebSockets" -#: ../cache/locales.php:48 +#: [credentials]title msgid "Administration Credential" msgstr "Управление учетными данными" -#: ../cache/locales.php:49 +#: [credentials]info msgid "Change the default credentials admin/password" msgstr "Изменение учетных данных по умолчанию admin/password" -#: ../cache/locales.php:52 +#: [credentials]re_password msgid "Retype password" msgstr "Введите пароль ещё раз" -#: ../cache/locales.php:53 +#: [whitelist]title msgid "Whitelist - XMPP Server" msgstr "Белый список - XMPP Сервер" -#: ../cache/locales.php:54 -msgid "" -"If you want to specify a list of authorized XMPP servers on your Movim pod " -"and forbid the connection on all the others please put their domain name " -"here, with comma (ex: movim.eu,jabber.fr)" -msgstr "" -"Если вы хотите задать список авторизованных XMPP серверов в вашей Movim " -"модуле и запретить подключение всех остальных поставьте их доменное имя " -"здесь, с запятой (например: movim.eu, jabber.fr)" +#: [whitelist]info1 +msgid "If you want to specify a list of authorized XMPP servers on your Movim pod and forbid the connection on all the others please put their domain name here, with comma (ex: movim.eu,jabber.fr)" +msgstr "Если вы хотите задать список авторизованных XMPP серверов в вашей Movim модуле и запретить подключение всех остальных поставьте их доменное имя здесь, с запятой (например: movim.eu, jabber.fr)" -#: ../cache/locales.php:55 -msgid "" -"Leave this field blank if you allow the access to all the XMPP accounts." -msgstr "" -"Оставьте это поле пустым, если вы позволите доступ ко всем XMPP аккаунтам." +#: [whitelist]info2 +msgid "Leave this field blank if you allow the access to all the XMPP accounts." +msgstr "Оставьте это поле пустым, если вы позволите доступ ко всем XMPP аккаунтам." -#: ../cache/locales.php:56 +#: [whitelist]label msgid "List of whitelisted XMPP servers" msgstr "Белый список серверов XMPP" -#: ../cache/locales.php:57 ../cache/locales.php:61 +#: [information]title +#, fuzzy +msgctxt "[information]title" msgid "Information Message" msgstr "Информационное сообщение" -#: ../cache/locales.php:58 +#: [information]description msgid "Description" msgstr "Описание" -#: ../cache/locales.php:59 +#: [information]info1 msgid "This message will be displayed on the login page" msgstr "Это сообщение будет отображаться на странице входа" -#: ../cache/locales.php:60 -msgid "Leave this field blank if you don't want to show any message." -msgstr "" -"Оставьте это поле пустым, если ты не хочешь показывать любое сообщение." +#: [information]info2 +#, fuzzy +msgid "Leave this field blank if you dont want to show any message." +msgstr "Оставьте это поле пустым, если ты не хочешь показывать любое сообщение." -#: ../cache/locales.php:62 +#: [information]label +#, fuzzy +msgctxt "[information]label" +msgid "Information Message" +msgstr "Информационное сообщение" + +#: [log]empty msgid "Empty" msgstr "Пусто" -#: ../cache/locales.php:63 +#: [log]syslog msgid "Syslog" msgstr "Syslog" -#: ../cache/locales.php:64 +#: [log]syslog_files msgid "Syslog and files" msgstr "Syslog и файлы" -#: ../cache/locales.php:65 +#: [rewrite]title msgid "URL Rewriting" msgstr "" -#: ../cache/locales.php:66 +#: [rewrite]info msgid "The URL Rewriting can be enabled" msgstr "" -#: ../cache/locales.php:67 +#: [admin]compatibility msgid "General Overview" msgstr "Общие сведения" -#: ../cache/locales.php:68 -msgid "" -"Movim has found some issues or things that need to be fixed or improved" -msgstr "" -"Movim обнаружил проблемы или вещи, которые должны быть исправлены или " -"улучшены" +#: [compatibility]info +msgid "Movim has found some issues or things that need to be fixed or improved" +msgstr "Movim обнаружил проблемы или вещи, которые должны быть исправлены или улучшены" -#: ../cache/locales.php:69 -#, php-format +#: [compatibility]php1 msgid "Update your PHP-Version: %s" msgstr "Обновите вашу версию PHP: %s" -#: ../cache/locales.php:70 +#: [compatibility]php2 msgid "Required: 5.3.0" msgstr "Необходима: 5.3.0" -#: ../cache/locales.php:71 +#: [compatibility]curl msgid "Install the php5-curl library" msgstr "Установите библиотеку php5-curl" -#: ../cache/locales.php:72 +#: [compatibility]imagick msgid "Install the php5-imagick library" msgstr "" -#: ../cache/locales.php:73 +#: [compatibility]gd msgid "Install the php5-gd library" msgstr "" -#: ../cache/locales.php:74 -msgid "Read and write rights for the webserver in Movim's root directory" +#: [compatibility]rights +#, fuzzy +msgid "Read and write rights for the webserver in Movims root directory" msgstr "Права на чтение и запись на веб-сервере для корневого каталога Movim" -#: ../cache/locales.php:75 +#: [compatibility]rewrite msgid "The URL Rewriting support is currently disabled" msgstr "Поддержка URL Rewrite, на текущий момент, отключена" -#: ../cache/locales.php:76 +#: [compatibility]db msgid "The database need to be updated, go to the database panel to fix this" msgstr "" -#: ../cache/locales.php:77 -msgid "" -"WebSocket connection error, check if the Movim Daemon is running and is " -"reacheable" +#: [compatibility]websocket +msgid "WebSocket connection error, check if the Movim Daemon is running and is reachable" msgstr "" -#: ../cache/locales.php:78 -msgid "" -"XMPP Websocket connection error, please check the validity of the URL given " -"in the General Configuration" +#: [compatibility]xmpp_websocket +msgid "XMPP Websocket connection error, please check the validity of the URL given in the General Configuration" msgstr "" -#: ../cache/locales.php:79 +#: [schema]browser msgid "Browser" msgstr "" -#: ../cache/locales.php:80 +#: [schema]movim msgid "Movim Core" msgstr "" -#: ../cache/locales.php:81 +#: [schema]daemon msgid "Movim Daemon" msgstr "" -#: ../cache/locales.php:84 +#: [schema]xmpp msgid "XMPP" msgstr "" -#: ../cache/locales.php:86 -#, php-format -msgid "" -"Here you can register your pod on the official %sMovim API%s and be listed " -"on %sthe pods page%s." -msgstr "" -"Здесь Вы можете зарегистрировать свою установку Movim в %sMovim API%s с " -"упомянанием на %sстранице установок%s." +#: [api]info +msgid "Here you can register your pod on the official %sMovim API%s and be listed on %sthe pods page%s." +msgstr "Здесь Вы можете зарегистрировать свою установку Movim в %sMovim API%s с упомянанием на %sстранице установок%s." -#: ../cache/locales.php:87 +#: [api]register msgid "Your pod is not registered on the API" msgstr "Ваша установка не зарегистрирована в API" -#: ../cache/locales.php:88 +#: [api]registered msgid "Your pod is registered on the API" msgstr "Ваша установка зарегистрирована в API" -#: ../cache/locales.php:89 +#: [api]wait msgid "Your pod is not yet validated" msgstr "Ваша установка не прошла проверку" -#: ../cache/locales.php:90 +#: [api]validated msgid "Your pod is validated" msgstr "Ваша установка прошла проверку" -#: ../cache/locales.php:91 -msgid "" -"You asked to be removed from the API, this request will be processed in a " -"couple of hours" -msgstr "" -"Вы запросили удаление из API, данный запрос будет выполнен в течение " -"нескольких часов" +#: [api]unregister +msgid "You asked to be removed from the API, this request will be processed in a couple of hours" +msgstr "Вы запросили удаление из API, данный запрос будет выполнен в течение нескольких часов" -#: ../cache/locales.php:92 ../cache/locales.php:147 +#: [api]conf_updated [config]updated msgid "Configuration updated" msgstr "Конфигурация обновлена" -#: ../cache/locales.php:93 +#: [avatar]file msgid "File" msgstr "" -#: ../cache/locales.php:94 +#: [avatar]use_it msgid "Use it" msgstr "" -#: ../cache/locales.php:95 +#: [avatar]webcam msgid "Webcam" msgstr "Веб-камера" -#: ../cache/locales.php:96 +#: [avatar]cheese msgid "Cheese !" msgstr "Сыыр!" -#: ../cache/locales.php:97 +#: [avatar]snapshot msgid "Take a webcam snapshot" msgstr "Сделать фотографиюс помощью веб-камеры" -#: ../cache/locales.php:98 +#: [avatar]updated msgid "Avatar Updated" msgstr "Аватара обновлена" -#: ../cache/locales.php:99 +#: [avatar]not_updated msgid "Avatar Not Updated" msgstr "Аватара не обновлена" -#: ../cache/locales.php:100 ../cache/locales.php:415 -#, php-format +#: [blog]title [feed]title msgid "%s's feed" msgstr "лента пользователя %s" -#: ../cache/locales.php:101 +#: [blog]empty msgid "This user has not posted anything right now" msgstr "" -#: ../cache/locales.php:102 +#: [title]conferences msgid "Conferences" msgstr "Конференции" -#: ../cache/locales.php:103 ../cache/locales.php:193 ../cache/locales.php:217 -#: ../cache/locales.php:468 +#: [title]groups [group]empty_title [menu]groups [page]groups msgid "Groups" msgstr "Группы" -#: ../cache/locales.php:104 +#: [chatroom]add msgid "Add a new Chat Room" msgstr "Создать Беседку" -#: ../cache/locales.php:105 ../cache/locales.php:368 +#: [chatroom]id [chatrooms]id msgid "Chat Room ID" msgstr "ID Беседки" -#: ../cache/locales.php:106 ../cache/locales.php:116 ../cache/locales.php:156 -#: ../cache/locales.php:361 ../cache/locales.php:369 ../cache/locales.php:424 +#: [chatroom]name +#, fuzzy +msgctxt "[chatroom]name" msgid "Name" msgstr "Имя" -#: ../cache/locales.php:107 ../cache/locales.php:157 ../cache/locales.php:371 -#: ../cache/locales.php:425 +#: [chatroom]nickname [general]nickname [chatrooms]nickname msgid "Nickname" msgstr "Псевдоним" -#: ../cache/locales.php:108 +#: [chatroom]autojoin_label msgid "Do you want do join automaticaly this Chat Room ?" msgstr "Хотите автоматически войти в эту Беседку?" -#: ../cache/locales.php:109 ../cache/locales.php:372 +#: [chatroom]bad_id [chatrooms]bad_id msgid "Bad Chatroom ID" msgstr "Неверный ID Беседки" -#: ../cache/locales.php:110 ../cache/locales.php:373 +#: [chatroom]empty_name [chatrooms]empty_name msgid "Empty name" msgstr "Имя не задано" -#: ../cache/locales.php:111 ../cache/locales.php:380 +#: [bookmarks]updated msgid "Bookmarks updated" msgstr "Закладки обновлены" -#: ../cache/locales.php:112 -msgid "An error occured : " +#: [bookmarks]error +#, fuzzy +msgid "An error occured :" msgstr "Произошла ошибка: " -#: ../cache/locales.php:113 +#: [bookmarks]configure msgid "Configure" msgstr "Настройка" -#: ../cache/locales.php:114 +#: [url]add msgid "Add a new URL" msgstr "Добавить новый URL" -#: ../cache/locales.php:115 +#: [url]url msgid "URL" msgstr "URL" -#: ../cache/locales.php:117 +#: [url]name +#, fuzzy +msgctxt "[url]name" +msgid "Name" +msgstr "Имя" + +#: [message]published msgid "Message Published" msgstr "Сообщение опубликовано" -#: ../cache/locales.php:118 ../cache/locales.php:138 +#: [message]encrypted msgid "Encrypted message" msgstr "Зашифрованное сообщение" -#: ../cache/locales.php:119 +#: [message]composing [chats]composing msgid "Composing..." msgstr "Печатает..." -#: ../cache/locales.php:120 +#: [message]paused [chats]paused msgid "Paused..." msgstr "Пауза..." -#: ../cache/locales.php:121 +#: [message]gone msgid "Contact gone" msgstr "" -#: ../cache/locales.php:122 -#, php-format +#: [chat]attention msgid "%s needs your attention" msgstr "%s нуждается в Вашем внимании" -#: ../cache/locales.php:123 +#: [chat]placeholder msgid "Your message here..." msgstr "Введите ваше сообщение здесь..." -#: ../cache/locales.php:124 +#: [chat]smileys msgid "Smileys" msgstr "Смайлики" -#: ../cache/locales.php:125 ../cache/locales.php:139 +#: [chat]empty_title [button]chat msgid "Chat" msgstr "Чат" -#: ../cache/locales.php:126 +#: [chat]empty_text msgid "Discuss with your contacts" msgstr "Обсудить с вашими контактами" -#: ../cache/locales.php:127 -msgid "Members" -msgstr "" - -#: ../cache/locales.php:128 ../cache/locales.php:376 -msgid "Connected to the chatroom" -msgstr "Подключились к Беседке" - -#: ../cache/locales.php:129 ../cache/locales.php:377 -msgid "Disconnected from the chatroom" -msgstr "Отключились от Беседки" - -#: ../cache/locales.php:130 ../cache/locales.php:200 ../cache/locales.php:469 -msgid "Configuration" -msgstr "Настройки" - -#: ../cache/locales.php:131 -msgid "Configuration saved" -msgstr "" - -#: ../cache/locales.php:132 -msgid "Subject" -msgstr "" - -#: ../cache/locales.php:133 -msgid "Subject changed" -msgstr "" - -#: ../cache/locales.php:134 -msgid "Open a new conversation by clicking on the plus button bellow" -msgstr "" - -#: ../cache/locales.php:135 -msgid "Chat with a contact" -msgstr "Пообщаться с контактом" - -#: ../cache/locales.php:136 +#: [chat]frequent [chats]frequent msgid "Frequent contacts" msgstr "" -#: ../cache/locales.php:137 +#: [chatroom]members +msgid "Members" +msgstr "" + +#: [chatroom]connected [chatrooms]connected +msgid "Connected to the chatroom" +msgstr "Подключились к Беседке" + +#: [chatroom]disconnected [chatrooms]disconnected +msgid "Disconnected from the chatroom" +msgstr "Отключились от Беседки" + +#: [chatroom]config [group]configuration [page]configuration +msgid "Configuration" +msgstr "Настройки" + +#: [chatroom]config_saved +msgid "Configuration saved" +msgstr "" + +#: [chatroom]subject +msgid "Subject" +msgstr "" + +#: [chatroom]subject_changed +msgid "Subject changed" +msgstr "" + +#: [chats]empty_title +msgid "No chats yet..." +msgstr "" + +#: [chats]empty +msgid "Open a new conversation by clicking on the plus button bellow or visit the Contacts page." +msgstr "" + +#: [chats]add +msgid "Chat with a contact" +msgstr "Пообщаться с контактом" + +#: [chats]more msgid "Load more contacts" msgstr "" -#: ../cache/locales.php:140 -msgid "General" -msgstr "Общие" - -#: ../cache/locales.php:141 -msgid "Language" -msgstr "Язык" - -#: ../cache/locales.php:142 -msgid "Roster display" -msgstr "" - -#: ../cache/locales.php:143 -msgid "Show the offline contacts" -msgstr "" - -#: ../cache/locales.php:144 -msgid "Hide the offline contacts" -msgstr "" - -#: ../cache/locales.php:145 -msgid "Appearence" -msgstr "Внешний вид" - -#: ../cache/locales.php:146 -msgid "This configuration is shared wherever you are connected !" -msgstr "Эта конфигурация действительна откуда бы Вы не подключились" - -#: ../cache/locales.php:148 -msgid "Notify on incoming message" -msgstr "Оповещать о входящих сообщениях" - -#: ../cache/locales.php:149 -msgid "Use desktop notifications" -msgstr "Использовать оповещения ОС" - -#: ../cache/locales.php:150 +#: [title]data msgid "Data" msgstr "Данные" -#: ../cache/locales.php:151 +#: [title]cache msgid "Cache" msgstr "Кэш" -#: ../cache/locales.php:152 ../cache/locales.php:218 ../cache/locales.php:466 +#: [title]contacts [menu]contacts [page]contacts msgid "Contacts" msgstr "Контакты" -#: ../cache/locales.php:153 ../cache/locales.php:480 +#: [title]posts [page]posts msgid "Posts" msgstr "Записи" -#: ../cache/locales.php:154 +#: [title]messages msgid "Messages" msgstr "Сообщения" -#: ../cache/locales.php:155 ../cache/locales.php:423 +#: [config]general +msgid "General" +msgstr "Общие" + +#: [config]language +msgid "Language" +msgstr "Язык" + +#: [config]roster +msgid "Roster display" +msgstr "" + +#: [config]roster_show +msgid "Show the offline contacts" +msgstr "" + +#: [config]roster_hide +msgid "Hide the offline contacts" +msgstr "" + +#: [config]appearence +msgid "Appearence" +msgstr "Внешний вид" + +#: [config]info +#, fuzzy +msgid "This configuration is shared wherever you are connected" +msgstr "Эта конфигурация действительна откуда бы Вы не подключились" + +#: [notifications]message +msgid "Notify on incoming message" +msgstr "Оповещать о входящих сообщениях" + +#: [notifications]desktop +msgid "Use desktop notifications" +msgstr "Использовать оповещения ОС" + +#: [general]legend [general]general_title msgid "General Informations" msgstr "Общая информация" -#: ../cache/locales.php:158 ../cache/locales.php:427 +#: [general]name [public_groups]name [chatrooms]name +msgid "Name" +msgstr "Имя" + +#: [general]date_of_birth msgid "Date of Birth" msgstr "Дата рождения" -#: ../cache/locales.php:159 ../cache/locales.php:428 +#: [general]gender msgid "Gender" msgstr "Пол" -#: ../cache/locales.php:160 ../cache/locales.php:429 +#: [general]marital msgid "Marital Status" msgstr "Семейное положение" -#: ../cache/locales.php:161 ../cache/locales.php:426 +#: [general]email msgid "Email" msgstr "Эл. почта" -#: ../cache/locales.php:162 ../cache/locales.php:430 +#: [general]website msgid "Website" msgstr "Веб-сайт" -#: ../cache/locales.php:163 ../cache/locales.php:431 +#: [general]about msgid "About Me" msgstr "О себе" -#: ../cache/locales.php:164 +#: [general]accounts msgid "Other Accounts" msgstr "Другие учётные записи" -#: ../cache/locales.php:165 +#: [general]tune msgid "Is Listening" msgstr "" -#: ../cache/locales.php:166 ../cache/locales.php:432 +#: [position]legend [position]position_title msgid "Geographic Position" msgstr "Географическое расположение" -#: ../cache/locales.php:167 ../cache/locales.php:433 +#: [position]locality msgid "Locality" msgstr "Местоположение" -#: ../cache/locales.php:168 ../cache/locales.php:434 +#: [position]country msgid "Country" msgstr "Страна" -#: ../cache/locales.php:169 +#: [mood]title msgid "Mood" msgstr "Настроение" -#: ../cache/locales.php:170 +#: [mood]im msgid "I'm " msgstr "Я " -#: ../cache/locales.php:171 +#: [listen]title msgid "Listening" msgstr "Слушаю" -#: ../cache/locales.php:173 +#: [last]title msgid "Last seen" msgstr "Последнее посещение" -#: ../cache/locales.php:174 +#: [client]title msgid "Client Informations" msgstr "Информация о клиенте" -#: ../cache/locales.php:175 +#: [explore]last_registered msgid "Last registered" msgstr "Последний зарегестрированый" -#: ../cache/locales.php:176 +#: [explore]explore msgid "Find some new friends" msgstr "" -#: ../cache/locales.php:177 ../cache/locales.php:533 +#: [edit]title [button]edit msgid "Edit" msgstr "Редактировать" -#: ../cache/locales.php:178 +#: [edit]alias msgid "Alias" msgstr "привязка" -#: ../cache/locales.php:179 +#: [edit]group msgid "Group" msgstr "Группа" -#: ../cache/locales.php:180 ../cache/locales.php:400 +#: [edit]updated [roster]updated msgid "Contact updated" msgstr "Контакты обновлены" -#: ../cache/locales.php:181 +#: [delete]title msgid "Are you sure?" msgstr "Вы уверены?" -#: ../cache/locales.php:182 -msgid "" -"You are going to delete one of your contacts, please confirm your action" -msgstr "" -"Вы собираетесь удалить один из ваших контактов. Пожалуйста, подтвердите это." +#: [delete]text +msgid "You are going to delete one of your contacts, please confirm your action" +msgstr "Вы собираетесь удалить один из ваших контактов. Пожалуйста, подтвердите это." -#: ../cache/locales.php:183 -#, php-format +#: [age]years msgid "%s years" msgstr "" -#: ../cache/locales.php:184 +#: [blog]last msgid "Last public post" msgstr "" -#: ../cache/locales.php:185 +#: [subscription]to +#, fuzzy +msgid "You can see this contact status" +msgstr "Нет публичной ленты для этого контакта" + +#: [subscription]to_button +msgid "Share my status" +msgstr "" + +#: [subscription]to_text +msgid "But this contact cannot see yours" +msgstr "" + +#: [subscription]from +#, fuzzy +msgid "You are not subscribed to this contact" +msgstr "Нет публичной ленты для этого контакта" + +#: [subscription]from_button +#, fuzzy +msgid "Ask to subscribe" +msgstr "Отписаться" + +#: [subscription]from_text +msgid "But this contact can still see if you are online" +msgstr "" + +#: [subscription]nil +#, fuzzy +msgid "No subscriptions" +msgstr "Подписки" + +#: [subscription]nil_button +msgid "Invite" +msgstr "" + +#: [subscription]nil_text +msgid "This contact is in your contact list but there is no subscriptions between the two accounts" +msgstr "" + +#: [group]subscribe msgid "Subscribe" msgstr "Подписаться" -#: ../cache/locales.php:186 +#: [group]subscribed msgid "Subscribed" msgstr "Подписано" -#: ../cache/locales.php:187 +#: [group]unsubscribe msgid "Unsubscribe" msgstr "Отписаться" -#: ../cache/locales.php:188 +#: [group]unsubscribe_text msgid "You are going to unsubscribe from this Group" msgstr "" -#: ../cache/locales.php:189 +#: [group]unsubscribed msgid "Unsubscribed" msgstr "" -#: ../cache/locales.php:190 +#: [group]share_label msgid "Make your membership to this group public to your friends" msgstr "Раскрыть ваше членство в данной группе вашим друзьям" -#: ../cache/locales.php:191 +#: [group]label_label msgid "Give a label for this group" msgstr "" -#: ../cache/locales.php:192 +#: [group]sure msgid "Are you sure ?" msgstr "Вы уверены?" -#: ../cache/locales.php:194 +#: [group]empty_text msgid "Discover, follow and share" msgstr "" -#: ../cache/locales.php:195 +#: [group]empty msgid "Something bad happened to this group" msgstr "" -#: ../cache/locales.php:196 +#: [group]config_saved msgid "Group configuration saved" msgstr "Настройки группы сохранены" -#: ../cache/locales.php:197 +#: [group]delete_title msgid "Delete the group" msgstr "" -#: ../cache/locales.php:198 -msgid "" -"You are going to delete the following group. Please confirm your action." +#: [group]delete_text +msgid "You are going to delete the following group. Please confirm your action." msgstr "" -#: ../cache/locales.php:199 -msgid "" -"It seems that this group doesn't exists anymore. Do you want to remove it " -"from your subscriptions?" +#: [group]delete_clean_text +msgid "It seems that this group doesn't exists anymore. Do you want to remove it from your subscriptions?" msgstr "" -#: ../cache/locales.php:201 ../cache/locales.php:408 +#: [group]counter +msgid "%s groups on this server" +msgstr "" + +#: [group]subscriptions [statistics]subscriptions msgid "Subscriptions" msgstr "Подписки" -#: ../cache/locales.php:202 ../cache/locales.php:290 +#: [group]servers +#, fuzzy +msgid "Groups servers" +msgstr "Группы" + +#: [group]search_server +msgid "Search for a new server" +msgstr "" + +#: [group]help_info1 +msgid "Groups are the perfect way to share posts about topics that you like with all the other Movim's users." +msgstr "" + +#: [group]help_info2 +msgid "Choose a server and a Group and subscribe to it using the %s button in the header. You can also create a new one using the %s button." +msgstr "" + +#: [group]help_info3 +msgid "Done? You can now publish a new post in the Group by using the %s button." +msgstr "" + +#: [group]help_info4 +msgid "You will find a list of all your subscribed Groups in My Subscriptions and receive instantly all the new incoming posts in the %sNews%s page." +msgstr "" + +#: [groups]empty_title msgid "Hello" msgstr "Здравствуйте" -#: ../cache/locales.php:203 ../cache/locales.php:225 ../cache/locales.php:291 +#: [groups]contact_post [hello]contact_post [menu]contact_post msgid "Contact post" msgstr "Для связи" -#: ../cache/locales.php:204 -msgid "" -"You don't have any subscriptions yet, select a group server above to start " -"exploring." +#: [groups]empty_text1 +msgid "You don't have any subscriptions yet, select a group server above to start exploring." msgstr "" -#: ../cache/locales.php:205 +#: [groups]empty_text2 msgid "Subscribe to your favorite feeds by bookmarking them." msgstr "" -#: ../cache/locales.php:206 +#: [groups]subscriptions msgid "My Subscriptions" msgstr "" -#: ../cache/locales.php:207 +#: [groups]add msgid "Create a new Group" msgstr "" -#: ../cache/locales.php:208 +#: [groups]name msgid "Group name" msgstr "" -#: ../cache/locales.php:209 +#: [groups]name_example msgid "My Little Pony - Fan Club" msgstr "My Little Pony -Фан Клуб" -#: ../cache/locales.php:210 +#: [groups]created msgid "Group created successfully" msgstr "" -#: ../cache/locales.php:211 +#: [groups]deleted msgid "Group deleted successfully" msgstr "" -#: ../cache/locales.php:212 +#: [groups]name_error msgid "Please provide a valid group name (4 characters minimum)" msgstr "" -#: ../cache/locales.php:213 +#: [groups]no_creation msgid "You cannot create a new Group on this server" msgstr "" -#: ../cache/locales.php:214 -#, php-format +#: [groups]sub msgid "%s subscribers" msgstr "" -#: ../cache/locales.php:215 -#, php-format +#: [groups]num msgid "%s posts" msgstr "" -#: ../cache/locales.php:216 +#: [groups]disco_error +#, fuzzy +msgid "This server doesn't exists" +msgstr "На этом сервере %s аккаунтов" + +#: [menu]all msgid "All" msgstr "Все" -#: ../cache/locales.php:219 +#: [menu]refresh msgid "Refresh all the streams" msgstr "Обновить все потоки" -#: ../cache/locales.php:220 ../cache/locales.php:402 -msgid "Search" -msgstr "Поиск" +#: [roster]search +#, fuzzy +msgid "Search in your contacts" +msgstr "Обсудить с вашими контактами" -#: ../cache/locales.php:221 +#: [hello]active_contacts +#, fuzzy +msgid "Active contacts" +msgstr "Ваши контакты" + +#: [hello]chat msgid "Go on the Chat page" msgstr "" -#: ../cache/locales.php:222 -msgid "Read all theses articles on the News page" -msgstr "" - -#: ../cache/locales.php:223 -msgid "Visit your public blog" -msgstr "" - -#: ../cache/locales.php:224 -msgid "See your public posts and share them with all your contacts" -msgstr "" - -#: ../cache/locales.php:226 -msgid "Universal share button" -msgstr "" - -#: ../cache/locales.php:227 -msgid "" -"Bookmark or drag and drop the following button in your toolbar and use it on " -"all the pages you want to share on Movim" -msgstr "" - -#: ../cache/locales.php:228 -msgid "Share on Movim" -msgstr "" - -#: ../cache/locales.php:229 -msgid "Frequently Asked Questions" -msgstr "Часто Задаваемые Вопросы (FAQ)" - -#: ../cache/locales.php:230 -msgid "What do the little banners refer to ?" -msgstr "Зачем нужны небольшие баннеры?" - -#: ../cache/locales.php:231 -msgid "" -"Thanks to these five little banners, you can quickly identitfy the level of " -"confdentiality applied to the information you provide." -msgstr "" -"при помощи этих пяти небольших баннеров Вы можете быстро определить уровень " -"конфиденциальности информации, которую вы представляете" - -#: ../cache/locales.php:232 -msgid "White, only you can see the information" -msgstr "Белый: только вы можете видеть эту информацию" - -#: ../cache/locales.php:233 -msgid "Green, you have chosen some contacts who can see your information" -msgstr "" -"Зеленый: вы выбрали несколько своих контактов, которые увидят эту информацию" - -#: ../cache/locales.php:234 -msgid "Orange, all your contact list can see your information" -msgstr "" -"Оранжевый: все из вашего контактного листа могут видеть эту информацию" - -#: ../cache/locales.php:235 -msgid "Red, everybody in the XMPP network can see your information" -msgstr "Красный: любой в сети ХМРР может видеть вашу информацию" - -#: ../cache/locales.php:236 -msgid "Black, the whole Internet can see your information" -msgstr "Черный: весь Интернет может видеть вашу информацию" - -#: ../cache/locales.php:237 -msgid "Looking for some documentation ?" -msgstr "Ищите документацию?" - -#: ../cache/locales.php:238 -msgid "Read the Wiki" -msgstr "Почитать Wiki" - -#: ../cache/locales.php:239 -msgid "Talk with us by email ?" -msgstr "Желаете связаться с нами по email?" - -#: ../cache/locales.php:240 -msgid "Join the Mailing List" -msgstr "Присоединиться к списку рассылки" - -#: ../cache/locales.php:241 -msgid "Chat with the team ?" -msgstr "Желаете пообщаться с нашей командой?" - -#: ../cache/locales.php:242 -msgid "Join the Chatroom" -msgstr "Присоединиться к конференции" - -#: ../cache/locales.php:243 -msgid "Location node created" -msgstr "Создан узел геолокации" - -#: ../cache/locales.php:244 -msgid "Bookmark node created" -msgstr "Создан узел закладок" - -#: ../cache/locales.php:245 -msgid "Profile node created" -msgstr "Создан узел профиля" - -#: ../cache/locales.php:246 -msgid "Avatar node created" -msgstr "Создан узел аватара" - -#: ../cache/locales.php:247 -msgid "Subscriptions node created" -msgstr "Создан узел подписок" - -#: ../cache/locales.php:248 -msgid "Microblog node created" -msgstr "Создан узел микроблога" - -#: ../cache/locales.php:249 -msgid "Location" -msgstr "Местоположение" - -#: ../cache/locales.php:250 -msgid "Wrong position" -msgstr "Неправильная позиция" - -#: ../cache/locales.php:251 -msgid "Location updated" -msgstr "Местонахождение обновлено" - -#: ../cache/locales.php:252 -msgid "Update my position" -msgstr "Обновить моё местоположение" - -#: ../cache/locales.php:253 -msgid "Wrong username" -msgstr "Неверное имя пользователя" - -#: ../cache/locales.php:254 -msgid "Invalid JID" -msgstr "Недействительный JID" - -#: ../cache/locales.php:255 -msgid "Empty Challenge from the server" -msgstr "Пустая Соль пришла с сервера" - -#: ../cache/locales.php:256 -msgid "XMPP Domain error, your account is not a correct Jabber ID" -msgstr "Ошибочный XMPP домен, недопустимый JID в вашей учетной записи" - -#: ../cache/locales.php:257 -msgid "Some data are missing !" -msgstr "Некоторые данные утеряны !" - -#: ../cache/locales.php:258 -msgid "Wrong password" -msgstr "Неверный пароль" - -#: ../cache/locales.php:259 -msgid "Internal server error" -msgstr "Внутренняя ошибка сервера" - -#: ../cache/locales.php:260 -msgid "Session error" -msgstr "Ошибка сеанса" - -#: ../cache/locales.php:261 -msgid "Account successfully created" -msgstr "Учётная запись успешно создана" - -#: ../cache/locales.php:262 ../cache/locales.php:271 -msgid "Your XMPP server is unauthorized" -msgstr "Ваш XMPP-сервер не авторизован" - -#: ../cache/locales.php:263 -msgid "The server takes too much time to respond" -msgstr "Сервер потребовал слишком много времени на ответ" - -#: ../cache/locales.php:264 -msgid "Your web browser is too old to use with Movim." -msgstr "Версия вашего браузера устарела для использования с Movin" - -#: ../cache/locales.php:265 -msgid "" -"Movim cannot talk with the server, please try again later (Websocket " -"connection error)" -msgstr "" -"Movim не может связаться с сервером, пожалуйста, попробуйте снова попозже " -"(Ошибка соединения с Websocket)" - -#: ../cache/locales.php:266 -msgid "Impossible login" -msgstr "" - -#: ../cache/locales.php:267 -msgid "Oops!" -msgstr "Упс!" - -#: ../cache/locales.php:268 ../cache/locales.php:449 ../cache/locales.php:455 -msgid "Unknown error" -msgstr "Неизвестная ошибка" - -#: ../cache/locales.php:269 -msgid "Invalid username format" -msgstr "" - -#: ../cache/locales.php:270 -msgid "Invalid password format" -msgstr "" - -#: ../cache/locales.php:272 -msgid "A Movim session is already open on an other device" -msgstr "" - -#: ../cache/locales.php:273 -msgid "Movim failed to authenticate. You entered wrong data" -msgstr "Идентификация в Movim неудалась. Вы ввели неверные данные." - -#: ../cache/locales.php:274 -msgid "Authentication mechanism not supported by Movim" -msgstr "Данный механизм аутентификации не поддерживается Movim" - -#: ../cache/locales.php:275 -msgid "The XMPP authentification failed" -msgstr "XMPP-аутентификация не прошла" - -#: ../cache/locales.php:276 -#, php-format -msgid "" -"You can login with Facebook (chat only) using %syour.id@chat.facebook.com%s " -"and your password" -msgstr "" -"Вы можете войти в Facebook (только чат), используя " -"%syour.id@chat.facebook.com%s и Ваш пароль" - -#: ../cache/locales.php:277 -#, php-format -msgid "%sGmail accounts are also compatible%s but are not fully supported" -msgstr "" -"%sУчетные записи Gmail%s также совместимы, но поддерживаются не полностью" - -#: ../cache/locales.php:278 -msgid "You can login using your favorite Jabber account" -msgstr "Вы можете войти используя ваш любимый Jabber" - -#: ../cache/locales.php:279 -msgid "or with our demonstration account" -msgstr "или с помощью нашей демо учетной записи" - -#: ../cache/locales.php:280 ../cache/locales.php:435 -msgid "Accounts" -msgstr "Учётные записи" - -#: ../cache/locales.php:281 -msgid "My address" -msgstr "Мой адрес" - -#: ../cache/locales.php:283 -msgid "Create one !" -msgstr "Создайте учетную запись!" - -#: ../cache/locales.php:284 -msgid "No account yet ?" -msgstr "Еще нет учетной записи?" - -#: ../cache/locales.php:285 -msgid "Another account" -msgstr "Другая учётная запись" - -#: ../cache/locales.php:286 -msgid "You can login with accounts from theses servers" -msgstr "" - -#: ../cache/locales.php:287 -msgid "Connected" -msgstr "Соединение установлено" - -#: ../cache/locales.php:288 -msgid "Population" -msgstr "Население" - -#: ../cache/locales.php:289 -msgid "Bad nickname (between 4 and 40 characters)" -msgstr "" - -#: ../cache/locales.php:292 -msgid "" -"Welcome on your news feed, here you will see all the posts published in the " -"groups you have subscribed." -msgstr "" -"Добро пожаловать в вашу новостную ленту, здесь вы увидите все записи, " -"опубликованные в группах, на которые вы подписаны" - -#: ../cache/locales.php:293 -msgid "Refreshing all the streams" -msgstr "Обновляются все потоки" - -#: ../cache/locales.php:294 -msgid "This post is public" -msgstr "" - -#: ../cache/locales.php:295 -msgid "Manage your members" -msgstr "Управление позицией пользователей" - -#: ../cache/locales.php:296 -msgid "Get the members" -msgstr "Получить членство" - -#: ../cache/locales.php:297 -msgid "Affiliations saved" -msgstr "Принадлежность сохраняется" - -#: ../cache/locales.php:298 -msgid "Manage your subscriptions" -msgstr "Управлять моими подписками" - -#: ../cache/locales.php:299 -msgid "Manage the subscriptions" -msgstr "Управлять подписками" - -#: ../cache/locales.php:300 -msgid "Get the subscriptions" -msgstr "Получить подписки" - -#: ../cache/locales.php:301 -msgid "Subscriptions saved" -msgstr "Подписки сохранены" - -#: ../cache/locales.php:302 -msgid "Pending Invitations" -msgstr "Ожидающие решения приглашения" - -#: ../cache/locales.php:303 -#, php-format -msgid "%s wants to talk with you" -msgstr "%s хочет поговорить с Вами" - -#: ../cache/locales.php:304 -msgid "Manage" -msgstr "Управлять" - -#: ../cache/locales.php:305 ../cache/locales.php:338 -msgid "News Feed" -msgstr "Новостная лента" - -#: ../cache/locales.php:306 ../cache/locales.php:339 -msgid "Discover and register to the groups you are interested in" -msgstr "Найдите и зарегистрируйтесь в интересных вам группах" - -#: ../cache/locales.php:307 ../cache/locales.php:340 ../cache/locales.php:482 -msgid "Preview" -msgstr "Предпросмотр" - -#: ../cache/locales.php:308 ../cache/locales.php:341 ../cache/locales.php:478 -msgid "Help" -msgstr "Помощь" - -#: ../cache/locales.php:309 ../cache/locales.php:342 -msgid "More help" -msgstr "" - -#: ../cache/locales.php:310 ../cache/locales.php:343 -msgid "Markdown syntax manual" -msgstr "" - -#: ../cache/locales.php:311 ../cache/locales.php:344 ../cache/locales.php:681 -msgid "Title" -msgstr "Название" - -#: ../cache/locales.php:312 ../cache/locales.php:345 -msgid "Content" -msgstr "" - -#: ../cache/locales.php:313 ../cache/locales.php:346 -msgid "Link" -msgstr "Ссылка" - -#: ../cache/locales.php:314 ../cache/locales.php:347 -msgid "Tags" -msgstr "" - -#: ../cache/locales.php:315 ../cache/locales.php:348 -msgid "Please enter a valid url" -msgstr "" - -#: ../cache/locales.php:316 ../cache/locales.php:349 -msgid "No content to preview" -msgstr "" - -#: ../cache/locales.php:317 ../cache/locales.php:350 ../cache/locales.php:687 -msgid "No content" -msgstr "Нет данных" - -#: ../cache/locales.php:318 ../cache/locales.php:351 -msgid "Post published" -msgstr "" - -#: ../cache/locales.php:319 ../cache/locales.php:352 -msgid "Post deleted" -msgstr "" - -#: ../cache/locales.php:320 ../cache/locales.php:353 -msgid "This picture will be added to your gallery" -msgstr "" - -#: ../cache/locales.php:321 ../cache/locales.php:354 -msgid "What's Hot" -msgstr "Что актуально" - -#: ../cache/locales.php:322 ../cache/locales.php:355 -msgid "New post" -msgstr "" - -#: ../cache/locales.php:323 ../cache/locales.php:357 -msgid "" -"You can also use services like Imgur or Flickr to host your picture and " -"paste the link here." -msgstr "" - -#: ../cache/locales.php:324 -#, php-format -msgid "This is a re-post from %s" -msgstr "" - -#: ../cache/locales.php:325 -#, php-format -msgid "See %s profile" -msgstr "" - -#: ../cache/locales.php:326 -msgid "Publish this post on your public feed?" -msgstr "" - -#: ../cache/locales.php:327 -msgid "Post published on your blog" -msgstr "" - -#: ../cache/locales.php:328 -msgid "Post removed from your blog" -msgstr "" - -#: ../cache/locales.php:329 ../cache/locales.php:701 -msgid "Delete this post" -msgstr "Удалить этот пост" - -#: ../cache/locales.php:330 -msgid "You are going to delete this post, please confirm your action" -msgstr "" - -#: ../cache/locales.php:331 -msgid "Comments disabled" -msgstr "" - -#: ../cache/locales.php:332 -msgid "Comment published" -msgstr "" - -#: ../cache/locales.php:333 -msgid "Disconnect" -msgstr "Отсоединиться" - -#: ../cache/locales.php:334 -msgid "Your status here !" -msgstr "Ваш статус здесь !" - -#: ../cache/locales.php:335 -msgid "Status updated" -msgstr "Статус обновлен" - -#: ../cache/locales.php:336 -msgid "Status" -msgstr "Состояние" - -#: ../cache/locales.php:337 -msgid "Presence" -msgstr "Присутствие" - -#: ../cache/locales.php:356 -msgid "Publish" -msgstr "" - -#: ../cache/locales.php:358 -msgid "You cannot publish a post on this Group" -msgstr "" - -#: ../cache/locales.php:359 -msgid "" -"Some fields have been filled in. Do you still want to go back and loose " -"their content?" -msgstr "" - -#: ../cache/locales.php:360 -msgid "Shared" -msgstr "Общее" - -#: ../cache/locales.php:362 -#, php-format -msgid "%s has been added to your public groups" -msgstr "Группа %s была добавлена в список ваших публичных групп" - -#: ../cache/locales.php:363 -#, php-format -msgid "%s has been removed from your public groups" -msgstr "Группа %s была удалена из списка ваших публичных групп" - -#: ../cache/locales.php:364 -msgid "Add a chatroom" -msgstr "Добавить комнату" - -#: ../cache/locales.php:365 -msgid "You don't have any chatroom yet." -msgstr "" - -#: ../cache/locales.php:366 -msgid "Add one by clicking on the add button in the header." -msgstr "" - -#: ../cache/locales.php:367 -msgid "Chatrooms" -msgstr "Беседки" - -#: ../cache/locales.php:370 -msgid "My Favorite Room" -msgstr "Мои любимые комнаты" - -#: ../cache/locales.php:374 -msgid "Remove a chatroom" -msgstr "Удалить комнату" - -#: ../cache/locales.php:375 -msgid "" -"You are going to remove the following chatroom. Please confirm your action." -msgstr "" -"Вы собирается удалить комнату, на которую вы подписаны. Пожулуйста, " -"подтвердите это." - -#: ../cache/locales.php:378 -msgid "Users in the room" -msgstr "Пользователи в комнате" - -#: ../cache/locales.php:379 -msgid "Please enter a correct nickname (6 to 40 characters)" -msgstr "" - -#: ../cache/locales.php:381 -msgid "Public chatroom" -msgstr "" - -#: ../cache/locales.php:382 -msgid "Please provide a room address" -msgstr "" - -#: ../cache/locales.php:383 -msgid "You are currently logued as an anonymous user." -msgstr "" - -#: ../cache/locales.php:384 -msgid "" -"You can join using your own account or create one on the login page by " -"loging out using the cross in the top-right corner." -msgstr "" - -#: ../cache/locales.php:385 -#, php-format -msgid "Login on %s" -msgstr "" - -#: ../cache/locales.php:386 -msgid "Your nickname" -msgstr "" - -#: ../cache/locales.php:387 -msgid "Ungrouped" -msgstr "Разное" - -#: ../cache/locales.php:388 -msgid "Show disconnected contacts" -msgstr "Показать отключенные контакты" - -#: ../cache/locales.php:389 -msgid "Hide disconnected contacts" -msgstr "Скрыть отключенные контакты" - -#: ../cache/locales.php:390 -#, php-format -msgid "Show group %s" -msgstr "Показать группу %s" - -#: ../cache/locales.php:391 -#, php-format -msgid "Hide group %s" -msgstr "Скрыть группу %s" - -#: ../cache/locales.php:392 -msgid "Please enter a valid Jabber ID" -msgstr "Пожалуйста, введи правильный Jabber ID" - -#: ../cache/locales.php:393 -msgid "" -"No contacts ? You can add one using the + button bellow or going to the " -"Explore page" -msgstr "" -"Нет контактов? Вы можете добавить их с помощью кнопки + ниже или перейдя на " -"страничку Обозревателя." - -#: ../cache/locales.php:394 -msgid "Show/Hide" -msgstr "Показать/Скрыть" - -#: ../cache/locales.php:395 -msgid "Enter the Jabber ID of your contact." -msgstr "Введите Jabber ID" - -#: ../cache/locales.php:396 -msgid "Press enter to validate." -msgstr "Нажмите Enter для проверки." - -#: ../cache/locales.php:397 -msgid "JID" -msgstr "JID" - -#: ../cache/locales.php:398 -msgid "Results" -msgstr "Результаты" - -#: ../cache/locales.php:399 -msgid "Contact added" -msgstr "Контакт добавлен" - -#: ../cache/locales.php:401 -msgid "Contact deleted" -msgstr "Контакт удалён" - -#: ../cache/locales.php:403 -msgid "This is not a valid url" -msgstr "" - -#: ../cache/locales.php:404 -msgid "Sharing the URL" -msgstr "" - -#: ../cache/locales.php:405 -msgid "Statistics" -msgstr "Статистика" - -#: ../cache/locales.php:406 -msgid "Since" -msgstr "С" - -#: ../cache/locales.php:407 -msgid "Sessions" -msgstr "Сеансы" - -#: ../cache/locales.php:409 -msgid "Monthly Subscriptions" -msgstr "Ежемесячные подписки" - -#: ../cache/locales.php:410 -msgid "Monthly Subscriptions Cumulated" -msgstr "Аккумулирующие ежемесячные подписки" - -#: ../cache/locales.php:412 -msgid "" -"Movim is a decentralized social network, before creating a new account you " -"need to choose a server to register." -msgstr "" -"Movim — это децентрализованная социальная сеть. Перед созданием учетной " -"записи нужно выбрать сервер." - -#: ../cache/locales.php:413 -msgid "Your server here ?" -msgstr "Ваш сервер здесь ?" - -#: ../cache/locales.php:414 -msgid "Contact us to add yours to the officially supported servers list" -msgstr "" -"Свяжитесь с нами чтобы добавить свой сервер в список официальных серверов" - -#: ../cache/locales.php:416 -msgid "No public feed for this contact" -msgstr "Нет публичной ленты для этого контакта" - -#: ../cache/locales.php:417 -msgid "No contact specified" -msgstr "Контакт не задан" - -#: ../cache/locales.php:418 ../cache/locales.php:473 -msgid "Profile" -msgstr "Профиль" - -#: ../cache/locales.php:419 -msgid "Profile Updated" -msgstr "Профиль обновлён" - -#: ../cache/locales.php:420 -msgid "Profile Not Updated" -msgstr "Профиль не обновлён" - -#: ../cache/locales.php:421 -msgid "Your profile is now public" -msgstr "Ваш профиль теперь общедоступен" - -#: ../cache/locales.php:422 -msgid "Your profile is now restricted" -msgstr "Ваш профиль теперь скрыт" - -#: ../cache/locales.php:436 -msgid "Twitter" -msgstr "Твиттер" - -#: ../cache/locales.php:437 -msgid "Skype" -msgstr "Skype" - -#: ../cache/locales.php:438 -msgid "Yahoo" -msgstr "Yahoo" - -#: ../cache/locales.php:439 -msgid "Privacy Level" -msgstr "Уровень приватности" - -#: ../cache/locales.php:440 -msgid "Is this profile public ?" -msgstr "Этот профиль общедоступен?" - -#: ../cache/locales.php:441 -msgid "" -"Please pay attention ! By making your profile public, all the information " -"listed above will be available for all the Movim users and on the whole " -"Internet." -msgstr "" -"Внимание! Делая свой профиль общедоступным, вы соглашаетесь с тем, что вся " -"нижеперечисленная информация станет доступна всем пользователям Movim и " -"всему Интернету." - -#: ../cache/locales.php:442 -msgid "Call" -msgstr "Вызов" - -#: ../cache/locales.php:443 -msgid "Hang up" -msgstr "Повесить трубку" - -#: ../cache/locales.php:444 -msgid "Connection" -msgstr "Соединение" - -#: ../cache/locales.php:445 ../cache/locales.php:451 -msgid "Hung up" -msgstr "Вызов завершен" - -#: ../cache/locales.php:446 ../cache/locales.php:452 -msgid "Your contact is busy" -msgstr "Ваш контакт занят" - -#: ../cache/locales.php:447 ../cache/locales.php:453 -msgid "Declined" -msgstr "Отклонено" - -#: ../cache/locales.php:448 ../cache/locales.php:454 -msgid "Remote application incompatible" -msgstr "Удаленное приложение несовместимо" - -#: ../cache/locales.php:450 ../cache/locales.php:456 -msgid "Is calling you" -msgstr "Звонит вам" - -#: ../cache/locales.php:457 -msgid "You don't have javascript enabled. Good luck with that." -msgstr "У вас не активирован javascript. Удачи вам в этом." - -#: ../cache/locales.php:458 -msgid "" -"Movim is a kickass distributed social networking platform that protect your " -"privacy an comes with a set of awesome features." -msgstr "" -"Movim — пацанская распределенная платформа социальная активности, которая " -"защищает вашу приватность и имеет много классных фишек." - -#: ../cache/locales.php:459 -msgid "Administration" -msgstr "Администрирование" - -#: ../cache/locales.php:460 -msgid "Home" -msgstr "Домой" - -#: ../cache/locales.php:461 -msgid "Discover" -msgstr "Открытие" - -#: ../cache/locales.php:462 -msgid "Explore" -msgstr "Обзор" - -#: ../cache/locales.php:463 -msgid "Account Creation" -msgstr "Создание учётной записи" - -#: ../cache/locales.php:464 +#: [hello]news [page]news msgid "News" msgstr "Новости" -#: ../cache/locales.php:465 -msgid "Avatar" -msgstr "Фотография" - -#: ../cache/locales.php:467 -msgid "Chats" -msgstr "Чаты" - -#: ../cache/locales.php:470 -msgid "Server" -msgstr "Сервер" - -#: ../cache/locales.php:471 -msgid "Public Groups" -msgstr "Открытые Группы" - -#: ../cache/locales.php:472 -msgid "Viewer" -msgstr "Зритель" - -#: ../cache/locales.php:474 -msgid "Media" -msgstr "Мультимедиа" - -#: ../cache/locales.php:475 -msgid "Blog" -msgstr "Блог" - -#: ../cache/locales.php:476 -msgid "About" -msgstr "О" - -#: ../cache/locales.php:477 -msgid "Login" -msgstr "Имя пользователя" - -#: ../cache/locales.php:479 -msgid "Feed" -msgstr "Лента" - -#: ../cache/locales.php:481 -msgid "Gallery" -msgstr "Галерея" - -#: ../cache/locales.php:483 -msgid "Visio-conference" -msgstr "Visio-конференция" - -#: ../cache/locales.php:484 -msgid "Pods" -msgstr "Поды" - -#: ../cache/locales.php:485 -msgid "Share" +#: [hello]news_page +msgid "Read all theses articles on the News page" msgstr "" -#: ../cache/locales.php:486 -msgid "Room" +#: [hello]blog_title +msgid "Visit your public blog" msgstr "" -#: ../cache/locales.php:487 -#, php-format -msgid "Error: %s" -msgstr "Ошибка: %s" - -#: ../cache/locales.php:488 -#, php-format -msgid "Cannot load file '%s'" -msgstr "Не удаётся получить файл '%s'" - -#: ../cache/locales.php:489 -#, php-format -msgid "Route error, please set all the parameters for the page %s" -msgstr "Ошибка маршрута, пожалуйста, настройте все параметры на странице %s" - -#: ../cache/locales.php:490 -#, php-format -msgid "Requested widget '%s' doesn't exist." -msgstr "Запрашиваемый виджет '%s' не существует." - -#: ../cache/locales.php:491 -#, php-format -msgid "Requested event '%s' not registered." -msgstr "Запрашиваемое событие '%s' не зарегистрировано." - -#: ../cache/locales.php:492 -msgid "Whoops!" -msgstr "Ой-ой!" - -#: ../cache/locales.php:493 -msgid "It seem that you don't have any pictures here?" -msgstr "Кажется, у вас нет никаких изображений здесь?" - -#: ../cache/locales.php:494 -msgid "You can try to upload a couple by going to the Media page" +#: [hello]blog_text +msgid "See your public posts and share them with all your contacts" msgstr "" -"Вы можете попытаться загрузить парочку, перейдя на страницу \"Медиа\"" -#: ../cache/locales.php:495 -#, php-format -msgid "%s - About" -msgstr "%s - об" +#: [hello]share_title +msgid "Universal share button" +msgstr "" -#: ../cache/locales.php:496 -#, php-format -msgid "%s - Account" -msgstr "%s - Аккаунт" +#: [hello]share_text +msgid "Bookmark or drag and drop the following button in your toolbar and use it on all the pages you want to share on Movim" +msgstr "" -#: ../cache/locales.php:497 -#, php-format -msgid "%s - Administration Panel" -msgstr "%s - Панель управления" +#: [hello]share_button +msgid "Share on Movim" +msgstr "" -#: ../cache/locales.php:498 -#, php-format -msgid "%s - Blog" -msgstr "%s - Блог" +#: [help]faq +msgid "Frequently Asked Questions" +msgstr "Часто Задаваемые Вопросы (FAQ)" -#: ../cache/locales.php:499 -#, php-format -msgid "%s - Configuration" -msgstr "%s - настройки" +#: [banner]title +msgid "What do the little banners refer to ?" +msgstr "Зачем нужны небольшие баннеры?" -#: ../cache/locales.php:500 -#, php-format -msgid "%s - Discover" -msgstr "%s - Открытия" +#: [banner]info1 +msgid "Thanks to these five little banners, you can quickly identitfy the level of confdentiality applied to the information you provide." +msgstr "при помощи этих пяти небольших баннеров Вы можете быстро определить уровень конфиденциальности информации, которую вы представляете" -#: ../cache/locales.php:501 -#, php-format -msgid "%s - Explore" -msgstr "%s - Обзор" +#: [banner]white +msgid "White, only you can see the information" +msgstr "Белый: только вы можете видеть эту информацию" -#: ../cache/locales.php:502 -#, php-format -msgid "%s - Help Page" -msgstr "%s - Страница помощи" +#: [banner]green +msgid "Green, you have chosen some contacts who can see your information" +msgstr "Зеленый: вы выбрали несколько своих контактов, которые увидят эту информацию" -#: ../cache/locales.php:503 -#, php-format -msgid "%s - Login to Movim" -msgstr "%s - Вход в MOVIM" +#: [banner]orange +msgid "Orange, all your contact list can see your information" +msgstr "Оранжевый: все из вашего контактного листа могут видеть эту информацию" -#: ../cache/locales.php:504 -#, php-format -msgid "%s - Welcome to Movim" -msgstr "%s - Добро пожаловать в MOVIM" +#: [banner]red +msgid "Red, everybody in the XMPP network can see your information" +msgstr "Красный: любой в сети ХМРР может видеть вашу информацию" -#: ../cache/locales.php:505 -#, php-format -msgid "%s - Media" -msgstr "%s - Медиа" +#: [banner]black +msgid "Black, the whole Internet can see your information" +msgstr "Черный: весь Интернет может видеть вашу информацию" -#: ../cache/locales.php:506 -#, php-format -msgid "%s - News" -msgstr "%s - Новости" +#: [wiki]question +msgid "Looking for some documentation ?" +msgstr "Ищите документацию?" -#: ../cache/locales.php:507 -#, php-format -msgid "%s - Group Configuration" -msgstr "%s - Настройки группы" +#: [wiki]button +msgid "Read the Wiki" +msgstr "Почитать Wiki" -#: ../cache/locales.php:508 -#, php-format -msgid "%s - Group" -msgstr "%s - Группа" +#: [ml]question +msgid "Talk with us by email ?" +msgstr "Желаете связаться с нами по email?" -#: ../cache/locales.php:509 -#, php-format -msgid "%s - 404" -msgstr "%s - 404" +#: [ml]button +msgid "Join the Mailing List" +msgstr "Присоединиться к списку рассылки" -#: ../cache/locales.php:510 -#, php-format -msgid "%s - Profile" -msgstr "%s - Профиль" +#: [chatroom]question +msgid "Chat with the team ?" +msgstr "Желаете пообщаться с нашей командой?" -#: ../cache/locales.php:511 -#, php-format -msgid "%s - Server" -msgstr "%s - Сервер" +#: [chatroom]button +msgid "Join the Chatroom" +msgstr "Присоединиться к конференции" -#: ../cache/locales.php:512 -msgid "Validate" -msgstr "Проверить" +#: [init]location +msgid "Location node created" +msgstr "Создан узел геолокации" -#: ../cache/locales.php:513 -msgid "Refresh" -msgstr "Обновить" +#: [init]bookmark +msgid "Bookmark node created" +msgstr "Создан узел закладок" -#: ../cache/locales.php:514 -msgid "Add" -msgstr "Добавить" +#: [init]vcard4 +msgid "Profile node created" +msgstr "Создан узел профиля" -#: ../cache/locales.php:515 -msgid "Delete" -msgstr "Удалить" +#: [init]avatar +msgid "Avatar node created" +msgstr "Создан узел аватара" -#: ../cache/locales.php:516 -msgid "Remove" -msgstr "Удалить" +#: [init]subscriptions +msgid "Subscriptions node created" +msgstr "Создан узел подписок" -#: ../cache/locales.php:517 -msgid "Cancel" -msgstr "Отменить" +#: [init]microblog +msgid "Microblog node created" +msgstr "Создан узел микроблога" -#: ../cache/locales.php:518 -msgid "Close" -msgstr "Закрыть" +#: [location]title +msgid "Location" +msgstr "Местоположение" -#: ../cache/locales.php:519 -msgid "Update" -msgstr "Обновить" +#: [location]wrong_postition +msgid "Wrong position" +msgstr "Неправильная позиция" -#: ../cache/locales.php:520 -msgid "Updating" -msgstr "Идёт обновление" +#: [location]updated +msgid "Location updated" +msgstr "Местонахождение обновлено" -#: ../cache/locales.php:521 +#: [location]update +msgid "Update my position" +msgstr "Обновить моё местоположение" + +#: [login_anonymous]bad_username +msgid "Bad nickname (between 4 and 40 characters)" +msgstr "" + +#: [error]username +msgid "Wrong username" +msgstr "Неверное имя пользователя" + +#: [error]jid +msgid "Invalid JID" +msgstr "Недействительный JID" + +#: [error]empty_challenge +msgid "Empty Challenge from the server" +msgstr "Пустая Соль пришла с сервера" + +#: [error]dns +msgid "XMPP Domain error, your account is not a correct Jabber ID" +msgstr "Ошибочный XMPP домен, недопустимый JID в вашей учетной записи" + +#: [error]data_missings +msgid "Some data are missing !" +msgstr "Некоторые данные утеряны !" + +#: [error]wrong_password +msgid "Wrong password" +msgstr "Неверный пароль" + +#: [error]internal +msgid "Internal server error" +msgstr "Внутренняя ошибка сервера" + +#: [error]session +msgid "Session error" +msgstr "Ошибка сеанса" + +#: [error]account_created +msgid "Account successfully created" +msgstr "Учётная запись успешно создана" + +#: [error]xmpp_unauthorized +#, fuzzy +msgctxt "[error]xmpp_unauthorized" +msgid "Your XMPP server is unauthorized" +msgstr "Ваш XMPP-сервер не авторизован" + +#: [error]mec_error +msgid "The server takes too much time to respond" +msgstr "Сервер потребовал слишком много времени на ответ" + +#: [error]too_old +msgid "Your web browser is too old to use with Movim." +msgstr "Версия вашего браузера устарела для использования с Movin" + +#: [error]websocket +msgid "Movim cannot talk with the server, please try again later (Websocket connection error)" +msgstr "Movim не может связаться с сервером, пожалуйста, попробуйте снова попозже (Ошибка соединения с Websocket)" + +#: [error]impossible +msgid "Impossible login" +msgstr "" + +#: [error]title +msgid "Oops!" +msgstr "Упс!" + +#: [error]default [visio]unknown_error +msgid "Unknown error" +msgstr "Неизвестная ошибка" + +#: [error]login_format +msgid "Invalid username format" +msgstr "" + +#: [error]password_format +msgid "Invalid password format" +msgstr "" + +#: [error]unauthorized +#, fuzzy +msgctxt "[error]unauthorized" +msgid "Your XMPP server is unauthorized" +msgstr "Ваш XMPP-сервер не авторизован" + +#: [error]conflict +msgid "A Movim session is already open on an other device" +msgstr "" + +#: [error]wrong_account +msgid "Movim failed to authenticate. You entered wrong data" +msgstr "Идентификация в Movim неудалась. Вы ввели неверные данные." + +#: [error]mechanism +msgid "Authentication mechanism not supported by Movim" +msgstr "Данный механизм аутентификации не поддерживается Movim" + +#: [error]fail_auth +msgid "The XMPP authentification failed" +msgstr "XMPP-аутентификация не прошла" + +#: [account]title [accounts]accounts_title +msgid "Accounts" +msgstr "Учётные записи" + +#: [form]username +msgid "My address" +msgstr "Мой адрес" + +#: [form]create_one +msgid "Create one !" +msgstr "Создайте учетную запись!" + +#: [form]another_account +msgid "Another account" +msgstr "Другая учётная запись" + +#: [form]no_account +msgid "No account yet ?" +msgstr "Еще нет учетной записи?" + +#: [form]whitelist.info +msgid "You can login with accounts from theses servers" +msgstr "" + +#: [form]connected +msgid "Connected" +msgstr "Соединение установлено" + +#: [form]population +msgid "Population" +msgstr "Население" + +#: [menu]empty_title +msgid "No news yet..." +msgstr "" + +#: [menu]empty +#, fuzzy +msgid "Welcome on your news feed, here you will see all the posts published by your contacts and in the groups you have subscribed." +msgstr "Добро пожаловать в вашу новостную ленту, здесь вы увидите все записи, опубликованные в группах, на которые вы подписаны" + +#: [menu]refresh +msgid "Refreshing all the streams" +msgstr "Обновляются все потоки" + +#: [menu]public +msgid "This post is public" +msgstr "" + +#: [affiliations]title +msgid "Manage your members" +msgstr "Управление позицией пользователей" + +#: [affiliations]get +msgid "Get the members" +msgstr "Получить членство" + +#: [affiliations]saved +msgid "Affiliations saved" +msgstr "Принадлежность сохраняется" + +#: [subscriptions]title +msgid "Manage your subscriptions" +msgstr "Управлять моими подписками" + +#: [subscriptions]info +msgid "Manage the subscriptions" +msgstr "Управлять подписками" + +#: [subscriptions]get +msgid "Get the subscriptions" +msgstr "Получить подписки" + +#: [subscriptions]saved +msgid "Subscriptions saved" +msgstr "Подписки сохранены" + +#: [notifs]title +msgid "Pending Invitations" +msgstr "Ожидающие решения приглашения" + +#: [notifs]wants_to_talk +msgid "%s wants to talk with you" +msgstr "%s хочет поговорить с Вами" + +#: [notifs]manage +msgid "Manage" +msgstr "Управлять" + +#: [post]news_feed +msgid "News Feed" +msgstr "Новостная лента" + +#: [post]placeholder +msgid "Discover and register to the groups you are interested in" +msgstr "Найдите и зарегистрируйтесь в интересных вам группах" + +#: [post]preview [page]preview +msgid "Preview" +msgstr "Предпросмотр" + +#: [post]help [page]help +msgid "Help" +msgstr "Помощь" + +#: [post]help_more +msgid "More help" +msgstr "" + +#: [post]help_manual +msgid "Markdown syntax manual" +msgstr "" + +#: [post]title +msgid "Title" +msgstr "Название" + +#: [post]content +msgid "Content" +msgstr "" + +#: [post]link +msgid "Link" +msgstr "Ссылка" + +#: [post]tags +msgid "Tags" +msgstr "" + +#: [post]valid_url [publish]valid_url +msgid "Please enter a valid url" +msgstr "" + +#: [post]no_content_preview [publish]no_content_preview +msgid "No content to preview" +msgstr "" + +#: [post]no_content [publish]no_content [post]empty +msgid "No content" +msgstr "Нет данных" + +#: [post]published +msgid "Post published" +msgstr "" + +#: [post]deleted +msgid "Post deleted" +msgstr "" + +#: [post]gallery +msgid "This picture will be added to your gallery" +msgstr "" + +#: [post]hot +msgid "What's Hot" +msgstr "Что актуально" + +#: [post]hot_text +msgid "Posts recently published in Groups that you are not subscribed (yet)" +msgstr "" + +#: [post]new [publish]new +msgid "New post" +msgstr "" + +#: [post]embed_tip +msgid "You can also use services like Imgur or Flickr to host your picture and paste the link here." +msgstr "" + +#: [post]repost +msgid "This is a re-post from %s" +msgstr "" + +#: [post]repost_profile +msgid "See %s profile" +msgstr "" + +#: [post]public +#, fuzzy +msgid "Publish this post publicly?" +msgstr "Этот профиль общедоступен?" + +#: [post]blog_add +msgid "Post published on your blog" +msgstr "" + +#: [post]blog_remove +msgid "Post removed from your blog" +msgstr "" + +#: [post]delete_title [post]delete +msgid "Delete this post" +msgstr "Удалить этот пост" + +#: [post]delete_text +msgid "You are going to delete this post, please confirm your action" +msgstr "" + +#: [post]comments_disabled +msgid "Comments disabled" +msgstr "" + +#: [post]comment_published +msgid "Comment published" +msgstr "" + +#: [status]disconnect +msgid "Disconnect" +msgstr "Отсоединиться" + +#: [status]here +msgid "Your status here !" +msgstr "Ваш статус здесь !" + +#: [status]updated +msgid "Status updated" +msgstr "Статус обновлен" + +#: [status]status +msgid "Status" +msgstr "Состояние" + +#: [status]presence +msgid "Presence" +msgstr "Присутствие" + +#: [status]online +msgid "Online with Movim" +msgstr "" + +#: [publish]title +msgid "Publish" +msgstr "" + +#: [publish]attach +msgid "Add a file or a picture to your post" +msgstr "" + +#: [publish]no_publication +msgid "You cannot publish a post on this Group" +msgstr "" + +#: [publish]form_filled +msgid "Some fields have been filled in. Do you still want to go back and loose their content?" +msgstr "" + +#: [public_groups]shared +msgid "Shared" +msgstr "Общее" + +#: [public_groups]added +msgid "%s has been added to your public groups" +msgstr "Группа %s была добавлена в список ваших публичных групп" + +#: [rooms]add +msgid "Add a chatroom" +msgstr "Добавить комнату" + +#: [rooms]empty_text1 +msgid "You don't have any chatroom yet." +msgstr "" + +#: [rooms]empty_text2 +msgid "Add one by clicking on the add button in the header." +msgstr "" + +#: [chatrooms]title +msgid "Chatrooms" +msgstr "Беседки" + +#: [chatrooms]name_placeholder +msgid "My Favorite Room" +msgstr "Мои любимые комнаты" + +#: [chatrooms]users +msgid "Users in the room" +msgstr "Пользователи в комнате" + +#: [chatrooms]bad_nickname +msgid "Please enter a correct nickname (2 to 40 characters)" +msgstr "" + +#: [room]anonymous_title +msgid "Public chatroom" +msgstr "" + +#: [room]no_room +msgid "Please provide a room address" +msgstr "" + +#: [room]anonymous_text1 +msgid "You are currently logued as an anonymous user." +msgstr "" + +#: [room]anonymous_text2 +msgid "You can join using your own account or create one on the login page by loging out using the cross in the top-right corner." +msgstr "" + +#: [room]anonymous_login +msgid "Login on %s" +msgstr "" + +#: [room]nick +msgid "Your nickname" +msgstr "" + +#: [roster]ungrouped +msgid "Ungrouped" +msgstr "Разное" + +#: [roster]show_disconnected +msgid "Show disconnected contacts" +msgstr "Показать отключенные контакты" + +#: [roster]hide_disconnected +msgid "Hide disconnected contacts" +msgstr "Скрыть отключенные контакты" + +#: [roster]show_group +msgid "Show group %s" +msgstr "Показать группу %s" + +#: [roster]hide_group +msgid "Hide group %s" +msgstr "Скрыть группу %s" + +#: [roster]jid_error +msgid "Please enter a valid Jabber ID" +msgstr "Пожалуйста, введи правильный Jabber ID" + +#: [roster]no_contacts_title +#, fuzzy +msgid "No contacts ?" +msgstr "Ваши контакты" + +#: [roster]no_contacts_text +#, fuzzy +msgid "You can add one using the + button bellow" +msgstr "Нет контактов? Вы можете добавить их с помощью кнопки + ниже или перейдя на страничку Обозревателя." + +#: [roster]show_hide +msgid "Show/Hide" +msgstr "Показать/Скрыть" + +#: [roster]add_contact_info1 +msgid "Enter the Jabber ID of your contact." +msgstr "Введите Jabber ID" + +#: [roster]add_contact_info2 +msgid "Press enter to validate." +msgstr "Нажмите Enter для проверки." + +#: [roster]jid +msgid "JID" +msgstr "JID" + +#: [roster]results +msgid "Results" +msgstr "Результаты" + +#: [roster]added +msgid "Contact added" +msgstr "Контакт добавлен" + +#: [roster]deleted +msgid "Contact deleted" +msgstr "Контакт удалён" + +#: [roster]search +msgid "Search" +msgstr "Поиск" + +#: [share]error +msgid "This is not a valid url" +msgstr "" + +#: [share]success +msgid "Sharing the URL" +msgstr "" + +#: [statistics]title +msgid "Statistics" +msgstr "Статистика" + +#: [statistics]since +msgid "Since" +msgstr "С" + +#: [statistics]sessions +msgid "Sessions" +msgstr "Сеансы" + +#: [statistics]monthly_sub +msgid "Monthly Subscriptions" +msgstr "Ежемесячные подписки" + +#: [statistics]monthly_sub_cum +msgid "Monthly Subscriptions Cumulated" +msgstr "Аккумулирующие ежемесячные подписки" + +#: [subscribe]info +msgid "Movim is a decentralized social network, before creating a new account you need to choose a server to register." +msgstr "Movim — это децентрализованная социальная сеть. Перед созданием учетной записи нужно выбрать сервер." + +#: [subscribe]server_question +msgid "Your server here ?" +msgstr "Ваш сервер здесь ?" + +#: [subscribe]server_contact +msgid "Contact us to add yours to the officially supported servers list" +msgstr "Свяжитесь с нами чтобы добавить свой сервер в список официальных серверов" + +#: [feed]nope +msgid "No public feed for this contact" +msgstr "Нет публичной ленты для этого контакта" + +#: [feed]nope_contact +msgid "No contact specified" +msgstr "Контакт не задан" + +#: [upload]title +#, fuzzy +msgid "Upload a file" +msgstr "Загрузить" + +#: [upload]choose +msgid "Choose a file to upload" +msgstr "" + +#: [vcard]title [page]profile +msgid "Profile" +msgstr "Профиль" + +#: [vcard]updated +msgid "Profile Updated" +msgstr "Профиль обновлён" + +#: [vcard]not_updated +msgid "Profile Not Updated" +msgstr "Профиль не обновлён" + +#: [vcard]public +msgid "Your profile is now public" +msgstr "Ваш профиль теперь общедоступен" + +#: [vcard]restricted +msgid "Your profile is now restricted" +msgstr "Ваш профиль теперь скрыт" + +#: [general]nickname +#, fuzzy +msgctxt "[general]nickname" +msgid "Nickname" +msgstr "Псевдоним" + +#: [accounts]twitter +msgid "Twitter" +msgstr "Твиттер" + +#: [accounts]skype +msgid "Skype" +msgstr "Skype" + +#: [accounts]yahoo +msgid "Yahoo" +msgstr "Yahoo" + +#: [accounts]accounts_nickname +#, fuzzy +msgctxt "[accounts]accounts_nickname" +msgid "Nickname" +msgstr "Псевдоним" + +#: [accounts]accounts_yahoo +#, fuzzy +msgid "Yahoo Account" +msgstr "Другие учётные записи" + +#: [privacy]privacy_title +msgid "Privacy Level" +msgstr "Уровень приватности" + +#: [privacy]privacy_question +msgid "Is this profile public ?" +msgstr "Этот профиль общедоступен?" + +#: [privacy]privacy_info +msgid "Please pay attention ! By making your profile public, all the information listed above will be available for all the Movim users and on the whole Internet." +msgstr "Внимание! Делая свой профиль общедоступным, вы соглашаетесь с тем, что вся нижеперечисленная информация станет доступна всем пользователям Movim и всему Интернету." + +#: [save]submit [button]submit msgid "Submit" msgstr "Отправить" -#: ../cache/locales.php:522 -msgid "Submitting" -msgstr "Отправление" - -#: ../cache/locales.php:523 +#: [save]reset [button]reset msgid "Reset" msgstr "Сброс" -#: ../cache/locales.php:524 +#: [visio]hung_up +msgid "Hung up" +msgstr "Вызов завершен" + +#: [visio]busy +msgid "Your contact is busy" +msgstr "Ваш контакт занят" + +#: [visio]declined +msgid "Declined" +msgstr "Отклонено" + +#: [visio]calling +msgid "Is calling you" +msgstr "Звонит вам" + +#: [visio]call +msgid "Call" +msgstr "Вызов" + +#: [visio]hang_up +msgid "Hang up" +msgstr "Повесить трубку" + +#: [visio]connection +msgid "Connection" +msgstr "Соединение" + +#: [global]no_js +msgid "You don't have javascript enabled. Good luck with that." +msgstr "У вас не активирован javascript. Удачи вам в этом." + +#: [global]description +msgid "Movim is a kickass distributed social networking platform that protect your privacy an comes with a set of awesome features." +msgstr "Movim — пацанская распределенная платформа социальная активности, которая защищает вашу приватность и имеет много классных фишек." + +#: [page]administration +msgid "Administration" +msgstr "Администрирование" + +#: [page]home +msgid "Home" +msgstr "Домой" + +#: [page]discover +msgid "Discover" +msgstr "Открытие" + +#: [page]explore +msgid "Explore" +msgstr "Обзор" + +#: [page]account_creation +msgid "Account Creation" +msgstr "Создание учётной записи" + +#: [page]avatar +msgid "Avatar" +msgstr "Фотография" + +#: [page]chats +msgid "Chats" +msgstr "Чаты" + +#: [page]server +msgid "Server" +msgstr "Сервер" + +#: [page]public_groups +msgid "Public Groups" +msgstr "Открытые Группы" + +#: [page]viewer +msgid "Viewer" +msgstr "Зритель" + +#: [page]media +msgid "Media" +msgstr "Мультимедиа" + +#: [page]blog +msgid "Blog" +msgstr "Блог" + +#: [page]about +msgid "About" +msgstr "О" + +#: [page]login +msgid "Login" +msgstr "Имя пользователя" + +#: [page]feed +msgid "Feed" +msgstr "Лента" + +#: [page]gallery +msgid "Gallery" +msgstr "Галерея" + +#: [page]visio +msgid "Visio-conference" +msgstr "Visio-конференция" + +#: [page]pods +msgid "Pods" +msgstr "Поды" + +#: [page]share +msgid "Share" +msgstr "" + +#: [page]room +msgid "Room" +msgstr "" + +#: [error]error +msgid "Error: %s" +msgstr "Ошибка: %s" + +#: [error]cannot_load_file +msgid "Cannot load file '%s'" +msgstr "Не удаётся получить файл '%s'" + +#: [error]route +msgid "Route error, please set all the parameters for the page %s" +msgstr "Ошибка маршрута, пожалуйста, настройте все параметры на странице %s" + +#: [error]widget_load_error +msgid "Requested widget '%s' doesn't exist." +msgstr "Запрашиваемый виджет '%s' не существует." + +#: [error]widget_call_error +msgid "Requested event '%s' not registered." +msgstr "Запрашиваемое событие '%s' не зарегистрировано." + +#: [error]whoops +msgid "Whoops!" +msgstr "Ой-ой!" + +#: [error]media_not_found +msgid "It seem that you don't have any pictures here?" +msgstr "Кажется, у вас нет никаких изображений здесь?" + +#: [error]media_ask_upload +msgid "You can try to upload a couple by going to the Media page" +msgstr "Вы можете попытаться загрузить парочку, перейдя на страницу \"Медиа\"" + +#: [title]about +msgid "%s - About" +msgstr "%s - об" + +#: [title]account +msgid "%s - Account" +msgstr "%s - Аккаунт" + +#: [title]administration +msgid "%s - Administration Panel" +msgstr "%s - Панель управления" + +#: [title]blog +msgid "%s - Blog" +msgstr "%s - Блог" + +#: [title]configuration +msgid "%s - Configuration" +msgstr "%s - настройки" + +#: [title]discover +msgid "%s - Discover" +msgstr "%s - Открытия" + +#: [title]explore +msgid "%s - Explore" +msgstr "%s - Обзор" + +#: [title]help +msgid "%s - Help Page" +msgstr "%s - Страница помощи" + +#: [title]login +msgid "%s - Login to Movim" +msgstr "%s - Вход в MOVIM" + +#: [title]main +msgid "%s - Welcome to Movim" +msgstr "%s - Добро пожаловать в MOVIM" + +#: [title]media +msgid "%s - Media" +msgstr "%s - Медиа" + +#: [title]news +msgid "%s - News" +msgstr "%s - Новости" + +#: [title]node_configuration +msgid "%s - Group Configuration" +msgstr "%s - Настройки группы" + +#: [title]node +msgid "%s - Group" +msgstr "%s - Группа" + +#: [title]not_found +msgid "%s - 404" +msgstr "%s - 404" + +#: [title]profile +msgid "%s - Profile" +msgstr "%s - Профиль" + +#: [title]server +msgid "%s - Server" +msgstr "%s - Сервер" + +#: [button]validate +msgid "Validate" +msgstr "Проверить" + +#: [button]refresh +msgid "Refresh" +msgstr "Обновить" + +#: [button]add +msgid "Add" +msgstr "Добавить" + +#: [button]delete +msgid "Delete" +msgstr "Удалить" + +#: [button]cancel +msgid "Cancel" +msgstr "Отменить" + +#: [button]close +msgid "Close" +msgstr "Закрыть" + +#: [button]update +msgid "Update" +msgstr "Обновить" + +#: [button]updating +msgid "Updating" +msgstr "Идёт обновление" + +#: [button]submitting +msgid "Submitting" +msgstr "Отправление" + +#: [button]register msgid "Register" msgstr "Зарегистрировать" -#: ../cache/locales.php:525 +#: [button]unregister msgid "Unregister" msgstr "Отменить регистрацию" -#: ../cache/locales.php:526 +#: [button]save msgid "Save" msgstr "Сохранить" -#: ../cache/locales.php:527 +#: [button]clear msgid "Clear" msgstr "Очистить" -#: ../cache/locales.php:528 +#: [button]upload msgid "Upload" msgstr "Загрузить" -#: ../cache/locales.php:529 +#: [button]come_in msgid "Come in!" msgstr "Войти!" -#: ../cache/locales.php:530 +#: [button]connecting msgid "Connecting" msgstr "Идет подключение" -#: ../cache/locales.php:531 +#: [button]bool_yes msgid "Yes" msgstr "Да" -#: ../cache/locales.php:532 +#: [button]bool_no msgid "No" msgstr "Нет" -#: ../cache/locales.php:534 +#: [button]return msgid "Return" msgstr "Назад" -#: ../cache/locales.php:535 +#: [button]accept msgid "Accept" msgstr "Принять" -#: ../cache/locales.php:536 +#: [button]refuse msgid "Refuse" msgstr "" -#: ../cache/locales.php:537 +#: [button]next msgid "Next" msgstr "" -#: ../cache/locales.php:538 +#: [button]previous msgid "Previous" msgstr "" -#: ../cache/locales.php:539 -#, php-format +#: [step]step msgid "Step %s" msgstr "Шаг %s" -#: ../cache/locales.php:542 +#: [day]title msgid "Day" msgstr "День" -#: ../cache/locales.php:543 +#: [day]monday msgid "Monday" msgstr "Понедельник" -#: ../cache/locales.php:544 +#: [day]tuesday msgid "Tuesday" msgstr "Вторник" -#: ../cache/locales.php:545 +#: [day]wednesday msgid "Wednesday" msgstr "Среда" -#: ../cache/locales.php:546 +#: [day]thursday msgid "Thursday" msgstr "Четверг" -#: ../cache/locales.php:547 +#: [day]friday msgid "Friday" msgstr "Пятница" -#: ../cache/locales.php:548 +#: [day]saturday msgid "Saturday" msgstr "Суббота" -#: ../cache/locales.php:549 +#: [day]sunday msgid "Sunday" msgstr "Воскресенье" -#: ../cache/locales.php:550 ../cache/locales.php:559 +#: [gender]nil +#, fuzzy +msgctxt "[gender]nil" msgid "None" msgstr "Нет" -#: ../cache/locales.php:551 +#: [gender]male msgid "Male" msgstr "Мужчина" -#: ../cache/locales.php:552 +#: [gender]female msgid "Female" msgstr "Женщина" -#: ../cache/locales.php:553 +#: [gender]other msgid "Other" msgstr "Прочее" -#: ../cache/locales.php:554 +#: [client]bot msgid "Bot" msgstr "Бот" -#: ../cache/locales.php:555 +#: [client]desktop msgid "Desktop" msgstr "Настольный компьютер" -#: ../cache/locales.php:556 +#: [client]phone msgid "Phone" msgstr "Телефон" -#: ../cache/locales.php:557 +#: [client]web msgid "Web" msgstr "Веб" -#: ../cache/locales.php:558 +#: [client]registered msgid "Registered" msgstr "Зарегистрировано" -#: ../cache/locales.php:560 +#: [marital]nil +#, fuzzy +msgctxt "[marital]nil" +msgid "None" +msgstr "Нет" + +#: [marital]single msgid "Single" msgstr "Холост(не замужем)" -#: ../cache/locales.php:561 +#: [marital]relationship msgid "In a relationship" msgstr "В отношениях" -#: ../cache/locales.php:562 +#: [marital]married msgid "Married" msgstr "В браке" -#: ../cache/locales.php:563 +#: [marital]divorced msgid "Divorced" msgstr "Разведён (разведена)" -#: ../cache/locales.php:564 +#: [marital]widowed msgid "Widowed" msgstr "Вдовец (вдова)" -#: ../cache/locales.php:565 +#: [marital]cohabiting msgid "Cohabiting" msgstr "Живём вместе" -#: ../cache/locales.php:566 +#: [marital]union msgid "Civil Union" msgstr "В гражданском браке" -#: ../cache/locales.php:567 +#: [flag]white msgid "Not shared" msgstr "Не является общим" -#: ../cache/locales.php:568 +#: [flag]green msgid "Shared with one contact" msgstr "Общий с одним контактом" -#: ../cache/locales.php:569 +#: [flag]orange msgid "Shared with all contacts" msgstr "Общий со всеми контактами" -#: ../cache/locales.php:570 +#: [flag]red msgid "Shared with the XMPP network" msgstr "Общий с сетью XMPP" -#: ../cache/locales.php:571 +#: [flag]black msgid "Shared with the whole Internet" msgstr "Общий со всей Интернете" -#: ../cache/locales.php:572 +#: [presence]online msgid "Online" msgstr "В сети" -#: ../cache/locales.php:573 +#: [presence]away msgid "Away" msgstr "В отсутствии" -#: ../cache/locales.php:574 +#: [presence]dnd msgid "Do Not Disturb" msgstr "Не беспокоить" -#: ../cache/locales.php:575 +#: [presence]xa msgid "Extended Away" msgstr "Давно нет на месте" -#: ../cache/locales.php:576 +#: [presence]offline msgid "Offline" msgstr "Не в сети" -#: ../cache/locales.php:577 +#: [presence]error msgid "Error" msgstr "Ошибка" -#: ../cache/locales.php:578 +#: [mood]afraid msgid "afraid" msgstr "боятся" -#: ../cache/locales.php:579 +#: [mood]amazed msgid "amazed" msgstr "пораженный" -#: ../cache/locales.php:580 +#: [mood]amorous msgid "amorous" msgstr "влюбчивый" -#: ../cache/locales.php:581 +#: [mood]angry msgid "angry" msgstr "злой" -#: ../cache/locales.php:582 +#: [mood]annoyed msgid "annoyed" msgstr "раздраженный" -#: ../cache/locales.php:583 +#: [mood]anxious msgid "anxious" msgstr "тревожный" -#: ../cache/locales.php:584 +#: [mood]aroused msgid "aroused" msgstr "вызвал" -#: ../cache/locales.php:585 +#: [mood]ashamed msgid "ashamed" msgstr "стыдно" -#: ../cache/locales.php:586 +#: [mood]bored msgid "bored" msgstr "скучающий" -#: ../cache/locales.php:587 +#: [mood]brave msgid "brave" msgstr "храбрый" -#: ../cache/locales.php:588 +#: [mood]calm msgid "calm" msgstr "спокойно" -#: ../cache/locales.php:589 +#: [mood]cautious msgid "cautious" msgstr "осторожный" -#: ../cache/locales.php:590 +#: [mood]cold msgid "cold" msgstr "холод" -#: ../cache/locales.php:591 +#: [mood]confident msgid "confident" msgstr "уверенный" -#: ../cache/locales.php:592 +#: [mood]confused msgid "confused" msgstr "смущен" -#: ../cache/locales.php:593 +#: [mood]contemplative msgid "contemplative" msgstr "созерцательный" -#: ../cache/locales.php:594 +#: [mood]contented msgid "contented" msgstr "довольный" -#: ../cache/locales.php:595 +#: [mood]cranky msgid "cranky" msgstr "капризный" -#: ../cache/locales.php:596 +#: [mood]crazy msgid "crazy" msgstr "сумасшедший" -#: ../cache/locales.php:597 +#: [mood]creative msgid "creative" msgstr "творческий" -#: ../cache/locales.php:598 +#: [mood]curious msgid "curious" msgstr "любопытный" -#: ../cache/locales.php:599 +#: [mood]dejected msgid "dejected" msgstr "удрученный" -#: ../cache/locales.php:600 +#: [mood]depressed msgid "depressed" msgstr "подавленный" -#: ../cache/locales.php:601 +#: [mood]disappointed msgid "disappointed" msgstr "разочарованный" -#: ../cache/locales.php:602 +#: [mood]disgusted msgid "disgusted" msgstr "отвращение" -#: ../cache/locales.php:603 +#: [mood]dismayed msgid "dismayed" msgstr "встревоженный" -#: ../cache/locales.php:604 +#: [mood]distracted msgid "distracted" msgstr "рассеянный" -#: ../cache/locales.php:605 +#: [mood]embarrassed msgid "embarrassed" msgstr "смущенный" -#: ../cache/locales.php:606 +#: [mood]envious msgid "envious" msgstr "завистливый" -#: ../cache/locales.php:607 +#: [mood]excited msgid "excited" msgstr "возбужденный" -#: ../cache/locales.php:608 +#: [mood]flirtatious msgid "flirtatious" msgstr "кокетливый" -#: ../cache/locales.php:609 +#: [mood]frustated msgid "frustated" msgstr "испуган" -#: ../cache/locales.php:610 +#: [mood]grateful msgid "grateful" msgstr "благодарный" -#: ../cache/locales.php:611 +#: [mood]grieving msgid "grieving" msgstr "горевать" -#: ../cache/locales.php:612 +#: [mood]grumpy msgid "grumpy" msgstr "раздражительный" -#: ../cache/locales.php:613 +#: [mood]guilty msgid "guilty" msgstr "виновный" -#: ../cache/locales.php:614 +#: [mood]happy msgid "happy" msgstr "счастливый" -#: ../cache/locales.php:615 +#: [mood]hopeful msgid "hopeful" msgstr "многообещающий" -#: ../cache/locales.php:616 +#: [mood]hot msgid "hot" msgstr "горячий" -#: ../cache/locales.php:617 +#: [mood]humbled msgid "humbled" msgstr "приниженный" -#: ../cache/locales.php:618 +#: [mood]humiliated msgid "humiliated" msgstr "униженный" -#: ../cache/locales.php:619 +#: [mood]hungry msgid "hungry" msgstr "голодный" -#: ../cache/locales.php:620 +#: [mood]hurt msgid "hurt" msgstr "больной" -#: ../cache/locales.php:621 +#: [mood]impressed msgid "impressed" msgstr "впечатленный" -#: ../cache/locales.php:622 +#: [mood]in_awe msgid "in awe" msgstr "в страхе" -#: ../cache/locales.php:623 +#: [mood]in_love msgid "in love" msgstr "влюбленный" -#: ../cache/locales.php:624 +#: [mood]indignant msgid "indignant" msgstr "негодует" -#: ../cache/locales.php:625 +#: [mood]interested msgid "interested" msgstr "заинтересованный" -#: ../cache/locales.php:626 +#: [mood]intoxicated msgid "intoxicated" msgstr "пьяный" -#: ../cache/locales.php:627 +#: [mood]invincible msgid "invincible" msgstr "непобедимый" -#: ../cache/locales.php:628 +#: [mood]jealous msgid "jealous" msgstr "ревнивый" -#: ../cache/locales.php:629 +#: [mood]lonely msgid "lonely" msgstr "одинокий" -#: ../cache/locales.php:630 +#: [mood]lost msgid "lost" msgstr "потерян" -#: ../cache/locales.php:631 +#: [mood]lucky msgid "lucky" msgstr "счастливый" -#: ../cache/locales.php:632 +#: [mood]mean msgid "mean" msgstr "имею в виду" -#: ../cache/locales.php:633 +#: [mood]moody msgid "moody" msgstr "угрюмый" -#: ../cache/locales.php:634 +#: [mood]nervous msgid "nervous" msgstr "нервный" -#: ../cache/locales.php:635 +#: [mood]neutral msgid "neutral" msgstr "нейтрален" -#: ../cache/locales.php:636 +#: [mood]offended msgid "offended" msgstr "обидел" -#: ../cache/locales.php:637 +#: [mood]outraged msgid "outraged" msgstr "возмущен" -#: ../cache/locales.php:638 +#: [mood]playful msgid "playful" msgstr "игривый" -#: ../cache/locales.php:639 +#: [mood]proud msgid "proud" msgstr "гордый" -#: ../cache/locales.php:640 +#: [mood]relaxed msgid "relaxed" msgstr "расслабленный" -#: ../cache/locales.php:641 +#: [mood]relieved msgid "relieved" msgstr "уволен" -#: ../cache/locales.php:642 -msgid "remorseful" -msgstr "полный раскаяния" - -#: ../cache/locales.php:643 +#: [mood]restless msgid "restless" msgstr "беспокойный" -#: ../cache/locales.php:644 +#: [mood]sad msgid "sad" msgstr "печальный" -#: ../cache/locales.php:645 +#: [mood]sarcastic msgid "sarcastic" msgstr "саркастический" -#: ../cache/locales.php:646 +#: [mood]satisfied msgid "satisfied" msgstr "удовлетворенный" -#: ../cache/locales.php:647 +#: [mood]serious msgid "serious" msgstr "серьезный" -#: ../cache/locales.php:648 +#: [mood]shocked msgid "shocked" msgstr "потрясенный" -#: ../cache/locales.php:649 +#: [mood]shy msgid "shy" msgstr "застенчивый" -#: ../cache/locales.php:650 +#: [mood]sick msgid "sick" msgstr "больной" -#: ../cache/locales.php:651 +#: [mood]sleepy msgid "sleepy" msgstr "сонный" -#: ../cache/locales.php:652 +#: [mood]spontaneous msgid "spontaneous" msgstr "спонтанный" -#: ../cache/locales.php:653 +#: [mood]stressed msgid "stressed" msgstr "подчеркнул" -#: ../cache/locales.php:654 +#: [mood]strong msgid "strong" msgstr "сильный" -#: ../cache/locales.php:655 +#: [mood]surprised msgid "surprised" msgstr "удивленный" -#: ../cache/locales.php:656 +#: [mood]thankful msgid "thankful" msgstr "благодарный" -#: ../cache/locales.php:657 +#: [mood]thirsty msgid "thirsty" msgstr "жаждущий" -#: ../cache/locales.php:658 +#: [mood]tired msgid "tired" msgstr "устал" -#: ../cache/locales.php:659 +#: [mood]undefined msgid "undefined" msgstr "не определено" -#: ../cache/locales.php:660 +#: [mood]weak msgid "weak" msgstr "слаб" -#: ../cache/locales.php:661 +#: [mood]worried msgid "worried" msgstr "тревожный" -#: ../cache/locales.php:662 +#: [month]title msgid "Month" msgstr "Месяц" -#: ../cache/locales.php:663 +#: [month]january msgid "January" msgstr "Январь" -#: ../cache/locales.php:664 +#: [month]february msgid "February" msgstr "Февраль" -#: ../cache/locales.php:665 +#: [month]march msgid "March" msgstr "Март" -#: ../cache/locales.php:666 +#: [month]april msgid "April" msgstr "Апрель" -#: ../cache/locales.php:667 +#: [month]may msgid "May" msgstr "Май" -#: ../cache/locales.php:668 +#: [month]june msgid "June" msgstr "Июнь" -#: ../cache/locales.php:669 +#: [month]july msgid "July" msgstr "Июль" -#: ../cache/locales.php:670 +#: [month]august msgid "August" msgstr "Август" -#: ../cache/locales.php:671 +#: [month]september msgid "September" msgstr "Сентябрь" -#: ../cache/locales.php:672 +#: [month]october msgid "October" msgstr "Октябрь" -#: ../cache/locales.php:673 +#: [month]november msgid "November" msgstr "Ноябрь" -#: ../cache/locales.php:674 +#: [month]december msgid "December" msgstr "Декабрь" -#: ../cache/locales.php:675 +#: [year]title msgid "Year" msgstr "Год" -#: ../cache/locales.php:676 +#: [date]today msgid "Today" msgstr "Сегодня" -#: ../cache/locales.php:677 +#: [date]tomorrow msgid "Tomorrow" msgstr "Завтра" -#: ../cache/locales.php:678 +#: [date]yesterday msgid "Yesterday" msgstr "Вчера" -#: ../cache/locales.php:679 -#, php-format -msgid " %d days ago" +#: [date]ago +#, fuzzy +msgid "%d days ago" msgstr " %d дней назад" -#: ../cache/locales.php:680 +#: [date]day msgid "day" msgstr "день" -#: ../cache/locales.php:682 +#: [post]whats_new msgid "What's new ?" msgstr "Что нового?" -#: ../cache/locales.php:683 +#: [post]place msgid "Place" msgstr "Место" -#: ../cache/locales.php:684 +#: [post]by msgid "by" msgstr "по" -#: ../cache/locales.php:685 +#: [post]geolocalisation msgid "Geolocalisation" msgstr "Геолокация" -#: ../cache/locales.php:686 +#: [post]email msgid "email" msgstr "электронная почта" -#: ../cache/locales.php:688 +#: [post]no_comments msgid "No comments yet" msgstr "" -#: ../cache/locales.php:689 +#: [post]no_comments_stream msgid "No comments stream" msgstr "Нет потока с комментариями" -#: ../cache/locales.php:690 +#: [post]no_load msgid "Your feed cannot be loaded." msgstr "Ваша лента не может быть загружена." -#: ../cache/locales.php:691 +#: [post]older msgid "Get older posts" msgstr "Получить предыдущие сообщения" -#: ../cache/locales.php:692 -#, php-format +#: [post]new_items msgid "%s new items" msgstr "%s новых записей" -#: ../cache/locales.php:693 +#: [post]comment_error msgid "Comment publication error" msgstr "Ошибка добавления комментария" -#: ../cache/locales.php:694 +#: [post]comments_older msgid "Show the older comments" msgstr "Показать более старые комментарии" -#: ../cache/locales.php:695 -msgid "Loading comments ..." +#: [post]comments_loading +#, fuzzy +msgid "Loading comments..." msgstr "Идет загрузка комментариев..." -#: ../cache/locales.php:696 +#: [post]comments_get msgid "Get the comments" msgstr "Загрузить комментарии" -#: ../cache/locales.php:697 +#: [post]comment_add msgid "Add a comment" msgstr "Добавить комментарий" -#: ../cache/locales.php:698 +#: [post]share msgid "Share with" msgstr "Поделиться с" -#: ../cache/locales.php:699 +#: [post]share_everyone msgid "Everyone" msgstr "Все" -#: ../cache/locales.php:700 +#: [post]share_your_contacts msgid "Your contacts" msgstr "Ваши контакты" -#: ../cache/locales.php:702 +#: [post]updated msgid "Updated" msgstr "Обновлено" -#: ../cache/locales.php:703 +#: [post]content_not_found msgid "Content not found" msgstr "Содержание не найдено" -#: ../cache/locales.php:704 +#: [post]default_title msgid "Contact publication" msgstr "Публикация контакта" -#: ../cache/locales.php:705 +#: [post]comments msgid "Comments" msgstr "" -#: ../cache/locales.php:706 +#: [api]error msgid "The API is not reachable, try again later" msgstr "API недоступен, попробуйте позже" -#: ../cache/locales.php:707 +#: [field]type_here msgid "Type here" msgstr "" -#, php-format +#~ msgid "Environment" +#~ msgstr "Окружение" + +#~ msgid "You can login with Facebook (chat only) using %syour.id@chat.facebook.com%s and your password" +#~ msgstr "Вы можете войти в Facebook (только чат), используя %syour.id@chat.facebook.com%s и Ваш пароль" + +#~ msgid "%sGmail accounts are also compatible%s but are not fully supported" +#~ msgstr "%sУчетные записи Gmail%s также совместимы, но поддерживаются не полностью" + +#~ msgid "You can login using your favorite Jabber account" +#~ msgstr "Вы можете войти используя ваш любимый Jabber" + +#~ msgid "or with our demonstration account" +#~ msgstr "или с помощью нашей демо учетной записи" + +#~ msgid "%s has been removed from your public groups" +#~ msgstr "Группа %s была удалена из списка ваших публичных групп" + +#~ msgid "Remove a chatroom" +#~ msgstr "Удалить комнату" + +#~ msgid "You are going to remove the following chatroom. Please confirm your action." +#~ msgstr "Вы собирается удалить комнату, на которую вы подписаны. Пожулуйста, подтвердите это." + +#~ msgid "Remote application incompatible" +#~ msgstr "Удаленное приложение несовместимо" + +#~ msgid "Remove" +#~ msgstr "Удалить" + +#~ msgid "remorseful" +#~ msgstr "полный раскаяния" + #~ msgid "%s - Account Creation" #~ msgstr "%s - создание учётной записи" @@ -2634,11 +2771,9 @@ msgstr "" #~ msgid "Movim Installer" #~ msgstr "Установщик Movim" -#, php-format #~ msgid "Install the %s package" #~ msgstr "Установите пакет %s" -#, php-format #~ msgid "Movim requires the %s extension." #~ msgstr "Movim требует расширение %s." @@ -2649,9 +2784,7 @@ msgstr "" #~ msgstr "Актуальная версия : " #~ msgid "PHP version mismatch. Movim requires PHP 5.3 minimum." -#~ msgstr "" -#~ "Версии интерпретатора PHP не совпадают. Movim требует версию PHP 5.3 или " -#~ "выше." +#~ msgstr "Версии интерпретатора PHP не совпадают. Movim требует версию PHP 5.3 или выше." #~ msgid "Update your PHP version or contact your server administrator" #~ msgstr "Обновите Вашу версию PHP или обратитесь к системному администратору" @@ -2662,23 +2795,17 @@ msgstr "" #~ msgid "Movim's folder must be writable." #~ msgstr "Папка с Movim должна быть доступна для записи." -#, php-format #~ msgid "Install %s and %s packages" #~ msgstr "установите пакеты %s и %s" #~ msgid "XMPP Connection Preferences" #~ msgstr "Настройки соединения XMPP" -#, php-format #~ msgid "Couldn't create directory '%s'." #~ msgstr "Невозможно создать папку '%s'." -#~ msgid "" -#~ "The following requirements were not met. Please make sure they are all " -#~ "satisfied in order to install Movim." -#~ msgstr "" -#~ "Следующие требования не были удовлетворены. Пожалуйста, удостоверьтесь, что " -#~ "у Вас есть разрешения на установку Movim." +#~ msgid "The following requirements were not met. Please make sure they are all satisfied in order to install Movim." +#~ msgstr "Следующие требования не были удовлетворены. Пожалуйста, удостоверьтесь, что у Вас есть разрешения на установку Movim." #~ msgid "Compatibility Test" #~ msgstr "Тест совместимости" @@ -2692,7 +2819,6 @@ msgstr "" #~ msgid "BOSH Connection Preferences" #~ msgstr "Настройки соединения BOSH" -#, php-format #~ msgid "Couldn't create configuration file '%s'." #~ msgstr "Невозможно создать файл конфигурации '%s'." @@ -2705,11 +2831,9 @@ msgstr "" #~ msgid "User not logged in." #~ msgstr "Пользователь не выполнил вход." -#, php-format #~ msgid "Cannot open log file '%s'" #~ msgstr "Невозможно открыть файл отчета '%s'" -#, php-format #~ msgid "Please remove the %s folder in order to complete the installation" #~ msgstr "Пожалуйста, удалите папку %s для завершения установки" @@ -2764,7 +2888,6 @@ msgstr "" #~ msgid "Add your login informations" #~ msgstr "Добавьте Вашу информацию для соединения" -#, php-format #~ msgid "%s - Add An Account" #~ msgstr "%s - Добавить запись" @@ -2780,13 +2903,8 @@ msgstr "" #~ msgid "My Posts" #~ msgstr "Мои сообщения" -#, php-format -#~ msgid "" -#~ "Visit the page %s What is Movim ? %s to know more about the project, its " -#~ "aims and understand how it works." -#~ msgstr "" -#~ "Посетите страницу %s Что такое Movin? %s чтобы узнать больше об этом " -#~ "проектк, его целях и для понимания принципов его работы." +#~ msgid "Visit the page %s What is Movim ? %s to know more about the project, its aims and understand how it works." +#~ msgstr "Посетите страницу %s Что такое Movin? %s чтобы узнать больше об этом проектк, его целях и для понимания принципов его работы." #~ msgid "I can't find the answer to my question here" #~ msgstr "Я не нашёл здесь ответа на мой вопрос" @@ -2809,7 +2927,6 @@ msgstr "" #~ msgid "Link my current account" #~ msgstr "Соединить с моим текущим счётом" -#, php-format #~ msgid "Contacts (%s)" #~ msgstr "Контакты (%s)" @@ -2819,12 +2936,8 @@ msgstr "" #~ msgid "Show All" #~ msgstr "Показать всё" -#~ msgid "" -#~ "Some errors were detected. Please correct them for the installation to " -#~ "proceed." -#~ msgstr "" -#~ "Обнаружены ошибки. Пожалуйста исправльте их, чтобы продолжить процесс " -#~ "инсталляции." +#~ msgid "Some errors were detected. Please correct them for the installation to proceed." +#~ msgstr "Обнаружены ошибки. Пожалуйста исправльте их, чтобы продолжить процесс инсталляции." #~ msgid "Retype" #~ msgstr "Переписать" @@ -2832,12 +2945,8 @@ msgstr "" #~ msgid "Loading your feed ..." #~ msgstr "Загрузка Вашей ленты" -#~ msgid "" -#~ "Your server doesn't support post publication, you can only read contact's " -#~ "feeds" -#~ msgstr "" -#~ "Ваш сервер не поддерживает публикацию сообщений, Вы можете только читать " -#~ "контактные ленты" +#~ msgid "Your server doesn't support post publication, you can only read contact's feeds" +#~ msgstr "Ваш сервер не поддерживает публикацию сообщений, Вы можете только читать контактные ленты" #~ msgid "Only alphanumerics elements are authorized" #~ msgstr "Использовать только буквы и цифры" @@ -2845,15 +2954,8 @@ msgstr "" #~ msgid "terse" #~ msgstr "кратко" -#~ msgid "" -#~ "Keep in mind that Movim is still under development and will handle many " -#~ "personal details. Its use can potentially endanger your data. Always pay " -#~ "attention to information that you submit." -#~ msgstr "" -#~ "Имейте в виду, что Movim только развивается и имеет дело с большим объёмом " -#~ "персональной информации. Её использование потенциально угрожает Вашей " -#~ "безопасности. Всегда будьте внимательны к информации, которую Вы " -#~ "предоставляете." +#~ msgid "Keep in mind that Movim is still under development and will handle many personal details. Its use can potentially endanger your data. Always pay attention to information that you submit." +#~ msgstr "Имейте в виду, что Movim только развивается и имеет дело с большим объёмом персональной информации. Её использование потенциально угрожает Вашей безопасности. Всегда будьте внимательны к информации, которую Вы предоставляете." #~ msgid "Same here !" #~ msgstr "Я тоже!" @@ -2861,34 +2963,21 @@ msgstr "" #~ msgid "Loading the contact feed ..." #~ msgstr "Грузится лента контакта" -#~ msgid "" -#~ "Before you enjoy your social network, a few adjustements are required." -#~ msgstr "" -#~ "Прежде чем Вы насладитесь Вашей социальной сетью требуются некоторые поправки" +#~ msgid "Before you enjoy your social network, a few adjustements are required." +#~ msgstr "Прежде чем Вы насладитесь Вашей социальной сетью требуются некоторые поправки" #~ msgid "JID not provided." #~ msgstr "JID не предоставлен." -#, php-format #~ msgid "jid '%s' is incorrect" #~ msgstr "jid '%s' некорректный" -#, php-format #~ msgid "You can now access your shiny Movim instance %sJump In !%s" #~ msgstr "Вы имеет теперь доступ к Movin при помощи %sJump In !%s" -#~ msgid "" -#~ "Firstly fill in this blank with a brand new account ID, this address will " -#~ "follow you on all the Movim network !" -#~ msgstr "" -#~ "Оставьте пустым это поле, этот адрес позволит Вам следовать за всей сетью " -#~ "Movin !" +#~ msgid "Firstly fill in this blank with a brand new account ID, this address will follow you on all the Movim network !" +#~ msgstr "Оставьте пустым это поле, этот адрес позволит Вам следовать за всей сетью Movin !" -#, php-format -#~ msgid "This server hosts %s accounts" -#~ msgstr "На этом сервере %s аккаунтов" - -#, php-format #~ msgid "Cannot load element value '%s'" #~ msgstr "Не удаётся загрузить элемент '%s'" @@ -2898,15 +2987,12 @@ msgstr "" #~ msgid "Invite this user" #~ msgstr "пригласить этого пользователя" -#, php-format #~ msgid "Bosh connection failed with error '%s'" #~ msgstr "Некорректное соединение с BOSH, ошибка '%s'" -#, php-format #~ msgid "Database connection failed with error '%s'" #~ msgstr "Неудачное соединение с базой данных, ошибка '%s'" -#, php-format #~ msgid "XMPP connection through Bosh failed with error '%s'" #~ msgstr "XMPP соединене через BOSH неудачно, ошибка '%s'" @@ -2925,39 +3011,17 @@ msgstr "" #~ msgid "talkative" #~ msgstr "подробно" -#, php-format -#~ msgid "" -#~ "Although Movim is evolving fast, many (many) features are missing. Be " -#~ "patient ;). You can have a look %s at next versions's roadmaps %s to know if " -#~ "the one you want is on its way." -#~ msgstr "" -#~ "Хотя Movim быстро развивается, в нём (очень) много чего не хватает. Будьте " -#~ "терпеливы ;). Вы можете посмотреть %s планы развития новых версий %s , чтобы " -#~ "узнать, что из желаемого уже на подходе." +#~ msgid "Although Movim is evolving fast, many (many) features are missing. Be patient ;). You can have a look %s at next versions's roadmaps %s to know if the one you want is on its way." +#~ msgstr "Хотя Movim быстро развивается, в нём (очень) много чего не хватает. Будьте терпеливы ;). Вы можете посмотреть %s планы развития новых версий %s , чтобы узнать, что из желаемого уже на подходе." -#, php-format -#~ msgid "" -#~ "Don't forget that Movim is an open source project, a helping hand is always " -#~ "welcome (see %s Can I participate %s)" -#~ msgstr "" -#~ "Не забывайте, что Movim - проект с открытым кодом, помощь всячески " -#~ "приветствуется (смотри %s Могу ли я участвовать %s)" +#~ msgid "Don't forget that Movim is an open source project, a helping hand is always welcome (see %s Can I participate %s)" +#~ msgstr "Не забывайте, что Movim - проект с открытым кодом, помощь всячески приветствуется (смотри %s Могу ли я участвовать %s)" -#~ msgid "" -#~ "Some features are missing/I can't do everything I used to do on other social " -#~ "networks" -#~ msgstr "" -#~ "Не хватает некоторых функций/Мне нельзя делать то же, что в других соцсетях" +#~ msgid "Some features are missing/I can't do everything I used to do on other social networks" +#~ msgstr "Не хватает некоторых функций/Мне нельзя делать то же, что в других соцсетях" -#, php-format -#~ msgid "" -#~ "Go to the %s to the Frequently Asked Questions %s or come ask your question " -#~ "on the official chatroom %s or via our mailing-list (%s see the dedicated " -#~ "page %s)." -#~ msgstr "" -#~ "Перейдите на %s Частые Вопросы (ЧаВо?) %s , или задайте свой вопрос в " -#~ "конференции %s , или через нашу почтовую рассылку (%s смотри соответствующую " -#~ "страницу %s)." +#~ msgid "Go to the %s to the Frequently Asked Questions %s or come ask your question on the official chatroom %s or via our mailing-list (%s see the dedicated page %s)." +#~ msgstr "Перейдите на %s Частые Вопросы (ЧаВо?) %s , или задайте свой вопрос в конференции %s , или через нашу почтовую рассылку (%s смотри соответствующую страницу %s)." #~ msgid "The current BOSH URL in invalid" #~ msgstr "Текущий BOSH URL недействителен" diff --git a/sources/locales/uk.po b/sources/locales/uk.po index 8d2530a..5d148d6 100644 --- a/sources/locales/uk.po +++ b/sources/locales/uk.po @@ -1,2584 +1,2699 @@ # Ukrainian translations for Movim package. # This file is distributed under the same license as the Movim package. # This file was translated from CodingTeam at . +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/About/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Account/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AccountNext/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AdHoc/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AdminDB/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AdminMain/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AdminTest/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Api/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Avatar/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Blog/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Bookmark/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Chat/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Chats/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/ConfigData/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Config/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Contact/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Group/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Groups/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Header/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Hello/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Help/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Init/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Location/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/LoginAnonymous/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Login/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Menu/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/NodeAffiliations/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/NodeSubscriptions/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Notifs/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Post/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Presence/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Publish/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/PubsubSubscriptionConfig/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Rooms/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Roster/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Share/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Statistics/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Subscribe/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Syndication/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Upload/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Vcard4/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/VisioExt/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Visio/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../locales/locales.ini msgid "" msgstr "" "Project-Id-Version: Movim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-06-08 22:06+0200\n" +"POT-Creation-Date: 2015-08-20 15:17+0200\n" "PO-Revision-Date: 2012-08-02 15:08+0000\n" "Last-Translator: Nazar Banakh \n" "Language-Team: LANGUAGE \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2015-06-18 21:08+0000\n" "X-Generator: Launchpad (build 17570)\n" -"Language: \n" -#: ../cache/locales.php:2 +#: [about]thanks msgid "Thanks" msgstr "" -#: ../cache/locales.php:3 +#: [about]developers msgid "Developers" msgstr "" -#: ../cache/locales.php:4 +#: [about]translators msgid "Translators" msgstr "" -#: ../cache/locales.php:5 +#: [about]software msgid "Software" msgstr "" -#: ../cache/locales.php:6 +#: [about]resources msgid "Resources" msgstr "" -#: ../cache/locales.php:7 ../cache/locales.php:83 ../cache/locales.php:85 +#: [about]api [schema]api [api]title msgid "API" msgstr "" -#: ../cache/locales.php:8 -msgid "" -"Movim is an XMPP-based communication platform. All the project, except the " -"following software and resources, is under" +#: [about]info +msgid "Movim is an XMPP-based communication platform. All the project, except the following software and resources, is under" msgstr "" -#: ../cache/locales.php:9 +#: [account]title msgid "Account" msgstr "" -#: ../cache/locales.php:10 -msgid "The password has been updated" +#: [account]password_change_title +msgid "Change my password" msgstr "" -#: ../cache/locales.php:11 -msgid "Please provide a valid password (6 characters minimum)" -msgstr "" - -#: ../cache/locales.php:12 -msgid "The provided passwords are not the same" -msgstr "" - -#: ../cache/locales.php:13 -msgid "Delete my account" -msgstr "" - -#: ../cache/locales.php:14 -msgid "" -"You will delete your XMPP account and all the relative information linked to " -"it (profile, contacts and publications)." -msgstr "" - -#: ../cache/locales.php:15 -msgid "Are you sure that you want to delete it ?" -msgstr "" - -#: ../cache/locales.php:16 ../cache/locales.php:411 -msgid "Create a new account" -msgstr "" - -#: ../cache/locales.php:17 -msgid "No account creation form found on the server" -msgstr "" - -#: ../cache/locales.php:18 ../cache/locales.php:172 -msgid "on" -msgstr "" - -#: ../cache/locales.php:19 -msgid "Your acccount has been successfully registered" -msgstr "" - -#: ../cache/locales.php:20 -msgid "Loading" -msgstr "" - -#: ../cache/locales.php:21 -msgid "Not Acceptable" -msgstr "" - -#: ../cache/locales.php:22 -msgid "The registration system of this server is currently unavailable" -msgstr "" - -#: ../cache/locales.php:23 -msgid "" -"This server use an external system for the registration, please click on the " -"following URL." -msgstr "" - -#: ../cache/locales.php:24 -msgid "Actions" -msgstr "" - -#: ../cache/locales.php:25 ../cache/locales.php:82 -msgid "Database" -msgstr "" - -#: ../cache/locales.php:26 -msgid "Modl wasn't able to connect to the database" -msgstr "" - -#: ../cache/locales.php:27 -msgid "Movim is connected to the database" -msgstr "" - -#: ../cache/locales.php:28 -msgid "The database need to be updated" -msgstr "" - -#: ../cache/locales.php:29 -msgid "Movim database is up to date" -msgstr "" - -#: ../cache/locales.php:30 -msgid "Database Type" -msgstr "" - -#: ../cache/locales.php:31 ../cache/locales.php:50 ../cache/locales.php:540 -msgid "Username" -msgstr "" - -#: ../cache/locales.php:32 ../cache/locales.php:51 ../cache/locales.php:282 -#: ../cache/locales.php:541 +#: [account]password [db]password [credentials]password [form]password +#: [input]password msgid "Password" msgstr "" -#: ../cache/locales.php:33 +#: [account]password_confirmation +#, fuzzy +msgid "Password confirmation" +msgstr "%s - Конфігурація" + +#: [account]password_changed +msgid "The password has been updated" +msgstr "" + +#: [account]password_not_valid +msgid "Please provide a valid password (6 characters minimum)" +msgstr "" + +#: [account]password_not_same +msgid "The provided passwords are not the same" +msgstr "" + +#: [account]delete_title +msgid "Delete my account" +msgstr "" + +#: [account]delete +msgid "Delete your account" +msgstr "" + +#: [account]delete_text +msgid "You will delete your XMPP account and all the relative information linked to it (profile, contacts and publications)." +msgstr "" + +#: [account]delete_text_confirm +msgid "Are you sure that you want to delete it ?" +msgstr "" + +#: [account]gateway_title +msgid "Gateway" +msgstr "" + +#: [create]title [subscribe]title +msgid "Create a new account" +msgstr "" + +#: [create]notfound +msgid "No account creation form found on the server" +msgstr "" + +#: [create]server_on +msgid "on" +msgstr "" + +#: [create]successfull +msgid "Your acccount has been successfully registered" +msgstr "" + +#: [create]loading +msgid "Loading" +msgstr "" + +#: [error]not_acceptable +msgid "Not Acceptable" +msgstr "" + +#: [error]service_unavailable +msgid "The registration system of this server is currently unavailable" +msgstr "" + +#: [oob]about +msgid "This server use an external system for the registration, please click on the following URL." +msgstr "" + +#: [adhoc]title +msgid "Actions" +msgstr "" + +#: [db]legend [schema]database +msgid "Database" +msgstr "" + +#: [db]connect_error +msgid "Modl wasn't able to connect to the database" +msgstr "" + +#: [db]connect_success +msgid "Movim is connected to the database" +msgstr "" + +#: [db]update +msgid "The database need to be updated" +msgstr "" + +#: [db]up_to_date +msgid "Movim database is up to date" +msgstr "" + +#: [db]type +msgid "Database Type" +msgstr "" + +#: [db]username [credentials]username [input]username +msgid "Username" +msgstr "" + +#: [db]host msgid "Host" msgstr "" -#: ../cache/locales.php:34 +#: [db]port msgid "Port" msgstr "" -#: ../cache/locales.php:35 -msgid "Database Name" +#: [db]name +msgid "Database sName" msgstr "" -#: ../cache/locales.php:36 +#: [admin]general msgid "General Settings" msgstr "" -#: ../cache/locales.php:37 +#: [general]theme msgid "Theme" msgstr "" -#: ../cache/locales.php:38 +#: [general]language msgid "Default language" msgstr "" -#: ../cache/locales.php:39 -msgid "Environment" -msgstr "" - -#: ../cache/locales.php:40 +#: [general]log_verbosity msgid "Log verbosity" msgstr "" -#: ../cache/locales.php:41 +#: [general]timezone msgid "Server Timezone" msgstr "" -#: ../cache/locales.php:42 +#: [general]limit msgid "User folder size limit (in bytes)" msgstr "" -#: ../cache/locales.php:43 +#: [websocket]title msgid "WebSocket Configuration" msgstr "" -#: ../cache/locales.php:44 +#: [websocket]info msgid "Enter here a valid WebSocket URI in the form" msgstr "" -#: ../cache/locales.php:45 +#: [websocket]label msgid "WebSocket URI" msgstr "" -#: ../cache/locales.php:46 -msgid "" -"If you change the URI, please restart the daemon to reload the configuration" +#: [websocket]save_info +msgid "If you change the URI, please restart the daemon to reload the configuration" msgstr "" -#: ../cache/locales.php:47 +#: [websocket]publics msgid "Public WebSockets" msgstr "" -#: ../cache/locales.php:48 +#: [credentials]title msgid "Administration Credential" msgstr "" -#: ../cache/locales.php:49 +#: [credentials]info msgid "Change the default credentials admin/password" msgstr "" -#: ../cache/locales.php:52 +#: [credentials]re_password msgid "Retype password" msgstr "" -#: ../cache/locales.php:53 +#: [whitelist]title msgid "Whitelist - XMPP Server" msgstr "" -#: ../cache/locales.php:54 -msgid "" -"If you want to specify a list of authorized XMPP servers on your Movim pod " -"and forbid the connection on all the others please put their domain name " -"here, with comma (ex: movim.eu,jabber.fr)" +#: [whitelist]info1 +msgid "If you want to specify a list of authorized XMPP servers on your Movim pod and forbid the connection on all the others please put their domain name here, with comma (ex: movim.eu,jabber.fr)" msgstr "" -#: ../cache/locales.php:55 -msgid "" -"Leave this field blank if you allow the access to all the XMPP accounts." +#: [whitelist]info2 +msgid "Leave this field blank if you allow the access to all the XMPP accounts." msgstr "" -#: ../cache/locales.php:56 +#: [whitelist]label msgid "List of whitelisted XMPP servers" msgstr "" -#: ../cache/locales.php:57 ../cache/locales.php:61 +#: [information]title +msgctxt "[information]title" msgid "Information Message" msgstr "" -#: ../cache/locales.php:58 +#: [information]description msgid "Description" msgstr "" -#: ../cache/locales.php:59 +#: [information]info1 msgid "This message will be displayed on the login page" msgstr "" -#: ../cache/locales.php:60 -msgid "Leave this field blank if you don't want to show any message." +#: [information]info2 +msgid "Leave this field blank if you dont want to show any message." msgstr "" -#: ../cache/locales.php:62 +#: [information]label +msgctxt "[information]label" +msgid "Information Message" +msgstr "" + +#: [log]empty msgid "Empty" msgstr "" -#: ../cache/locales.php:63 +#: [log]syslog msgid "Syslog" msgstr "" -#: ../cache/locales.php:64 +#: [log]syslog_files msgid "Syslog and files" msgstr "" -#: ../cache/locales.php:65 +#: [rewrite]title msgid "URL Rewriting" msgstr "" -#: ../cache/locales.php:66 +#: [rewrite]info msgid "The URL Rewriting can be enabled" msgstr "" -#: ../cache/locales.php:67 +#: [admin]compatibility msgid "General Overview" msgstr "" -#: ../cache/locales.php:68 -msgid "" -"Movim has found some issues or things that need to be fixed or improved" +#: [compatibility]info +msgid "Movim has found some issues or things that need to be fixed or improved" msgstr "" -#: ../cache/locales.php:69 -#, php-format +#: [compatibility]php1 msgid "Update your PHP-Version: %s" msgstr "" -#: ../cache/locales.php:70 +#: [compatibility]php2 msgid "Required: 5.3.0" msgstr "" -#: ../cache/locales.php:71 +#: [compatibility]curl msgid "Install the php5-curl library" msgstr "" -#: ../cache/locales.php:72 +#: [compatibility]imagick msgid "Install the php5-imagick library" msgstr "" -#: ../cache/locales.php:73 +#: [compatibility]gd msgid "Install the php5-gd library" msgstr "" -#: ../cache/locales.php:74 -msgid "Read and write rights for the webserver in Movim's root directory" -msgstr "" +#: [compatibility]rights +#, fuzzy +msgid "Read and write rights for the webserver in Movims root directory" +msgstr "Включити права читання і запису на кореневу папку Movim" -#: ../cache/locales.php:75 +#: [compatibility]rewrite msgid "The URL Rewriting support is currently disabled" msgstr "" -#: ../cache/locales.php:76 +#: [compatibility]db msgid "The database need to be updated, go to the database panel to fix this" msgstr "" -#: ../cache/locales.php:77 -msgid "" -"WebSocket connection error, check if the Movim Daemon is running and is " -"reacheable" +#: [compatibility]websocket +msgid "WebSocket connection error, check if the Movim Daemon is running and is reachable" msgstr "" -#: ../cache/locales.php:78 -msgid "" -"XMPP Websocket connection error, please check the validity of the URL given " -"in the General Configuration" +#: [compatibility]xmpp_websocket +msgid "XMPP Websocket connection error, please check the validity of the URL given in the General Configuration" msgstr "" -#: ../cache/locales.php:79 +#: [schema]browser msgid "Browser" msgstr "" -#: ../cache/locales.php:80 +#: [schema]movim msgid "Movim Core" msgstr "" -#: ../cache/locales.php:81 +#: [schema]daemon msgid "Movim Daemon" msgstr "" -#: ../cache/locales.php:84 +#: [schema]xmpp msgid "XMPP" msgstr "" -#: ../cache/locales.php:86 -#, php-format -msgid "" -"Here you can register your pod on the official %sMovim API%s and be listed " -"on %sthe pods page%s." +#: [api]info +msgid "Here you can register your pod on the official %sMovim API%s and be listed on %sthe pods page%s." msgstr "" -#: ../cache/locales.php:87 +#: [api]register msgid "Your pod is not registered on the API" msgstr "" -#: ../cache/locales.php:88 +#: [api]registered msgid "Your pod is registered on the API" msgstr "" -#: ../cache/locales.php:89 +#: [api]wait msgid "Your pod is not yet validated" msgstr "" -#: ../cache/locales.php:90 +#: [api]validated msgid "Your pod is validated" msgstr "" -#: ../cache/locales.php:91 -msgid "" -"You asked to be removed from the API, this request will be processed in a " -"couple of hours" +#: [api]unregister +msgid "You asked to be removed from the API, this request will be processed in a couple of hours" msgstr "" -#: ../cache/locales.php:92 ../cache/locales.php:147 +#: [api]conf_updated [config]updated msgid "Configuration updated" msgstr "" -#: ../cache/locales.php:93 +#: [avatar]file msgid "File" msgstr "" -#: ../cache/locales.php:94 +#: [avatar]use_it msgid "Use it" msgstr "" -#: ../cache/locales.php:95 +#: [avatar]webcam msgid "Webcam" msgstr "" -#: ../cache/locales.php:96 +#: [avatar]cheese msgid "Cheese !" msgstr "" -#: ../cache/locales.php:97 +#: [avatar]snapshot msgid "Take a webcam snapshot" msgstr "" -#: ../cache/locales.php:98 +#: [avatar]updated msgid "Avatar Updated" msgstr "" -#: ../cache/locales.php:99 +#: [avatar]not_updated msgid "Avatar Not Updated" msgstr "" -#: ../cache/locales.php:100 ../cache/locales.php:415 -#, php-format +#: [blog]title [feed]title msgid "%s's feed" msgstr "" -#: ../cache/locales.php:101 +#: [blog]empty msgid "This user has not posted anything right now" msgstr "" -#: ../cache/locales.php:102 +#: [title]conferences msgid "Conferences" msgstr "" -#: ../cache/locales.php:103 ../cache/locales.php:193 ../cache/locales.php:217 -#: ../cache/locales.php:468 +#: [title]groups [group]empty_title [menu]groups [page]groups msgid "Groups" msgstr "" -#: ../cache/locales.php:104 +#: [chatroom]add msgid "Add a new Chat Room" msgstr "" -#: ../cache/locales.php:105 ../cache/locales.php:368 +#: [chatroom]id [chatrooms]id msgid "Chat Room ID" msgstr "" -#: ../cache/locales.php:106 ../cache/locales.php:116 ../cache/locales.php:156 -#: ../cache/locales.php:361 ../cache/locales.php:369 ../cache/locales.php:424 +#: [chatroom]name +msgctxt "[chatroom]name" msgid "Name" msgstr "" -#: ../cache/locales.php:107 ../cache/locales.php:157 ../cache/locales.php:371 -#: ../cache/locales.php:425 +#: [chatroom]nickname [general]nickname [chatrooms]nickname msgid "Nickname" msgstr "" -#: ../cache/locales.php:108 +#: [chatroom]autojoin_label msgid "Do you want do join automaticaly this Chat Room ?" msgstr "" -#: ../cache/locales.php:109 ../cache/locales.php:372 +#: [chatroom]bad_id [chatrooms]bad_id msgid "Bad Chatroom ID" msgstr "" -#: ../cache/locales.php:110 ../cache/locales.php:373 +#: [chatroom]empty_name [chatrooms]empty_name msgid "Empty name" msgstr "" -#: ../cache/locales.php:111 ../cache/locales.php:380 +#: [bookmarks]updated msgid "Bookmarks updated" msgstr "" -#: ../cache/locales.php:112 -msgid "An error occured : " +#: [bookmarks]error +msgid "An error occured :" msgstr "" -#: ../cache/locales.php:113 +#: [bookmarks]configure msgid "Configure" msgstr "" -#: ../cache/locales.php:114 +#: [url]add msgid "Add a new URL" msgstr "" -#: ../cache/locales.php:115 +#: [url]url msgid "URL" msgstr "" -#: ../cache/locales.php:117 +#: [url]name +msgctxt "[url]name" +msgid "Name" +msgstr "" + +#: [message]published msgid "Message Published" msgstr "" -#: ../cache/locales.php:118 ../cache/locales.php:138 +#: [message]encrypted msgid "Encrypted message" msgstr "" -#: ../cache/locales.php:119 +#: [message]composing [chats]composing msgid "Composing..." msgstr "" -#: ../cache/locales.php:120 +#: [message]paused [chats]paused msgid "Paused..." msgstr "" -#: ../cache/locales.php:121 +#: [message]gone msgid "Contact gone" msgstr "" -#: ../cache/locales.php:122 -#, php-format +#: [chat]attention msgid "%s needs your attention" msgstr "" -#: ../cache/locales.php:123 +#: [chat]placeholder msgid "Your message here..." msgstr "" -#: ../cache/locales.php:124 +#: [chat]smileys msgid "Smileys" msgstr "" -#: ../cache/locales.php:125 ../cache/locales.php:139 +#: [chat]empty_title [button]chat msgid "Chat" msgstr "" -#: ../cache/locales.php:126 +#: [chat]empty_text msgid "Discuss with your contacts" msgstr "" -#: ../cache/locales.php:127 -msgid "Members" -msgstr "" - -#: ../cache/locales.php:128 ../cache/locales.php:376 -msgid "Connected to the chatroom" -msgstr "" - -#: ../cache/locales.php:129 ../cache/locales.php:377 -msgid "Disconnected from the chatroom" -msgstr "" - -#: ../cache/locales.php:130 ../cache/locales.php:200 ../cache/locales.php:469 -msgid "Configuration" -msgstr "Конфігурація" - -#: ../cache/locales.php:131 -msgid "Configuration saved" -msgstr "" - -#: ../cache/locales.php:132 -msgid "Subject" -msgstr "" - -#: ../cache/locales.php:133 -msgid "Subject changed" -msgstr "" - -#: ../cache/locales.php:134 -msgid "Open a new conversation by clicking on the plus button bellow" -msgstr "" - -#: ../cache/locales.php:135 -msgid "Chat with a contact" -msgstr "" - -#: ../cache/locales.php:136 +#: [chat]frequent [chats]frequent msgid "Frequent contacts" msgstr "" -#: ../cache/locales.php:137 +#: [chatroom]members +msgid "Members" +msgstr "" + +#: [chatroom]connected [chatrooms]connected +msgid "Connected to the chatroom" +msgstr "" + +#: [chatroom]disconnected [chatrooms]disconnected +msgid "Disconnected from the chatroom" +msgstr "" + +#: [chatroom]config [group]configuration [page]configuration +msgid "Configuration" +msgstr "Конфігурація" + +#: [chatroom]config_saved +msgid "Configuration saved" +msgstr "" + +#: [chatroom]subject +msgid "Subject" +msgstr "" + +#: [chatroom]subject_changed +msgid "Subject changed" +msgstr "" + +#: [chats]empty_title +msgid "No chats yet..." +msgstr "" + +#: [chats]empty +msgid "Open a new conversation by clicking on the plus button bellow or visit the Contacts page." +msgstr "" + +#: [chats]add +msgid "Chat with a contact" +msgstr "" + +#: [chats]more msgid "Load more contacts" msgstr "" -#: ../cache/locales.php:140 -msgid "General" -msgstr "" - -#: ../cache/locales.php:141 -msgid "Language" -msgstr "" - -#: ../cache/locales.php:142 -msgid "Roster display" -msgstr "" - -#: ../cache/locales.php:143 -msgid "Show the offline contacts" -msgstr "" - -#: ../cache/locales.php:144 -msgid "Hide the offline contacts" -msgstr "" - -#: ../cache/locales.php:145 -msgid "Appearence" -msgstr "" - -#: ../cache/locales.php:146 -msgid "This configuration is shared wherever you are connected !" -msgstr "" - -#: ../cache/locales.php:148 -msgid "Notify on incoming message" -msgstr "" - -#: ../cache/locales.php:149 -msgid "Use desktop notifications" -msgstr "" - -#: ../cache/locales.php:150 +#: [title]data msgid "Data" msgstr "" -#: ../cache/locales.php:151 +#: [title]cache msgid "Cache" msgstr "" -#: ../cache/locales.php:152 ../cache/locales.php:218 ../cache/locales.php:466 +#: [title]contacts [menu]contacts [page]contacts msgid "Contacts" msgstr "" -#: ../cache/locales.php:153 ../cache/locales.php:480 +#: [title]posts [page]posts msgid "Posts" msgstr "" -#: ../cache/locales.php:154 +#: [title]messages msgid "Messages" msgstr "" -#: ../cache/locales.php:155 ../cache/locales.php:423 +#: [config]general +msgid "General" +msgstr "" + +#: [config]language +msgid "Language" +msgstr "" + +#: [config]roster +msgid "Roster display" +msgstr "" + +#: [config]roster_show +msgid "Show the offline contacts" +msgstr "" + +#: [config]roster_hide +msgid "Hide the offline contacts" +msgstr "" + +#: [config]appearence +msgid "Appearence" +msgstr "" + +#: [config]info +msgid "This configuration is shared wherever you are connected" +msgstr "" + +#: [notifications]message +msgid "Notify on incoming message" +msgstr "" + +#: [notifications]desktop +msgid "Use desktop notifications" +msgstr "" + +#: [general]legend [general]general_title msgid "General Informations" msgstr "" -#: ../cache/locales.php:158 ../cache/locales.php:427 +#: [general]name [public_groups]name [chatrooms]name +msgid "Name" +msgstr "" + +#: [general]date_of_birth msgid "Date of Birth" msgstr "" -#: ../cache/locales.php:159 ../cache/locales.php:428 +#: [general]gender msgid "Gender" msgstr "" -#: ../cache/locales.php:160 ../cache/locales.php:429 +#: [general]marital msgid "Marital Status" msgstr "" -#: ../cache/locales.php:161 ../cache/locales.php:426 +#: [general]email msgid "Email" msgstr "" -#: ../cache/locales.php:162 ../cache/locales.php:430 +#: [general]website msgid "Website" msgstr "" -#: ../cache/locales.php:163 ../cache/locales.php:431 +#: [general]about msgid "About Me" msgstr "" -#: ../cache/locales.php:164 +#: [general]accounts msgid "Other Accounts" msgstr "" -#: ../cache/locales.php:165 +#: [general]tune msgid "Is Listening" msgstr "" -#: ../cache/locales.php:166 ../cache/locales.php:432 +#: [position]legend [position]position_title msgid "Geographic Position" msgstr "" -#: ../cache/locales.php:167 ../cache/locales.php:433 +#: [position]locality msgid "Locality" msgstr "" -#: ../cache/locales.php:168 ../cache/locales.php:434 +#: [position]country msgid "Country" msgstr "" -#: ../cache/locales.php:169 +#: [mood]title msgid "Mood" msgstr "" -#: ../cache/locales.php:170 +#: [mood]im msgid "I'm " msgstr "" -#: ../cache/locales.php:171 +#: [listen]title msgid "Listening" msgstr "" -#: ../cache/locales.php:173 +#: [last]title msgid "Last seen" msgstr "" -#: ../cache/locales.php:174 +#: [client]title msgid "Client Informations" msgstr "" -#: ../cache/locales.php:175 +#: [explore]last_registered msgid "Last registered" msgstr "" -#: ../cache/locales.php:176 +#: [explore]explore msgid "Find some new friends" msgstr "" -#: ../cache/locales.php:177 ../cache/locales.php:533 +#: [edit]title [button]edit msgid "Edit" msgstr "" -#: ../cache/locales.php:178 +#: [edit]alias msgid "Alias" msgstr "" -#: ../cache/locales.php:179 +#: [edit]group msgid "Group" msgstr "" -#: ../cache/locales.php:180 ../cache/locales.php:400 +#: [edit]updated [roster]updated msgid "Contact updated" msgstr "" -#: ../cache/locales.php:181 +#: [delete]title msgid "Are you sure?" msgstr "" -#: ../cache/locales.php:182 -msgid "" -"You are going to delete one of your contacts, please confirm your action" +#: [delete]text +msgid "You are going to delete one of your contacts, please confirm your action" msgstr "" -#: ../cache/locales.php:183 -#, php-format +#: [age]years msgid "%s years" msgstr "" -#: ../cache/locales.php:184 +#: [blog]last msgid "Last public post" msgstr "" -#: ../cache/locales.php:185 +#: [subscription]to +msgid "You can see this contact status" +msgstr "" + +#: [subscription]to_button +msgid "Share my status" +msgstr "" + +#: [subscription]to_text +msgid "But this contact cannot see yours" +msgstr "" + +#: [subscription]from +msgid "You are not subscribed to this contact" +msgstr "" + +#: [subscription]from_button +msgid "Ask to subscribe" +msgstr "" + +#: [subscription]from_text +msgid "But this contact can still see if you are online" +msgstr "" + +#: [subscription]nil +msgid "No subscriptions" +msgstr "" + +#: [subscription]nil_button +msgid "Invite" +msgstr "" + +#: [subscription]nil_text +msgid "This contact is in your contact list but there is no subscriptions between the two accounts" +msgstr "" + +#: [group]subscribe msgid "Subscribe" msgstr "" -#: ../cache/locales.php:186 +#: [group]subscribed msgid "Subscribed" msgstr "" -#: ../cache/locales.php:187 +#: [group]unsubscribe msgid "Unsubscribe" msgstr "" -#: ../cache/locales.php:188 +#: [group]unsubscribe_text msgid "You are going to unsubscribe from this Group" msgstr "" -#: ../cache/locales.php:189 +#: [group]unsubscribed msgid "Unsubscribed" msgstr "" -#: ../cache/locales.php:190 +#: [group]share_label msgid "Make your membership to this group public to your friends" msgstr "" -#: ../cache/locales.php:191 +#: [group]label_label msgid "Give a label for this group" msgstr "" -#: ../cache/locales.php:192 +#: [group]sure msgid "Are you sure ?" msgstr "" -#: ../cache/locales.php:194 +#: [group]empty_text msgid "Discover, follow and share" msgstr "" -#: ../cache/locales.php:195 +#: [group]empty msgid "Something bad happened to this group" msgstr "" -#: ../cache/locales.php:196 +#: [group]config_saved msgid "Group configuration saved" msgstr "" -#: ../cache/locales.php:197 +#: [group]delete_title msgid "Delete the group" msgstr "" -#: ../cache/locales.php:198 -msgid "" -"You are going to delete the following group. Please confirm your action." +#: [group]delete_text +msgid "You are going to delete the following group. Please confirm your action." msgstr "" -#: ../cache/locales.php:199 -msgid "" -"It seems that this group doesn't exists anymore. Do you want to remove it " -"from your subscriptions?" +#: [group]delete_clean_text +msgid "It seems that this group doesn't exists anymore. Do you want to remove it from your subscriptions?" msgstr "" -#: ../cache/locales.php:201 ../cache/locales.php:408 +#: [group]counter +msgid "%s groups on this server" +msgstr "" + +#: [group]subscriptions [statistics]subscriptions msgid "Subscriptions" msgstr "" -#: ../cache/locales.php:202 ../cache/locales.php:290 +#: [group]servers +msgid "Groups servers" +msgstr "" + +#: [group]search_server +msgid "Search for a new server" +msgstr "" + +#: [group]help_info1 +msgid "Groups are the perfect way to share posts about topics that you like with all the other Movim's users." +msgstr "" + +#: [group]help_info2 +msgid "Choose a server and a Group and subscribe to it using the %s button in the header. You can also create a new one using the %s button." +msgstr "" + +#: [group]help_info3 +msgid "Done? You can now publish a new post in the Group by using the %s button." +msgstr "" + +#: [group]help_info4 +msgid "You will find a list of all your subscribed Groups in My Subscriptions and receive instantly all the new incoming posts in the %sNews%s page." +msgstr "" + +#: [groups]empty_title msgid "Hello" msgstr "" -#: ../cache/locales.php:203 ../cache/locales.php:225 ../cache/locales.php:291 +#: [groups]contact_post [hello]contact_post [menu]contact_post msgid "Contact post" msgstr "" -#: ../cache/locales.php:204 -msgid "" -"You don't have any subscriptions yet, select a group server above to start " -"exploring." +#: [groups]empty_text1 +msgid "You don't have any subscriptions yet, select a group server above to start exploring." msgstr "" -#: ../cache/locales.php:205 +#: [groups]empty_text2 msgid "Subscribe to your favorite feeds by bookmarking them." msgstr "" -#: ../cache/locales.php:206 +#: [groups]subscriptions msgid "My Subscriptions" msgstr "" -#: ../cache/locales.php:207 +#: [groups]add msgid "Create a new Group" msgstr "" -#: ../cache/locales.php:208 +#: [groups]name msgid "Group name" msgstr "" -#: ../cache/locales.php:209 +#: [groups]name_example msgid "My Little Pony - Fan Club" msgstr "" -#: ../cache/locales.php:210 +#: [groups]created msgid "Group created successfully" msgstr "" -#: ../cache/locales.php:211 +#: [groups]deleted msgid "Group deleted successfully" msgstr "" -#: ../cache/locales.php:212 +#: [groups]name_error msgid "Please provide a valid group name (4 characters minimum)" msgstr "" -#: ../cache/locales.php:213 +#: [groups]no_creation msgid "You cannot create a new Group on this server" msgstr "" -#: ../cache/locales.php:214 -#, php-format +#: [groups]sub msgid "%s subscribers" msgstr "" -#: ../cache/locales.php:215 -#, php-format +#: [groups]num msgid "%s posts" msgstr "" -#: ../cache/locales.php:216 +#: [groups]disco_error +msgid "This server doesn't exists" +msgstr "" + +#: [menu]all msgid "All" msgstr "" -#: ../cache/locales.php:219 +#: [menu]refresh msgid "Refresh all the streams" msgstr "" -#: ../cache/locales.php:220 ../cache/locales.php:402 -msgid "Search" +#: [roster]search +msgid "Search in your contacts" msgstr "" -#: ../cache/locales.php:221 +#: [hello]active_contacts +msgid "Active contacts" +msgstr "" + +#: [hello]chat msgid "Go on the Chat page" msgstr "" -#: ../cache/locales.php:222 -msgid "Read all theses articles on the News page" -msgstr "" - -#: ../cache/locales.php:223 -msgid "Visit your public blog" -msgstr "" - -#: ../cache/locales.php:224 -msgid "See your public posts and share them with all your contacts" -msgstr "" - -#: ../cache/locales.php:226 -msgid "Universal share button" -msgstr "" - -#: ../cache/locales.php:227 -msgid "" -"Bookmark or drag and drop the following button in your toolbar and use it on " -"all the pages you want to share on Movim" -msgstr "" - -#: ../cache/locales.php:228 -msgid "Share on Movim" -msgstr "" - -#: ../cache/locales.php:229 -msgid "Frequently Asked Questions" -msgstr "" - -#: ../cache/locales.php:230 -msgid "What do the little banners refer to ?" -msgstr "" - -#: ../cache/locales.php:231 -msgid "" -"Thanks to these five little banners, you can quickly identitfy the level of " -"confdentiality applied to the information you provide." -msgstr "" - -#: ../cache/locales.php:232 -msgid "White, only you can see the information" -msgstr "" - -#: ../cache/locales.php:233 -msgid "Green, you have chosen some contacts who can see your information" -msgstr "" - -#: ../cache/locales.php:234 -msgid "Orange, all your contact list can see your information" -msgstr "" - -#: ../cache/locales.php:235 -msgid "Red, everybody in the XMPP network can see your information" -msgstr "" - -#: ../cache/locales.php:236 -msgid "Black, the whole Internet can see your information" -msgstr "" - -#: ../cache/locales.php:237 -msgid "Looking for some documentation ?" -msgstr "" - -#: ../cache/locales.php:238 -msgid "Read the Wiki" -msgstr "" - -#: ../cache/locales.php:239 -msgid "Talk with us by email ?" -msgstr "" - -#: ../cache/locales.php:240 -msgid "Join the Mailing List" -msgstr "" - -#: ../cache/locales.php:241 -msgid "Chat with the team ?" -msgstr "" - -#: ../cache/locales.php:242 -msgid "Join the Chatroom" -msgstr "" - -#: ../cache/locales.php:243 -msgid "Location node created" -msgstr "" - -#: ../cache/locales.php:244 -msgid "Bookmark node created" -msgstr "" - -#: ../cache/locales.php:245 -msgid "Profile node created" -msgstr "" - -#: ../cache/locales.php:246 -msgid "Avatar node created" -msgstr "" - -#: ../cache/locales.php:247 -msgid "Subscriptions node created" -msgstr "" - -#: ../cache/locales.php:248 -msgid "Microblog node created" -msgstr "" - -#: ../cache/locales.php:249 -msgid "Location" -msgstr "" - -#: ../cache/locales.php:250 -msgid "Wrong position" -msgstr "" - -#: ../cache/locales.php:251 -msgid "Location updated" -msgstr "" - -#: ../cache/locales.php:252 -msgid "Update my position" -msgstr "" - -#: ../cache/locales.php:253 -msgid "Wrong username" -msgstr "" - -#: ../cache/locales.php:254 -msgid "Invalid JID" -msgstr "" - -#: ../cache/locales.php:255 -msgid "Empty Challenge from the server" -msgstr "" - -#: ../cache/locales.php:256 -msgid "XMPP Domain error, your account is not a correct Jabber ID" -msgstr "" - -#: ../cache/locales.php:257 -msgid "Some data are missing !" -msgstr "" - -#: ../cache/locales.php:258 -msgid "Wrong password" -msgstr "" - -#: ../cache/locales.php:259 -msgid "Internal server error" -msgstr "" - -#: ../cache/locales.php:260 -msgid "Session error" -msgstr "" - -#: ../cache/locales.php:261 -msgid "Account successfully created" -msgstr "" - -#: ../cache/locales.php:262 ../cache/locales.php:271 -msgid "Your XMPP server is unauthorized" -msgstr "" - -#: ../cache/locales.php:263 -msgid "The server takes too much time to respond" -msgstr "" - -#: ../cache/locales.php:264 -msgid "Your web browser is too old to use with Movim." -msgstr "" - -#: ../cache/locales.php:265 -msgid "" -"Movim cannot talk with the server, please try again later (Websocket " -"connection error)" -msgstr "" - -#: ../cache/locales.php:266 -msgid "Impossible login" -msgstr "" - -#: ../cache/locales.php:267 -msgid "Oops!" -msgstr "" - -#: ../cache/locales.php:268 ../cache/locales.php:449 ../cache/locales.php:455 -msgid "Unknown error" -msgstr "" - -#: ../cache/locales.php:269 -msgid "Invalid username format" -msgstr "" - -#: ../cache/locales.php:270 -msgid "Invalid password format" -msgstr "" - -#: ../cache/locales.php:272 -msgid "A Movim session is already open on an other device" -msgstr "" - -#: ../cache/locales.php:273 -msgid "Movim failed to authenticate. You entered wrong data" -msgstr "" - -#: ../cache/locales.php:274 -msgid "Authentication mechanism not supported by Movim" -msgstr "" - -#: ../cache/locales.php:275 -msgid "The XMPP authentification failed" -msgstr "" - -#: ../cache/locales.php:276 -#, php-format -msgid "" -"You can login with Facebook (chat only) using %syour.id@chat.facebook.com%s " -"and your password" -msgstr "" - -#: ../cache/locales.php:277 -#, php-format -msgid "%sGmail accounts are also compatible%s but are not fully supported" -msgstr "" - -#: ../cache/locales.php:278 -msgid "You can login using your favorite Jabber account" -msgstr "" - -#: ../cache/locales.php:279 -msgid "or with our demonstration account" -msgstr "" - -#: ../cache/locales.php:280 ../cache/locales.php:435 -msgid "Accounts" -msgstr "" - -#: ../cache/locales.php:281 -msgid "My address" -msgstr "" - -#: ../cache/locales.php:283 -msgid "Create one !" -msgstr "" - -#: ../cache/locales.php:284 -msgid "No account yet ?" -msgstr "" - -#: ../cache/locales.php:285 -msgid "Another account" -msgstr "" - -#: ../cache/locales.php:286 -msgid "You can login with accounts from theses servers" -msgstr "" - -#: ../cache/locales.php:287 -msgid "Connected" -msgstr "" - -#: ../cache/locales.php:288 -msgid "Population" -msgstr "" - -#: ../cache/locales.php:289 -msgid "Bad nickname (between 4 and 40 characters)" -msgstr "" - -#: ../cache/locales.php:292 -msgid "" -"Welcome on your news feed, here you will see all the posts published in the " -"groups you have subscribed." -msgstr "" - -#: ../cache/locales.php:293 -msgid "Refreshing all the streams" -msgstr "" - -#: ../cache/locales.php:294 -msgid "This post is public" -msgstr "" - -#: ../cache/locales.php:295 -msgid "Manage your members" -msgstr "" - -#: ../cache/locales.php:296 -msgid "Get the members" -msgstr "" - -#: ../cache/locales.php:297 -msgid "Affiliations saved" -msgstr "" - -#: ../cache/locales.php:298 -msgid "Manage your subscriptions" -msgstr "" - -#: ../cache/locales.php:299 -msgid "Manage the subscriptions" -msgstr "" - -#: ../cache/locales.php:300 -msgid "Get the subscriptions" -msgstr "" - -#: ../cache/locales.php:301 -msgid "Subscriptions saved" -msgstr "" - -#: ../cache/locales.php:302 -msgid "Pending Invitations" -msgstr "" - -#: ../cache/locales.php:303 -#, php-format -msgid "%s wants to talk with you" -msgstr "" - -#: ../cache/locales.php:304 -msgid "Manage" -msgstr "" - -#: ../cache/locales.php:305 ../cache/locales.php:338 -msgid "News Feed" -msgstr "" - -#: ../cache/locales.php:306 ../cache/locales.php:339 -msgid "Discover and register to the groups you are interested in" -msgstr "" - -#: ../cache/locales.php:307 ../cache/locales.php:340 ../cache/locales.php:482 -msgid "Preview" -msgstr "" - -#: ../cache/locales.php:308 ../cache/locales.php:341 ../cache/locales.php:478 -msgid "Help" -msgstr "" - -#: ../cache/locales.php:309 ../cache/locales.php:342 -msgid "More help" -msgstr "" - -#: ../cache/locales.php:310 ../cache/locales.php:343 -msgid "Markdown syntax manual" -msgstr "" - -#: ../cache/locales.php:311 ../cache/locales.php:344 ../cache/locales.php:681 -msgid "Title" -msgstr "" - -#: ../cache/locales.php:312 ../cache/locales.php:345 -msgid "Content" -msgstr "" - -#: ../cache/locales.php:313 ../cache/locales.php:346 -msgid "Link" -msgstr "" - -#: ../cache/locales.php:314 ../cache/locales.php:347 -msgid "Tags" -msgstr "" - -#: ../cache/locales.php:315 ../cache/locales.php:348 -msgid "Please enter a valid url" -msgstr "" - -#: ../cache/locales.php:316 ../cache/locales.php:349 -msgid "No content to preview" -msgstr "" - -#: ../cache/locales.php:317 ../cache/locales.php:350 ../cache/locales.php:687 -msgid "No content" -msgstr "" - -#: ../cache/locales.php:318 ../cache/locales.php:351 -msgid "Post published" -msgstr "" - -#: ../cache/locales.php:319 ../cache/locales.php:352 -msgid "Post deleted" -msgstr "" - -#: ../cache/locales.php:320 ../cache/locales.php:353 -msgid "This picture will be added to your gallery" -msgstr "" - -#: ../cache/locales.php:321 ../cache/locales.php:354 -msgid "What's Hot" -msgstr "" - -#: ../cache/locales.php:322 ../cache/locales.php:355 -msgid "New post" -msgstr "" - -#: ../cache/locales.php:323 ../cache/locales.php:357 -msgid "" -"You can also use services like Imgur or Flickr to host your picture and " -"paste the link here." -msgstr "" - -#: ../cache/locales.php:324 -#, php-format -msgid "This is a re-post from %s" -msgstr "" - -#: ../cache/locales.php:325 -#, php-format -msgid "See %s profile" -msgstr "" - -#: ../cache/locales.php:326 -msgid "Publish this post on your public feed?" -msgstr "" - -#: ../cache/locales.php:327 -msgid "Post published on your blog" -msgstr "" - -#: ../cache/locales.php:328 -msgid "Post removed from your blog" -msgstr "" - -#: ../cache/locales.php:329 ../cache/locales.php:701 -msgid "Delete this post" -msgstr "" - -#: ../cache/locales.php:330 -msgid "You are going to delete this post, please confirm your action" -msgstr "" - -#: ../cache/locales.php:331 -msgid "Comments disabled" -msgstr "" - -#: ../cache/locales.php:332 -msgid "Comment published" -msgstr "" - -#: ../cache/locales.php:333 -msgid "Disconnect" -msgstr "" - -#: ../cache/locales.php:334 -msgid "Your status here !" -msgstr "" - -#: ../cache/locales.php:335 -msgid "Status updated" -msgstr "" - -#: ../cache/locales.php:336 -msgid "Status" -msgstr "" - -#: ../cache/locales.php:337 -msgid "Presence" -msgstr "" - -#: ../cache/locales.php:356 -msgid "Publish" -msgstr "" - -#: ../cache/locales.php:358 -msgid "You cannot publish a post on this Group" -msgstr "" - -#: ../cache/locales.php:359 -msgid "" -"Some fields have been filled in. Do you still want to go back and loose " -"their content?" -msgstr "" - -#: ../cache/locales.php:360 -msgid "Shared" -msgstr "" - -#: ../cache/locales.php:362 -#, php-format -msgid "%s has been added to your public groups" -msgstr "" - -#: ../cache/locales.php:363 -#, php-format -msgid "%s has been removed from your public groups" -msgstr "" - -#: ../cache/locales.php:364 -msgid "Add a chatroom" -msgstr "" - -#: ../cache/locales.php:365 -msgid "You don't have any chatroom yet." -msgstr "" - -#: ../cache/locales.php:366 -msgid "Add one by clicking on the add button in the header." -msgstr "" - -#: ../cache/locales.php:367 -msgid "Chatrooms" -msgstr "" - -#: ../cache/locales.php:370 -msgid "My Favorite Room" -msgstr "" - -#: ../cache/locales.php:374 -msgid "Remove a chatroom" -msgstr "" - -#: ../cache/locales.php:375 -msgid "" -"You are going to remove the following chatroom. Please confirm your action." -msgstr "" - -#: ../cache/locales.php:378 -msgid "Users in the room" -msgstr "" - -#: ../cache/locales.php:379 -msgid "Please enter a correct nickname (6 to 40 characters)" -msgstr "" - -#: ../cache/locales.php:381 -msgid "Public chatroom" -msgstr "" - -#: ../cache/locales.php:382 -msgid "Please provide a room address" -msgstr "" - -#: ../cache/locales.php:383 -msgid "You are currently logued as an anonymous user." -msgstr "" - -#: ../cache/locales.php:384 -msgid "" -"You can join using your own account or create one on the login page by " -"loging out using the cross in the top-right corner." -msgstr "" - -#: ../cache/locales.php:385 -#, php-format -msgid "Login on %s" -msgstr "" - -#: ../cache/locales.php:386 -msgid "Your nickname" -msgstr "" - -#: ../cache/locales.php:387 -msgid "Ungrouped" -msgstr "" - -#: ../cache/locales.php:388 -msgid "Show disconnected contacts" -msgstr "" - -#: ../cache/locales.php:389 -msgid "Hide disconnected contacts" -msgstr "" - -#: ../cache/locales.php:390 -#, php-format -msgid "Show group %s" -msgstr "" - -#: ../cache/locales.php:391 -#, php-format -msgid "Hide group %s" -msgstr "" - -#: ../cache/locales.php:392 -msgid "Please enter a valid Jabber ID" -msgstr "" - -#: ../cache/locales.php:393 -msgid "" -"No contacts ? You can add one using the + button bellow or going to the " -"Explore page" -msgstr "" - -#: ../cache/locales.php:394 -msgid "Show/Hide" -msgstr "" - -#: ../cache/locales.php:395 -msgid "Enter the Jabber ID of your contact." -msgstr "" - -#: ../cache/locales.php:396 -msgid "Press enter to validate." -msgstr "" - -#: ../cache/locales.php:397 -msgid "JID" -msgstr "" - -#: ../cache/locales.php:398 -msgid "Results" -msgstr "" - -#: ../cache/locales.php:399 -msgid "Contact added" -msgstr "" - -#: ../cache/locales.php:401 -msgid "Contact deleted" -msgstr "" - -#: ../cache/locales.php:403 -msgid "This is not a valid url" -msgstr "" - -#: ../cache/locales.php:404 -msgid "Sharing the URL" -msgstr "" - -#: ../cache/locales.php:405 -msgid "Statistics" -msgstr "" - -#: ../cache/locales.php:406 -msgid "Since" -msgstr "" - -#: ../cache/locales.php:407 -msgid "Sessions" -msgstr "" - -#: ../cache/locales.php:409 -msgid "Monthly Subscriptions" -msgstr "" - -#: ../cache/locales.php:410 -msgid "Monthly Subscriptions Cumulated" -msgstr "" - -#: ../cache/locales.php:412 -msgid "" -"Movim is a decentralized social network, before creating a new account you " -"need to choose a server to register." -msgstr "" - -#: ../cache/locales.php:413 -msgid "Your server here ?" -msgstr "" - -#: ../cache/locales.php:414 -msgid "Contact us to add yours to the officially supported servers list" -msgstr "" - -#: ../cache/locales.php:416 -msgid "No public feed for this contact" -msgstr "" - -#: ../cache/locales.php:417 -msgid "No contact specified" -msgstr "" - -#: ../cache/locales.php:418 ../cache/locales.php:473 -msgid "Profile" -msgstr "" - -#: ../cache/locales.php:419 -msgid "Profile Updated" -msgstr "" - -#: ../cache/locales.php:420 -msgid "Profile Not Updated" -msgstr "" - -#: ../cache/locales.php:421 -msgid "Your profile is now public" -msgstr "" - -#: ../cache/locales.php:422 -msgid "Your profile is now restricted" -msgstr "" - -#: ../cache/locales.php:436 -msgid "Twitter" -msgstr "" - -#: ../cache/locales.php:437 -msgid "Skype" -msgstr "" - -#: ../cache/locales.php:438 -msgid "Yahoo" -msgstr "" - -#: ../cache/locales.php:439 -msgid "Privacy Level" -msgstr "" - -#: ../cache/locales.php:440 -msgid "Is this profile public ?" -msgstr "" - -#: ../cache/locales.php:441 -msgid "" -"Please pay attention ! By making your profile public, all the information " -"listed above will be available for all the Movim users and on the whole " -"Internet." -msgstr "" - -#: ../cache/locales.php:442 -msgid "Call" -msgstr "" - -#: ../cache/locales.php:443 -msgid "Hang up" -msgstr "" - -#: ../cache/locales.php:444 -msgid "Connection" -msgstr "" - -#: ../cache/locales.php:445 ../cache/locales.php:451 -msgid "Hung up" -msgstr "" - -#: ../cache/locales.php:446 ../cache/locales.php:452 -msgid "Your contact is busy" -msgstr "" - -#: ../cache/locales.php:447 ../cache/locales.php:453 -msgid "Declined" -msgstr "" - -#: ../cache/locales.php:448 ../cache/locales.php:454 -msgid "Remote application incompatible" -msgstr "" - -#: ../cache/locales.php:450 ../cache/locales.php:456 -msgid "Is calling you" -msgstr "" - -#: ../cache/locales.php:457 -msgid "You don't have javascript enabled. Good luck with that." -msgstr "" - -#: ../cache/locales.php:458 -msgid "" -"Movim is a kickass distributed social networking platform that protect your " -"privacy an comes with a set of awesome features." -msgstr "" - -#: ../cache/locales.php:459 -msgid "Administration" -msgstr "" - -#: ../cache/locales.php:460 -msgid "Home" -msgstr "" - -#: ../cache/locales.php:461 -msgid "Discover" -msgstr "" - -#: ../cache/locales.php:462 -msgid "Explore" -msgstr "" - -#: ../cache/locales.php:463 -msgid "Account Creation" -msgstr "" - -#: ../cache/locales.php:464 +#: [hello]news [page]news msgid "News" msgstr "" -#: ../cache/locales.php:465 -msgid "Avatar" +#: [hello]news_page +msgid "Read all theses articles on the News page" msgstr "" -#: ../cache/locales.php:467 -msgid "Chats" +#: [hello]blog_title +msgid "Visit your public blog" msgstr "" -#: ../cache/locales.php:470 -msgid "Server" +#: [hello]blog_text +msgid "See your public posts and share them with all your contacts" msgstr "" -#: ../cache/locales.php:471 -msgid "Public Groups" +#: [hello]share_title +msgid "Universal share button" msgstr "" -#: ../cache/locales.php:472 -msgid "Viewer" +#: [hello]share_text +msgid "Bookmark or drag and drop the following button in your toolbar and use it on all the pages you want to share on Movim" msgstr "" -#: ../cache/locales.php:474 -msgid "Media" +#: [hello]share_button +msgid "Share on Movim" msgstr "" -#: ../cache/locales.php:475 -msgid "Blog" +#: [help]faq +msgid "Frequently Asked Questions" msgstr "" -#: ../cache/locales.php:476 -msgid "About" +#: [banner]title +msgid "What do the little banners refer to ?" msgstr "" -#: ../cache/locales.php:477 -msgid "Login" +#: [banner]info1 +msgid "Thanks to these five little banners, you can quickly identitfy the level of confdentiality applied to the information you provide." msgstr "" -#: ../cache/locales.php:479 -msgid "Feed" +#: [banner]white +msgid "White, only you can see the information" msgstr "" -#: ../cache/locales.php:481 -msgid "Gallery" +#: [banner]green +msgid "Green, you have chosen some contacts who can see your information" msgstr "" -#: ../cache/locales.php:483 -msgid "Visio-conference" +#: [banner]orange +msgid "Orange, all your contact list can see your information" msgstr "" -#: ../cache/locales.php:484 -msgid "Pods" +#: [banner]red +msgid "Red, everybody in the XMPP network can see your information" msgstr "" -#: ../cache/locales.php:485 -msgid "Share" +#: [banner]black +msgid "Black, the whole Internet can see your information" msgstr "" -#: ../cache/locales.php:486 -msgid "Room" +#: [wiki]question +msgid "Looking for some documentation ?" msgstr "" -#: ../cache/locales.php:487 -#, php-format -msgid "Error: %s" +#: [wiki]button +msgid "Read the Wiki" msgstr "" -#: ../cache/locales.php:488 -#, php-format -msgid "Cannot load file '%s'" +#: [ml]question +msgid "Talk with us by email ?" msgstr "" -#: ../cache/locales.php:489 -#, php-format -msgid "Route error, please set all the parameters for the page %s" +#: [ml]button +msgid "Join the Mailing List" msgstr "" -#: ../cache/locales.php:490 -#, php-format -msgid "Requested widget '%s' doesn't exist." +#: [chatroom]question +msgid "Chat with the team ?" msgstr "" -#: ../cache/locales.php:491 -#, php-format -msgid "Requested event '%s' not registered." +#: [chatroom]button +msgid "Join the Chatroom" msgstr "" -#: ../cache/locales.php:492 -msgid "Whoops!" +#: [init]location +msgid "Location node created" msgstr "" -#: ../cache/locales.php:493 -msgid "It seem that you don't have any pictures here?" +#: [init]bookmark +msgid "Bookmark node created" msgstr "" -#: ../cache/locales.php:494 -msgid "You can try to upload a couple by going to the Media page" +#: [init]vcard4 +msgid "Profile node created" msgstr "" -#: ../cache/locales.php:495 -#, php-format -msgid "%s - About" +#: [init]avatar +msgid "Avatar node created" msgstr "" -#: ../cache/locales.php:496 -#, php-format -msgid "%s - Account" +#: [init]subscriptions +msgid "Subscriptions node created" msgstr "" -#: ../cache/locales.php:497 -#, php-format -msgid "%s - Administration Panel" +#: [init]microblog +msgid "Microblog node created" msgstr "" -#: ../cache/locales.php:498 -#, php-format -msgid "%s - Blog" +#: [location]title +msgid "Location" msgstr "" -#: ../cache/locales.php:499 -#, php-format -msgid "%s - Configuration" -msgstr "%s - Конфігурація" - -#: ../cache/locales.php:500 -#, php-format -msgid "%s - Discover" +#: [location]wrong_postition +msgid "Wrong position" msgstr "" -#: ../cache/locales.php:501 -#, php-format -msgid "%s - Explore" +#: [location]updated +msgid "Location updated" msgstr "" -#: ../cache/locales.php:502 -#, php-format -msgid "%s - Help Page" +#: [location]update +msgid "Update my position" msgstr "" -#: ../cache/locales.php:503 -#, php-format -msgid "%s - Login to Movim" +#: [login_anonymous]bad_username +msgid "Bad nickname (between 4 and 40 characters)" msgstr "" -#: ../cache/locales.php:504 -#, php-format -msgid "%s - Welcome to Movim" +#: [error]username +msgid "Wrong username" msgstr "" -#: ../cache/locales.php:505 -#, php-format -msgid "%s - Media" +#: [error]jid +msgid "Invalid JID" msgstr "" -#: ../cache/locales.php:506 -#, php-format -msgid "%s - News" +#: [error]empty_challenge +msgid "Empty Challenge from the server" msgstr "" -#: ../cache/locales.php:507 -#, php-format -msgid "%s - Group Configuration" +#: [error]dns +msgid "XMPP Domain error, your account is not a correct Jabber ID" msgstr "" -#: ../cache/locales.php:508 -#, php-format -msgid "%s - Group" +#: [error]data_missings +msgid "Some data are missing !" msgstr "" -#: ../cache/locales.php:509 -#, php-format -msgid "%s - 404" +#: [error]wrong_password +msgid "Wrong password" msgstr "" -#: ../cache/locales.php:510 -#, php-format -msgid "%s - Profile" +#: [error]internal +msgid "Internal server error" msgstr "" -#: ../cache/locales.php:511 -#, php-format -msgid "%s - Server" +#: [error]session +msgid "Session error" msgstr "" -#: ../cache/locales.php:512 -msgid "Validate" +#: [error]account_created +msgid "Account successfully created" msgstr "" -#: ../cache/locales.php:513 -msgid "Refresh" +#: [error]xmpp_unauthorized +msgctxt "[error]xmpp_unauthorized" +msgid "Your XMPP server is unauthorized" msgstr "" -#: ../cache/locales.php:514 -msgid "Add" +#: [error]mec_error +msgid "The server takes too much time to respond" msgstr "" -#: ../cache/locales.php:515 -msgid "Delete" +#: [error]too_old +msgid "Your web browser is too old to use with Movim." msgstr "" -#: ../cache/locales.php:516 -msgid "Remove" +#: [error]websocket +msgid "Movim cannot talk with the server, please try again later (Websocket connection error)" msgstr "" -#: ../cache/locales.php:517 -msgid "Cancel" +#: [error]impossible +msgid "Impossible login" msgstr "" -#: ../cache/locales.php:518 -msgid "Close" +#: [error]title +msgid "Oops!" msgstr "" -#: ../cache/locales.php:519 -msgid "Update" +#: [error]default [visio]unknown_error +msgid "Unknown error" msgstr "" -#: ../cache/locales.php:520 -msgid "Updating" +#: [error]login_format +msgid "Invalid username format" msgstr "" -#: ../cache/locales.php:521 +#: [error]password_format +msgid "Invalid password format" +msgstr "" + +#: [error]unauthorized +msgctxt "[error]unauthorized" +msgid "Your XMPP server is unauthorized" +msgstr "" + +#: [error]conflict +msgid "A Movim session is already open on an other device" +msgstr "" + +#: [error]wrong_account +msgid "Movim failed to authenticate. You entered wrong data" +msgstr "" + +#: [error]mechanism +msgid "Authentication mechanism not supported by Movim" +msgstr "" + +#: [error]fail_auth +msgid "The XMPP authentification failed" +msgstr "" + +#: [account]title [accounts]accounts_title +msgid "Accounts" +msgstr "" + +#: [form]username +msgid "My address" +msgstr "" + +#: [form]create_one +msgid "Create one !" +msgstr "" + +#: [form]another_account +msgid "Another account" +msgstr "" + +#: [form]no_account +msgid "No account yet ?" +msgstr "" + +#: [form]whitelist.info +msgid "You can login with accounts from theses servers" +msgstr "" + +#: [form]connected +msgid "Connected" +msgstr "" + +#: [form]population +msgid "Population" +msgstr "" + +#: [menu]empty_title +msgid "No news yet..." +msgstr "" + +#: [menu]empty +msgid "Welcome on your news feed, here you will see all the posts published by your contacts and in the groups you have subscribed." +msgstr "" + +#: [menu]refresh +msgid "Refreshing all the streams" +msgstr "" + +#: [menu]public +msgid "This post is public" +msgstr "" + +#: [affiliations]title +msgid "Manage your members" +msgstr "" + +#: [affiliations]get +msgid "Get the members" +msgstr "" + +#: [affiliations]saved +msgid "Affiliations saved" +msgstr "" + +#: [subscriptions]title +msgid "Manage your subscriptions" +msgstr "" + +#: [subscriptions]info +msgid "Manage the subscriptions" +msgstr "" + +#: [subscriptions]get +msgid "Get the subscriptions" +msgstr "" + +#: [subscriptions]saved +msgid "Subscriptions saved" +msgstr "" + +#: [notifs]title +msgid "Pending Invitations" +msgstr "" + +#: [notifs]wants_to_talk +msgid "%s wants to talk with you" +msgstr "" + +#: [notifs]manage +msgid "Manage" +msgstr "" + +#: [post]news_feed +msgid "News Feed" +msgstr "" + +#: [post]placeholder +msgid "Discover and register to the groups you are interested in" +msgstr "" + +#: [post]preview [page]preview +msgid "Preview" +msgstr "" + +#: [post]help [page]help +msgid "Help" +msgstr "" + +#: [post]help_more +msgid "More help" +msgstr "" + +#: [post]help_manual +msgid "Markdown syntax manual" +msgstr "" + +#: [post]title +msgid "Title" +msgstr "" + +#: [post]content +msgid "Content" +msgstr "" + +#: [post]link +msgid "Link" +msgstr "" + +#: [post]tags +msgid "Tags" +msgstr "" + +#: [post]valid_url [publish]valid_url +msgid "Please enter a valid url" +msgstr "" + +#: [post]no_content_preview [publish]no_content_preview +msgid "No content to preview" +msgstr "" + +#: [post]no_content [publish]no_content [post]empty +msgid "No content" +msgstr "" + +#: [post]published +msgid "Post published" +msgstr "" + +#: [post]deleted +msgid "Post deleted" +msgstr "" + +#: [post]gallery +msgid "This picture will be added to your gallery" +msgstr "" + +#: [post]hot +msgid "What's Hot" +msgstr "" + +#: [post]hot_text +msgid "Posts recently published in Groups that you are not subscribed (yet)" +msgstr "" + +#: [post]new [publish]new +msgid "New post" +msgstr "" + +#: [post]embed_tip +msgid "You can also use services like Imgur or Flickr to host your picture and paste the link here." +msgstr "" + +#: [post]repost +msgid "This is a re-post from %s" +msgstr "" + +#: [post]repost_profile +msgid "See %s profile" +msgstr "" + +#: [post]public +msgid "Publish this post publicly?" +msgstr "" + +#: [post]blog_add +msgid "Post published on your blog" +msgstr "" + +#: [post]blog_remove +msgid "Post removed from your blog" +msgstr "" + +#: [post]delete_title [post]delete +msgid "Delete this post" +msgstr "" + +#: [post]delete_text +msgid "You are going to delete this post, please confirm your action" +msgstr "" + +#: [post]comments_disabled +msgid "Comments disabled" +msgstr "" + +#: [post]comment_published +msgid "Comment published" +msgstr "" + +#: [status]disconnect +msgid "Disconnect" +msgstr "" + +#: [status]here +msgid "Your status here !" +msgstr "" + +#: [status]updated +msgid "Status updated" +msgstr "" + +#: [status]status +msgid "Status" +msgstr "" + +#: [status]presence +msgid "Presence" +msgstr "" + +#: [status]online +msgid "Online with Movim" +msgstr "" + +#: [publish]title +msgid "Publish" +msgstr "" + +#: [publish]attach +msgid "Add a file or a picture to your post" +msgstr "" + +#: [publish]no_publication +msgid "You cannot publish a post on this Group" +msgstr "" + +#: [publish]form_filled +msgid "Some fields have been filled in. Do you still want to go back and loose their content?" +msgstr "" + +#: [public_groups]shared +msgid "Shared" +msgstr "" + +#: [public_groups]added +msgid "%s has been added to your public groups" +msgstr "" + +#: [rooms]add +msgid "Add a chatroom" +msgstr "" + +#: [rooms]empty_text1 +msgid "You don't have any chatroom yet." +msgstr "" + +#: [rooms]empty_text2 +msgid "Add one by clicking on the add button in the header." +msgstr "" + +#: [chatrooms]title +msgid "Chatrooms" +msgstr "" + +#: [chatrooms]name_placeholder +msgid "My Favorite Room" +msgstr "" + +#: [chatrooms]users +msgid "Users in the room" +msgstr "" + +#: [chatrooms]bad_nickname +msgid "Please enter a correct nickname (2 to 40 characters)" +msgstr "" + +#: [room]anonymous_title +msgid "Public chatroom" +msgstr "" + +#: [room]no_room +msgid "Please provide a room address" +msgstr "" + +#: [room]anonymous_text1 +msgid "You are currently logued as an anonymous user." +msgstr "" + +#: [room]anonymous_text2 +msgid "You can join using your own account or create one on the login page by loging out using the cross in the top-right corner." +msgstr "" + +#: [room]anonymous_login +msgid "Login on %s" +msgstr "" + +#: [room]nick +msgid "Your nickname" +msgstr "" + +#: [roster]ungrouped +msgid "Ungrouped" +msgstr "" + +#: [roster]show_disconnected +msgid "Show disconnected contacts" +msgstr "" + +#: [roster]hide_disconnected +msgid "Hide disconnected contacts" +msgstr "" + +#: [roster]show_group +msgid "Show group %s" +msgstr "" + +#: [roster]hide_group +msgid "Hide group %s" +msgstr "" + +#: [roster]jid_error +msgid "Please enter a valid Jabber ID" +msgstr "" + +#: [roster]no_contacts_title +msgid "No contacts ?" +msgstr "" + +#: [roster]no_contacts_text +msgid "You can add one using the + button bellow" +msgstr "" + +#: [roster]show_hide +msgid "Show/Hide" +msgstr "" + +#: [roster]add_contact_info1 +msgid "Enter the Jabber ID of your contact." +msgstr "" + +#: [roster]add_contact_info2 +msgid "Press enter to validate." +msgstr "" + +#: [roster]jid +msgid "JID" +msgstr "" + +#: [roster]results +msgid "Results" +msgstr "" + +#: [roster]added +msgid "Contact added" +msgstr "" + +#: [roster]deleted +msgid "Contact deleted" +msgstr "" + +#: [roster]search +msgid "Search" +msgstr "" + +#: [share]error +msgid "This is not a valid url" +msgstr "" + +#: [share]success +msgid "Sharing the URL" +msgstr "" + +#: [statistics]title +msgid "Statistics" +msgstr "" + +#: [statistics]since +msgid "Since" +msgstr "" + +#: [statistics]sessions +msgid "Sessions" +msgstr "" + +#: [statistics]monthly_sub +msgid "Monthly Subscriptions" +msgstr "" + +#: [statistics]monthly_sub_cum +msgid "Monthly Subscriptions Cumulated" +msgstr "" + +#: [subscribe]info +msgid "Movim is a decentralized social network, before creating a new account you need to choose a server to register." +msgstr "" + +#: [subscribe]server_question +msgid "Your server here ?" +msgstr "" + +#: [subscribe]server_contact +msgid "Contact us to add yours to the officially supported servers list" +msgstr "" + +#: [feed]nope +msgid "No public feed for this contact" +msgstr "" + +#: [feed]nope_contact +msgid "No contact specified" +msgstr "" + +#: [upload]title +msgid "Upload a file" +msgstr "" + +#: [upload]choose +msgid "Choose a file to upload" +msgstr "" + +#: [vcard]title [page]profile +msgid "Profile" +msgstr "" + +#: [vcard]updated +msgid "Profile Updated" +msgstr "" + +#: [vcard]not_updated +msgid "Profile Not Updated" +msgstr "" + +#: [vcard]public +msgid "Your profile is now public" +msgstr "" + +#: [vcard]restricted +msgid "Your profile is now restricted" +msgstr "" + +#: [general]nickname +msgctxt "[general]nickname" +msgid "Nickname" +msgstr "" + +#: [accounts]twitter +msgid "Twitter" +msgstr "" + +#: [accounts]skype +msgid "Skype" +msgstr "" + +#: [accounts]yahoo +msgid "Yahoo" +msgstr "" + +#: [accounts]accounts_nickname +msgctxt "[accounts]accounts_nickname" +msgid "Nickname" +msgstr "" + +#: [accounts]accounts_yahoo +msgid "Yahoo Account" +msgstr "" + +#: [privacy]privacy_title +msgid "Privacy Level" +msgstr "" + +#: [privacy]privacy_question +msgid "Is this profile public ?" +msgstr "" + +#: [privacy]privacy_info +msgid "Please pay attention ! By making your profile public, all the information listed above will be available for all the Movim users and on the whole Internet." +msgstr "" + +#: [save]submit [button]submit msgid "Submit" msgstr "" -#: ../cache/locales.php:522 -msgid "Submitting" -msgstr "" - -#: ../cache/locales.php:523 +#: [save]reset [button]reset msgid "Reset" msgstr "" -#: ../cache/locales.php:524 +#: [visio]hung_up +msgid "Hung up" +msgstr "" + +#: [visio]busy +msgid "Your contact is busy" +msgstr "" + +#: [visio]declined +msgid "Declined" +msgstr "" + +#: [visio]calling +msgid "Is calling you" +msgstr "" + +#: [visio]call +msgid "Call" +msgstr "" + +#: [visio]hang_up +msgid "Hang up" +msgstr "" + +#: [visio]connection +msgid "Connection" +msgstr "" + +#: [global]no_js +msgid "You don't have javascript enabled. Good luck with that." +msgstr "" + +#: [global]description +msgid "Movim is a kickass distributed social networking platform that protect your privacy an comes with a set of awesome features." +msgstr "" + +#: [page]administration +msgid "Administration" +msgstr "" + +#: [page]home +msgid "Home" +msgstr "" + +#: [page]discover +msgid "Discover" +msgstr "" + +#: [page]explore +msgid "Explore" +msgstr "" + +#: [page]account_creation +msgid "Account Creation" +msgstr "" + +#: [page]avatar +msgid "Avatar" +msgstr "" + +#: [page]chats +msgid "Chats" +msgstr "" + +#: [page]server +msgid "Server" +msgstr "" + +#: [page]public_groups +msgid "Public Groups" +msgstr "" + +#: [page]viewer +msgid "Viewer" +msgstr "" + +#: [page]media +msgid "Media" +msgstr "" + +#: [page]blog +msgid "Blog" +msgstr "" + +#: [page]about +msgid "About" +msgstr "" + +#: [page]login +msgid "Login" +msgstr "" + +#: [page]feed +msgid "Feed" +msgstr "" + +#: [page]gallery +msgid "Gallery" +msgstr "" + +#: [page]visio +msgid "Visio-conference" +msgstr "" + +#: [page]pods +msgid "Pods" +msgstr "" + +#: [page]share +msgid "Share" +msgstr "" + +#: [page]room +msgid "Room" +msgstr "" + +#: [error]error +msgid "Error: %s" +msgstr "" + +#: [error]cannot_load_file +msgid "Cannot load file '%s'" +msgstr "" + +#: [error]route +msgid "Route error, please set all the parameters for the page %s" +msgstr "" + +#: [error]widget_load_error +msgid "Requested widget '%s' doesn't exist." +msgstr "" + +#: [error]widget_call_error +msgid "Requested event '%s' not registered." +msgstr "" + +#: [error]whoops +msgid "Whoops!" +msgstr "" + +#: [error]media_not_found +msgid "It seem that you don't have any pictures here?" +msgstr "" + +#: [error]media_ask_upload +msgid "You can try to upload a couple by going to the Media page" +msgstr "" + +#: [title]about +msgid "%s - About" +msgstr "" + +#: [title]account +msgid "%s - Account" +msgstr "" + +#: [title]administration +msgid "%s - Administration Panel" +msgstr "" + +#: [title]blog +msgid "%s - Blog" +msgstr "" + +#: [title]configuration +msgid "%s - Configuration" +msgstr "%s - Конфігурація" + +#: [title]discover +msgid "%s - Discover" +msgstr "" + +#: [title]explore +msgid "%s - Explore" +msgstr "" + +#: [title]help +msgid "%s - Help Page" +msgstr "" + +#: [title]login +msgid "%s - Login to Movim" +msgstr "" + +#: [title]main +msgid "%s - Welcome to Movim" +msgstr "" + +#: [title]media +msgid "%s - Media" +msgstr "" + +#: [title]news +msgid "%s - News" +msgstr "" + +#: [title]node_configuration +msgid "%s - Group Configuration" +msgstr "" + +#: [title]node +msgid "%s - Group" +msgstr "" + +#: [title]not_found +msgid "%s - 404" +msgstr "" + +#: [title]profile +msgid "%s - Profile" +msgstr "" + +#: [title]server +msgid "%s - Server" +msgstr "" + +#: [button]validate +msgid "Validate" +msgstr "" + +#: [button]refresh +msgid "Refresh" +msgstr "" + +#: [button]add +msgid "Add" +msgstr "" + +#: [button]delete +msgid "Delete" +msgstr "" + +#: [button]cancel +msgid "Cancel" +msgstr "" + +#: [button]close +msgid "Close" +msgstr "" + +#: [button]update +msgid "Update" +msgstr "" + +#: [button]updating +msgid "Updating" +msgstr "" + +#: [button]submitting +msgid "Submitting" +msgstr "" + +#: [button]register msgid "Register" msgstr "" -#: ../cache/locales.php:525 +#: [button]unregister msgid "Unregister" msgstr "" -#: ../cache/locales.php:526 +#: [button]save msgid "Save" msgstr "" -#: ../cache/locales.php:527 +#: [button]clear msgid "Clear" msgstr "" -#: ../cache/locales.php:528 +#: [button]upload msgid "Upload" msgstr "" -#: ../cache/locales.php:529 +#: [button]come_in msgid "Come in!" msgstr "" -#: ../cache/locales.php:530 +#: [button]connecting msgid "Connecting" msgstr "" -#: ../cache/locales.php:531 +#: [button]bool_yes msgid "Yes" msgstr "" -#: ../cache/locales.php:532 +#: [button]bool_no msgid "No" msgstr "" -#: ../cache/locales.php:534 +#: [button]return msgid "Return" msgstr "" -#: ../cache/locales.php:535 +#: [button]accept msgid "Accept" msgstr "" -#: ../cache/locales.php:536 +#: [button]refuse msgid "Refuse" msgstr "" -#: ../cache/locales.php:537 +#: [button]next msgid "Next" msgstr "" -#: ../cache/locales.php:538 +#: [button]previous msgid "Previous" msgstr "" -#: ../cache/locales.php:539 -#, php-format +#: [step]step msgid "Step %s" msgstr "" -#: ../cache/locales.php:542 +#: [day]title msgid "Day" msgstr "" -#: ../cache/locales.php:543 +#: [day]monday msgid "Monday" msgstr "" -#: ../cache/locales.php:544 +#: [day]tuesday msgid "Tuesday" msgstr "" -#: ../cache/locales.php:545 +#: [day]wednesday msgid "Wednesday" msgstr "" -#: ../cache/locales.php:546 +#: [day]thursday msgid "Thursday" msgstr "" -#: ../cache/locales.php:547 +#: [day]friday msgid "Friday" msgstr "" -#: ../cache/locales.php:548 +#: [day]saturday msgid "Saturday" msgstr "" -#: ../cache/locales.php:549 +#: [day]sunday msgid "Sunday" msgstr "" -#: ../cache/locales.php:550 ../cache/locales.php:559 +#: [gender]nil +msgctxt "[gender]nil" msgid "None" msgstr "" -#: ../cache/locales.php:551 +#: [gender]male msgid "Male" msgstr "" -#: ../cache/locales.php:552 +#: [gender]female msgid "Female" msgstr "" -#: ../cache/locales.php:553 +#: [gender]other msgid "Other" msgstr "" -#: ../cache/locales.php:554 +#: [client]bot msgid "Bot" msgstr "" -#: ../cache/locales.php:555 +#: [client]desktop msgid "Desktop" msgstr "" -#: ../cache/locales.php:556 +#: [client]phone msgid "Phone" msgstr "" -#: ../cache/locales.php:557 +#: [client]web msgid "Web" msgstr "" -#: ../cache/locales.php:558 +#: [client]registered msgid "Registered" msgstr "" -#: ../cache/locales.php:560 +#: [marital]nil +msgctxt "[marital]nil" +msgid "None" +msgstr "" + +#: [marital]single msgid "Single" msgstr "" -#: ../cache/locales.php:561 +#: [marital]relationship msgid "In a relationship" msgstr "" -#: ../cache/locales.php:562 +#: [marital]married msgid "Married" msgstr "" -#: ../cache/locales.php:563 +#: [marital]divorced msgid "Divorced" msgstr "" -#: ../cache/locales.php:564 +#: [marital]widowed msgid "Widowed" msgstr "" -#: ../cache/locales.php:565 +#: [marital]cohabiting msgid "Cohabiting" msgstr "" -#: ../cache/locales.php:566 +#: [marital]union msgid "Civil Union" msgstr "" -#: ../cache/locales.php:567 +#: [flag]white msgid "Not shared" msgstr "" -#: ../cache/locales.php:568 +#: [flag]green msgid "Shared with one contact" msgstr "" -#: ../cache/locales.php:569 +#: [flag]orange msgid "Shared with all contacts" msgstr "" -#: ../cache/locales.php:570 +#: [flag]red msgid "Shared with the XMPP network" msgstr "" -#: ../cache/locales.php:571 +#: [flag]black msgid "Shared with the whole Internet" msgstr "" -#: ../cache/locales.php:572 +#: [presence]online msgid "Online" msgstr "" -#: ../cache/locales.php:573 +#: [presence]away msgid "Away" msgstr "" -#: ../cache/locales.php:574 +#: [presence]dnd msgid "Do Not Disturb" msgstr "" -#: ../cache/locales.php:575 +#: [presence]xa msgid "Extended Away" msgstr "" -#: ../cache/locales.php:576 +#: [presence]offline msgid "Offline" msgstr "" -#: ../cache/locales.php:577 +#: [presence]error msgid "Error" msgstr "" -#: ../cache/locales.php:578 +#: [mood]afraid msgid "afraid" msgstr "" -#: ../cache/locales.php:579 +#: [mood]amazed msgid "amazed" msgstr "" -#: ../cache/locales.php:580 +#: [mood]amorous msgid "amorous" msgstr "" -#: ../cache/locales.php:581 +#: [mood]angry msgid "angry" msgstr "" -#: ../cache/locales.php:582 +#: [mood]annoyed msgid "annoyed" msgstr "" -#: ../cache/locales.php:583 +#: [mood]anxious msgid "anxious" msgstr "" -#: ../cache/locales.php:584 +#: [mood]aroused msgid "aroused" msgstr "" -#: ../cache/locales.php:585 +#: [mood]ashamed msgid "ashamed" msgstr "" -#: ../cache/locales.php:586 +#: [mood]bored msgid "bored" msgstr "" -#: ../cache/locales.php:587 +#: [mood]brave msgid "brave" msgstr "" -#: ../cache/locales.php:588 +#: [mood]calm msgid "calm" msgstr "" -#: ../cache/locales.php:589 +#: [mood]cautious msgid "cautious" msgstr "" -#: ../cache/locales.php:590 +#: [mood]cold msgid "cold" msgstr "" -#: ../cache/locales.php:591 +#: [mood]confident msgid "confident" msgstr "" -#: ../cache/locales.php:592 +#: [mood]confused msgid "confused" msgstr "" -#: ../cache/locales.php:593 +#: [mood]contemplative msgid "contemplative" msgstr "" -#: ../cache/locales.php:594 +#: [mood]contented msgid "contented" msgstr "" -#: ../cache/locales.php:595 +#: [mood]cranky msgid "cranky" msgstr "" -#: ../cache/locales.php:596 +#: [mood]crazy msgid "crazy" msgstr "" -#: ../cache/locales.php:597 +#: [mood]creative msgid "creative" msgstr "" -#: ../cache/locales.php:598 +#: [mood]curious msgid "curious" msgstr "" -#: ../cache/locales.php:599 +#: [mood]dejected msgid "dejected" msgstr "" -#: ../cache/locales.php:600 +#: [mood]depressed msgid "depressed" msgstr "" -#: ../cache/locales.php:601 +#: [mood]disappointed msgid "disappointed" msgstr "" -#: ../cache/locales.php:602 +#: [mood]disgusted msgid "disgusted" msgstr "" -#: ../cache/locales.php:603 +#: [mood]dismayed msgid "dismayed" msgstr "" -#: ../cache/locales.php:604 +#: [mood]distracted msgid "distracted" msgstr "" -#: ../cache/locales.php:605 +#: [mood]embarrassed msgid "embarrassed" msgstr "" -#: ../cache/locales.php:606 +#: [mood]envious msgid "envious" msgstr "" -#: ../cache/locales.php:607 +#: [mood]excited msgid "excited" msgstr "" -#: ../cache/locales.php:608 +#: [mood]flirtatious msgid "flirtatious" msgstr "" -#: ../cache/locales.php:609 +#: [mood]frustated msgid "frustated" msgstr "" -#: ../cache/locales.php:610 +#: [mood]grateful msgid "grateful" msgstr "" -#: ../cache/locales.php:611 +#: [mood]grieving msgid "grieving" msgstr "" -#: ../cache/locales.php:612 +#: [mood]grumpy msgid "grumpy" msgstr "" -#: ../cache/locales.php:613 +#: [mood]guilty msgid "guilty" msgstr "" -#: ../cache/locales.php:614 +#: [mood]happy msgid "happy" msgstr "" -#: ../cache/locales.php:615 +#: [mood]hopeful msgid "hopeful" msgstr "" -#: ../cache/locales.php:616 +#: [mood]hot msgid "hot" msgstr "" -#: ../cache/locales.php:617 +#: [mood]humbled msgid "humbled" msgstr "" -#: ../cache/locales.php:618 +#: [mood]humiliated msgid "humiliated" msgstr "" -#: ../cache/locales.php:619 +#: [mood]hungry msgid "hungry" msgstr "" -#: ../cache/locales.php:620 +#: [mood]hurt msgid "hurt" msgstr "" -#: ../cache/locales.php:621 +#: [mood]impressed msgid "impressed" msgstr "" -#: ../cache/locales.php:622 +#: [mood]in_awe msgid "in awe" msgstr "" -#: ../cache/locales.php:623 +#: [mood]in_love msgid "in love" msgstr "" -#: ../cache/locales.php:624 +#: [mood]indignant msgid "indignant" msgstr "" -#: ../cache/locales.php:625 +#: [mood]interested msgid "interested" msgstr "" -#: ../cache/locales.php:626 +#: [mood]intoxicated msgid "intoxicated" msgstr "" -#: ../cache/locales.php:627 +#: [mood]invincible msgid "invincible" msgstr "" -#: ../cache/locales.php:628 +#: [mood]jealous msgid "jealous" msgstr "" -#: ../cache/locales.php:629 +#: [mood]lonely msgid "lonely" msgstr "" -#: ../cache/locales.php:630 +#: [mood]lost msgid "lost" msgstr "" -#: ../cache/locales.php:631 +#: [mood]lucky msgid "lucky" msgstr "" -#: ../cache/locales.php:632 +#: [mood]mean msgid "mean" msgstr "" -#: ../cache/locales.php:633 +#: [mood]moody msgid "moody" msgstr "" -#: ../cache/locales.php:634 +#: [mood]nervous msgid "nervous" msgstr "" -#: ../cache/locales.php:635 +#: [mood]neutral msgid "neutral" msgstr "" -#: ../cache/locales.php:636 +#: [mood]offended msgid "offended" msgstr "" -#: ../cache/locales.php:637 +#: [mood]outraged msgid "outraged" msgstr "" -#: ../cache/locales.php:638 +#: [mood]playful msgid "playful" msgstr "" -#: ../cache/locales.php:639 +#: [mood]proud msgid "proud" msgstr "" -#: ../cache/locales.php:640 +#: [mood]relaxed msgid "relaxed" msgstr "" -#: ../cache/locales.php:641 +#: [mood]relieved msgid "relieved" msgstr "" -#: ../cache/locales.php:642 -msgid "remorseful" -msgstr "" - -#: ../cache/locales.php:643 +#: [mood]restless msgid "restless" msgstr "" -#: ../cache/locales.php:644 +#: [mood]sad msgid "sad" msgstr "" -#: ../cache/locales.php:645 +#: [mood]sarcastic msgid "sarcastic" msgstr "" -#: ../cache/locales.php:646 +#: [mood]satisfied msgid "satisfied" msgstr "" -#: ../cache/locales.php:647 +#: [mood]serious msgid "serious" msgstr "" -#: ../cache/locales.php:648 +#: [mood]shocked msgid "shocked" msgstr "" -#: ../cache/locales.php:649 +#: [mood]shy msgid "shy" msgstr "" -#: ../cache/locales.php:650 +#: [mood]sick msgid "sick" msgstr "" -#: ../cache/locales.php:651 +#: [mood]sleepy msgid "sleepy" msgstr "" -#: ../cache/locales.php:652 +#: [mood]spontaneous msgid "spontaneous" msgstr "" -#: ../cache/locales.php:653 +#: [mood]stressed msgid "stressed" msgstr "" -#: ../cache/locales.php:654 +#: [mood]strong msgid "strong" msgstr "" -#: ../cache/locales.php:655 +#: [mood]surprised msgid "surprised" msgstr "" -#: ../cache/locales.php:656 +#: [mood]thankful msgid "thankful" msgstr "" -#: ../cache/locales.php:657 +#: [mood]thirsty msgid "thirsty" msgstr "" -#: ../cache/locales.php:658 +#: [mood]tired msgid "tired" msgstr "" -#: ../cache/locales.php:659 +#: [mood]undefined msgid "undefined" msgstr "" -#: ../cache/locales.php:660 +#: [mood]weak msgid "weak" msgstr "" -#: ../cache/locales.php:661 +#: [mood]worried msgid "worried" msgstr "" -#: ../cache/locales.php:662 +#: [month]title msgid "Month" msgstr "" -#: ../cache/locales.php:663 +#: [month]january msgid "January" msgstr "" -#: ../cache/locales.php:664 +#: [month]february msgid "February" msgstr "" -#: ../cache/locales.php:665 +#: [month]march msgid "March" msgstr "" -#: ../cache/locales.php:666 +#: [month]april msgid "April" msgstr "" -#: ../cache/locales.php:667 +#: [month]may msgid "May" msgstr "" -#: ../cache/locales.php:668 +#: [month]june msgid "June" msgstr "" -#: ../cache/locales.php:669 +#: [month]july msgid "July" msgstr "" -#: ../cache/locales.php:670 +#: [month]august msgid "August" msgstr "" -#: ../cache/locales.php:671 +#: [month]september msgid "September" msgstr "" -#: ../cache/locales.php:672 +#: [month]october msgid "October" msgstr "" -#: ../cache/locales.php:673 +#: [month]november msgid "November" msgstr "" -#: ../cache/locales.php:674 +#: [month]december msgid "December" msgstr "" -#: ../cache/locales.php:675 +#: [year]title msgid "Year" msgstr "" -#: ../cache/locales.php:676 +#: [date]today msgid "Today" msgstr "" -#: ../cache/locales.php:677 +#: [date]tomorrow msgid "Tomorrow" msgstr "" -#: ../cache/locales.php:678 +#: [date]yesterday msgid "Yesterday" msgstr "" -#: ../cache/locales.php:679 -#, php-format -msgid " %d days ago" +#: [date]ago +msgid "%d days ago" msgstr "" -#: ../cache/locales.php:680 +#: [date]day msgid "day" msgstr "" -#: ../cache/locales.php:682 +#: [post]whats_new msgid "What's new ?" msgstr "" -#: ../cache/locales.php:683 +#: [post]place msgid "Place" msgstr "" -#: ../cache/locales.php:684 +#: [post]by msgid "by" msgstr "" -#: ../cache/locales.php:685 +#: [post]geolocalisation msgid "Geolocalisation" msgstr "" -#: ../cache/locales.php:686 +#: [post]email msgid "email" msgstr "" -#: ../cache/locales.php:688 +#: [post]no_comments msgid "No comments yet" msgstr "" -#: ../cache/locales.php:689 +#: [post]no_comments_stream msgid "No comments stream" msgstr "" -#: ../cache/locales.php:690 +#: [post]no_load msgid "Your feed cannot be loaded." msgstr "" -#: ../cache/locales.php:691 +#: [post]older msgid "Get older posts" msgstr "" -#: ../cache/locales.php:692 -#, php-format +#: [post]new_items msgid "%s new items" msgstr "" -#: ../cache/locales.php:693 +#: [post]comment_error msgid "Comment publication error" msgstr "" -#: ../cache/locales.php:694 +#: [post]comments_older msgid "Show the older comments" msgstr "" -#: ../cache/locales.php:695 -msgid "Loading comments ..." +#: [post]comments_loading +msgid "Loading comments..." msgstr "" -#: ../cache/locales.php:696 +#: [post]comments_get msgid "Get the comments" msgstr "" -#: ../cache/locales.php:697 +#: [post]comment_add msgid "Add a comment" msgstr "" -#: ../cache/locales.php:698 +#: [post]share msgid "Share with" msgstr "" -#: ../cache/locales.php:699 +#: [post]share_everyone msgid "Everyone" msgstr "" -#: ../cache/locales.php:700 +#: [post]share_your_contacts msgid "Your contacts" msgstr "" -#: ../cache/locales.php:702 +#: [post]updated msgid "Updated" msgstr "" -#: ../cache/locales.php:703 +#: [post]content_not_found msgid "Content not found" msgstr "" -#: ../cache/locales.php:704 +#: [post]default_title msgid "Contact publication" msgstr "" -#: ../cache/locales.php:705 +#: [post]comments msgid "Comments" msgstr "" -#: ../cache/locales.php:706 +#: [api]error msgid "The API is not reachable, try again later" msgstr "" -#: ../cache/locales.php:707 +#: [field]type_here msgid "Type here" msgstr "" @@ -2591,36 +2706,27 @@ msgstr "" #~ msgid "Update your PHP version or contact your server administrator" #~ msgstr "Оновіть вашу версію PHP або зверніться до адміністратора сервера" -#, php-format #~ msgid "Movim requires the %s extension." #~ msgstr "Movim вимагає розширення %s ." -#, php-format #~ msgid "Install %s and %s packages" #~ msgstr "Встановити %s і %s пакетів." #~ msgid "Movim's folder must be writable." #~ msgstr "Папка Movim повинна бути доступна для запису" -#~ msgid "Enable read and write rights on Movim's root folder" -#~ msgstr "Включити права читання і запису на кореневу папку Movim" - -#, php-format #~ msgid "Install the %s package" #~ msgstr "Установка пакету %s" #~ msgid "or" #~ msgstr "або" -#, php-format #~ msgid "Bosh connection failed with error '%s'" #~ msgstr "Сталася помилка '%s'" -#, php-format #~ msgid "XMPP connection through Bosh failed with error '%s'" #~ msgstr "XMPP з'єднання з помилкою '%s'" -#, php-format #~ msgid "Couldn't create directory '%s'." #~ msgstr "Не вдалося створити '%s' каталог." @@ -2636,48 +2742,29 @@ msgstr "" #~ msgid "empty" #~ msgstr "порожній" -#~ msgid "" -#~ "Some errors were detected. Please correct them for the installation to " -#~ "proceed." -#~ msgstr "" -#~ "Були виявлено деякі помилки . Будь ласка, виправте їх, щоб продовжити " -#~ "установку." +#~ msgid "Some errors were detected. Please correct them for the installation to proceed." +#~ msgstr "Були виявлено деякі помилки . Будь ласка, виправте їх, щоб продовжити установку." #~ msgid "talkative" #~ msgstr "мовність" -#, php-format #~ msgid "Database connection failed with error '%s'" #~ msgstr "Підключення до бази даних з помилкою '%s'" -#~ msgid "" -#~ "Before you enjoy your social network, a few adjustements are required." -#~ msgstr "" -#~ "Перед тим, як користуватися вашою соціальною мережею, потрібно кілька " -#~ "налаштувань." +#~ msgid "Before you enjoy your social network, a few adjustements are required." +#~ msgstr "Перед тим, як користуватися вашою соціальною мережею, потрібно кілька налаштувань." #~ msgid "Thank you for downloading Movim!" #~ msgstr "Дякуємо Вам за завантаження Movim!" -#, php-format #~ msgid "Couldn't create configuration file '%s'." #~ msgstr "Не вдається створити файл конфігурації '%s'." -#~ msgid "" -#~ "Keep in mind that Movim is still under development and will handle many " -#~ "personal details. Its use can potentially endanger your data. Always pay " -#~ "attention to information that you submit." -#~ msgstr "" -#~ "Майте на увазі, що Movim знаходиться на стадії розробки і буде обробляти " -#~ "багато особистих даних. Його використання може потенційно загрожувати вашим " -#~ "даним. Завжди звертайте увагу на інформацію, яку Ви представляєте." +#~ msgid "Keep in mind that Movim is still under development and will handle many personal details. Its use can potentially endanger your data. Always pay attention to information that you submit." +#~ msgstr "Майте на увазі, що Movim знаходиться на стадії розробки і буде обробляти багато особистих даних. Його використання може потенційно загрожувати вашим даним. Завжди звертайте увагу на інформацію, яку Ви представляєте." -#~ msgid "" -#~ "The following requirements were not met. Please make sure they are all " -#~ "satisfied in order to install Movim." -#~ msgstr "" -#~ "Наступні вимоги не були виконані. Будь ласка, переконайтеся, що всі вони " -#~ "були виконані для того, щоб встановити Movim." +#~ msgid "The following requirements were not met. Please make sure they are all satisfied in order to install Movim." +#~ msgstr "Наступні вимоги не були виконані. Будь ласка, переконайтеся, що всі вони були виконані для того, щоб встановити Movim." #~ msgid "Compatibility Test" #~ msgstr "Тест на сумісність" diff --git a/sources/locales/zh.po b/sources/locales/zh.po index 26816db..c1789e1 100644 --- a/sources/locales/zh.po +++ b/sources/locales/zh.po @@ -1,2590 +1,2761 @@ # Chinese translations for Movim package. # This file is distributed under the same license as the Movim package. # This file was translated from CodingTeam at . +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/About/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Account/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AccountNext/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AdHoc/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AdminDB/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AdminMain/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/AdminTest/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Api/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Avatar/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Blog/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Bookmark/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Chat/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Chats/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/ConfigData/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Config/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Contact/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Group/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Groups/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Header/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Hello/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Help/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Init/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Location/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/LoginAnonymous/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Login/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Menu/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/NodeAffiliations/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/NodeSubscriptions/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Notifs/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Post/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Presence/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Publish/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/PubsubSubscriptionConfig/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Rooms/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Roster/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Share/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Statistics/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Subscribe/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Syndication/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Upload/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Vcard4/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/VisioExt/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../app/widgets/Visio/locales.ini +#. #-#-#-#-# locales.po (PACKAGE VERSION) #-#-#-#-# +#. extracted from ../locales/locales.ini msgid "" msgstr "" "Project-Id-Version: Movim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-06-08 22:06+0200\n" +"POT-Creation-Date: 2015-08-20 15:17+0200\n" "PO-Revision-Date: 2015-06-09 12:21+0000\n" "Last-Translator: edhelas \n" "Language-Team: LANGUAGE \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2015-06-18 21:08+0000\n" "X-Generator: Launchpad (build 17570)\n" -"Language: \n" -#: ../cache/locales.php:2 +#: [about]thanks msgid "Thanks" msgstr "谢谢" -#: ../cache/locales.php:3 +#: [about]developers msgid "Developers" msgstr "开发者" -#: ../cache/locales.php:4 +#: [about]translators msgid "Translators" msgstr "翻译者" -#: ../cache/locales.php:5 +#: [about]software msgid "Software" msgstr "软件" -#: ../cache/locales.php:6 +#: [about]resources msgid "Resources" msgstr "资源文件" -#: ../cache/locales.php:7 ../cache/locales.php:83 ../cache/locales.php:85 +#: [about]api [schema]api [api]title msgid "API" msgstr "API" -#: ../cache/locales.php:8 -msgid "" -"Movim is an XMPP-based communication platform. All the project, except the " -"following software and resources, is under" +#: [about]info +msgid "Movim is an XMPP-based communication platform. All the project, except the following software and resources, is under" msgstr "Movim是一款基于XMPP的交流平台. 除了以下的软件和资源, 整个项目都是位于" -#: ../cache/locales.php:9 +#: [account]title msgid "Account" msgstr "" -#: ../cache/locales.php:10 -msgid "The password has been updated" -msgstr "" +#: [account]password_change_title +#, fuzzy +msgid "Change my password" +msgstr "错误密码" -#: ../cache/locales.php:11 -msgid "Please provide a valid password (6 characters minimum)" -msgstr "" - -#: ../cache/locales.php:12 -msgid "The provided passwords are not the same" -msgstr "" - -#: ../cache/locales.php:13 -msgid "Delete my account" -msgstr "" - -#: ../cache/locales.php:14 -msgid "" -"You will delete your XMPP account and all the relative information linked to " -"it (profile, contacts and publications)." -msgstr "" - -#: ../cache/locales.php:15 -msgid "Are you sure that you want to delete it ?" -msgstr "" - -#: ../cache/locales.php:16 ../cache/locales.php:411 -msgid "Create a new account" -msgstr "建立一个新账户" - -#: ../cache/locales.php:17 -msgid "No account creation form found on the server" -msgstr "在服务器上没有找到建立账户的表格" - -#: ../cache/locales.php:18 ../cache/locales.php:172 -msgid "on" -msgstr "在线" - -#: ../cache/locales.php:19 -msgid "Your acccount has been successfully registered" -msgstr "您的账户已经成功注册" - -#: ../cache/locales.php:20 -msgid "Loading" -msgstr "载入中" - -#: ../cache/locales.php:21 -msgid "Not Acceptable" -msgstr "不能接受" - -#: ../cache/locales.php:22 -msgid "The registration system of this server is currently unavailable" -msgstr "该服务的注册系统当前不可用" - -#: ../cache/locales.php:23 -msgid "" -"This server use an external system for the registration, please click on the " -"following URL." -msgstr "该服务使用一个外部的注册系统, 请点击以下的URL." - -#: ../cache/locales.php:24 -msgid "Actions" -msgstr "操作" - -#: ../cache/locales.php:25 ../cache/locales.php:82 -msgid "Database" -msgstr "数据库" - -#: ../cache/locales.php:26 -msgid "Modl wasn't able to connect to the database" -msgstr "Modl不能够连接数据库" - -#: ../cache/locales.php:27 -msgid "Movim is connected to the database" -msgstr "Movim已经连接到数据库" - -#: ../cache/locales.php:28 -msgid "The database need to be updated" -msgstr "数据库需要更新" - -#: ../cache/locales.php:29 -msgid "Movim database is up to date" -msgstr "Movim数据库已经最新" - -#: ../cache/locales.php:30 -msgid "Database Type" -msgstr "数据库类型" - -#: ../cache/locales.php:31 ../cache/locales.php:50 ../cache/locales.php:540 -msgid "Username" -msgstr "用户名" - -#: ../cache/locales.php:32 ../cache/locales.php:51 ../cache/locales.php:282 -#: ../cache/locales.php:541 +#: [account]password [db]password [credentials]password [form]password +#: [input]password msgid "Password" msgstr "密码" -#: ../cache/locales.php:33 +#: [account]password_confirmation +#, fuzzy +msgid "Password confirmation" +msgstr "%s - 配置" + +#: [account]password_changed +msgid "The password has been updated" +msgstr "" + +#: [account]password_not_valid +msgid "Please provide a valid password (6 characters minimum)" +msgstr "" + +#: [account]password_not_same +msgid "The provided passwords are not the same" +msgstr "" + +#: [account]delete_title +msgid "Delete my account" +msgstr "" + +#: [account]delete +#, fuzzy +msgid "Delete your account" +msgstr "另一个账户" + +#: [account]delete_text +msgid "You will delete your XMPP account and all the relative information linked to it (profile, contacts and publications)." +msgstr "" + +#: [account]delete_text_confirm +msgid "Are you sure that you want to delete it ?" +msgstr "" + +#: [account]gateway_title +msgid "Gateway" +msgstr "" + +#: [create]title [subscribe]title +msgid "Create a new account" +msgstr "建立一个新账户" + +#: [create]notfound +msgid "No account creation form found on the server" +msgstr "在服务器上没有找到建立账户的表格" + +#: [create]server_on +msgid "on" +msgstr "在线" + +#: [create]successfull +msgid "Your acccount has been successfully registered" +msgstr "您的账户已经成功注册" + +#: [create]loading +msgid "Loading" +msgstr "载入中" + +#: [error]not_acceptable +msgid "Not Acceptable" +msgstr "不能接受" + +#: [error]service_unavailable +msgid "The registration system of this server is currently unavailable" +msgstr "该服务的注册系统当前不可用" + +#: [oob]about +msgid "This server use an external system for the registration, please click on the following URL." +msgstr "该服务使用一个外部的注册系统, 请点击以下的URL." + +#: [adhoc]title +msgid "Actions" +msgstr "操作" + +#: [db]legend [schema]database +msgid "Database" +msgstr "数据库" + +#: [db]connect_error +msgid "Modl wasn't able to connect to the database" +msgstr "Modl不能够连接数据库" + +#: [db]connect_success +msgid "Movim is connected to the database" +msgstr "Movim已经连接到数据库" + +#: [db]update +msgid "The database need to be updated" +msgstr "数据库需要更新" + +#: [db]up_to_date +msgid "Movim database is up to date" +msgstr "Movim数据库已经最新" + +#: [db]type +msgid "Database Type" +msgstr "数据库类型" + +#: [db]username [credentials]username [input]username +msgid "Username" +msgstr "用户名" + +#: [db]host msgid "Host" msgstr "" -#: ../cache/locales.php:34 +#: [db]port msgid "Port" msgstr "" -#: ../cache/locales.php:35 -msgid "Database Name" +#: [db]name +#, fuzzy +msgid "Database sName" msgstr "数据库名称" -#: ../cache/locales.php:36 +#: [admin]general msgid "General Settings" msgstr "一般设置" -#: ../cache/locales.php:37 +#: [general]theme msgid "Theme" msgstr "主题" -#: ../cache/locales.php:38 +#: [general]language msgid "Default language" msgstr "默认语言" -#: ../cache/locales.php:39 -msgid "Environment" -msgstr "环境" - -#: ../cache/locales.php:40 +#: [general]log_verbosity msgid "Log verbosity" msgstr "日志输出" -#: ../cache/locales.php:41 +#: [general]timezone msgid "Server Timezone" msgstr "服务器时区" -#: ../cache/locales.php:42 +#: [general]limit msgid "User folder size limit (in bytes)" msgstr "用户文件夹大小限制(以字节为单位)" -#: ../cache/locales.php:43 +#: [websocket]title msgid "WebSocket Configuration" msgstr "WebSocket 配置" -#: ../cache/locales.php:44 +#: [websocket]info msgid "Enter here a valid WebSocket URI in the form" msgstr "在表格中输入一个有效的 WebSocket 地址" -#: ../cache/locales.php:45 +#: [websocket]label msgid "WebSocket URI" msgstr "" -#: ../cache/locales.php:46 -msgid "" -"If you change the URI, please restart the daemon to reload the configuration" +#: [websocket]save_info +msgid "If you change the URI, please restart the daemon to reload the configuration" msgstr "如果你更改了URI, 请重启后台程序来重载配置" -#: ../cache/locales.php:47 +#: [websocket]publics msgid "Public WebSockets" msgstr "公共 WebSocket" -#: ../cache/locales.php:48 +#: [credentials]title msgid "Administration Credential" msgstr "管理证书" -#: ../cache/locales.php:49 +#: [credentials]info msgid "Change the default credentials admin/password" msgstr "更改默认密码" -#: ../cache/locales.php:52 +#: [credentials]re_password msgid "Retype password" msgstr "重新输入密码" -#: ../cache/locales.php:53 +#: [whitelist]title msgid "Whitelist - XMPP Server" msgstr "白名单——XMPP服务器" -#: ../cache/locales.php:54 -msgid "" -"If you want to specify a list of authorized XMPP servers on your Movim pod " -"and forbid the connection on all the others please put their domain name " -"here, with comma (ex: movim.eu,jabber.fr)" -msgstr "" -"如果您想在Movim pod中指定一部分授权的XMPP服务器, 并且禁止余下的, 请将它们的域名在这里输入, 用英文逗号分隔 (例如: " -"movim.eu, jabber.fr)" +#: [whitelist]info1 +msgid "If you want to specify a list of authorized XMPP servers on your Movim pod and forbid the connection on all the others please put their domain name here, with comma (ex: movim.eu,jabber.fr)" +msgstr "如果您想在Movim pod中指定一部分授权的XMPP服务器, 并且禁止余下的, 请将它们的域名在这里输入, 用英文逗号分隔 (例如: movim.eu, jabber.fr)" -#: ../cache/locales.php:55 -msgid "" -"Leave this field blank if you allow the access to all the XMPP accounts." +#: [whitelist]info2 +msgid "Leave this field blank if you allow the access to all the XMPP accounts." msgstr "如果你允许访问所有的XMPP账户,请将此字段留空," -#: ../cache/locales.php:56 +#: [whitelist]label msgid "List of whitelisted XMPP servers" msgstr "XMPP服务器白名单列表" -#: ../cache/locales.php:57 ../cache/locales.php:61 +#: [information]title +#, fuzzy +msgctxt "[information]title" msgid "Information Message" msgstr "通知消息" -#: ../cache/locales.php:58 +#: [information]description msgid "Description" msgstr "描述" -#: ../cache/locales.php:59 +#: [information]info1 msgid "This message will be displayed on the login page" msgstr "这条信息将显示在登录页面" -#: ../cache/locales.php:60 -msgid "Leave this field blank if you don't want to show any message." +#: [information]info2 +#, fuzzy +msgid "Leave this field blank if you dont want to show any message." msgstr "如果您不想显示任何信息,请在此留空" -#: ../cache/locales.php:62 +#: [information]label +#, fuzzy +msgctxt "[information]label" +msgid "Information Message" +msgstr "通知消息" + +#: [log]empty msgid "Empty" msgstr "空的" -#: ../cache/locales.php:63 +#: [log]syslog msgid "Syslog" msgstr "系统日志" -#: ../cache/locales.php:64 +#: [log]syslog_files msgid "Syslog and files" msgstr "系统日志和文件" -#: ../cache/locales.php:65 +#: [rewrite]title msgid "URL Rewriting" msgstr "" -#: ../cache/locales.php:66 +#: [rewrite]info msgid "The URL Rewriting can be enabled" msgstr "" -#: ../cache/locales.php:67 +#: [admin]compatibility msgid "General Overview" msgstr "概览" -#: ../cache/locales.php:68 -msgid "" -"Movim has found some issues or things that need to be fixed or improved" +#: [compatibility]info +msgid "Movim has found some issues or things that need to be fixed or improved" msgstr "Movim已经发现一些问题需要被修复或改善" -#: ../cache/locales.php:69 -#, php-format +#: [compatibility]php1 msgid "Update your PHP-Version: %s" msgstr "更新您的PHP版本: %s" -#: ../cache/locales.php:70 +#: [compatibility]php2 msgid "Required: 5.3.0" msgstr "需要: 5.3.0" -#: ../cache/locales.php:71 +#: [compatibility]curl msgid "Install the php5-curl library" msgstr "安装 php5-curl 库" -#: ../cache/locales.php:72 +#: [compatibility]imagick msgid "Install the php5-imagick library" msgstr "" -#: ../cache/locales.php:73 +#: [compatibility]gd msgid "Install the php5-gd library" msgstr "" -#: ../cache/locales.php:74 -msgid "Read and write rights for the webserver in Movim's root directory" +#: [compatibility]rights +#, fuzzy +msgid "Read and write rights for the webserver in Movims root directory" msgstr "阅读和写Movim的根目录写的web服务器权限" -#: ../cache/locales.php:75 +#: [compatibility]rewrite msgid "The URL Rewriting support is currently disabled" msgstr "URL 重写支持已经被禁用" -#: ../cache/locales.php:76 +#: [compatibility]db msgid "The database need to be updated, go to the database panel to fix this" msgstr "" -#: ../cache/locales.php:77 -msgid "" -"WebSocket connection error, check if the Movim Daemon is running and is " -"reacheable" +#: [compatibility]websocket +msgid "WebSocket connection error, check if the Movim Daemon is running and is reachable" msgstr "" -#: ../cache/locales.php:78 -msgid "" -"XMPP Websocket connection error, please check the validity of the URL given " -"in the General Configuration" +#: [compatibility]xmpp_websocket +msgid "XMPP Websocket connection error, please check the validity of the URL given in the General Configuration" msgstr "" -#: ../cache/locales.php:79 +#: [schema]browser msgid "Browser" msgstr "" -#: ../cache/locales.php:80 +#: [schema]movim msgid "Movim Core" msgstr "" -#: ../cache/locales.php:81 +#: [schema]daemon msgid "Movim Daemon" msgstr "" -#: ../cache/locales.php:84 +#: [schema]xmpp msgid "XMPP" msgstr "" -#: ../cache/locales.php:86 -#, php-format -msgid "" -"Here you can register your pod on the official %sMovim API%s and be listed " -"on %sthe pods page%s." +#: [api]info +msgid "Here you can register your pod on the official %sMovim API%s and be listed on %sthe pods page%s." msgstr "" -#: ../cache/locales.php:87 +#: [api]register msgid "Your pod is not registered on the API" msgstr "" -#: ../cache/locales.php:88 +#: [api]registered msgid "Your pod is registered on the API" msgstr "" -#: ../cache/locales.php:89 +#: [api]wait msgid "Your pod is not yet validated" msgstr "" -#: ../cache/locales.php:90 +#: [api]validated msgid "Your pod is validated" msgstr "" -#: ../cache/locales.php:91 -msgid "" -"You asked to be removed from the API, this request will be processed in a " -"couple of hours" +#: [api]unregister +msgid "You asked to be removed from the API, this request will be processed in a couple of hours" msgstr "您请求从API中移除, 该请求会在几小时内被处理" -#: ../cache/locales.php:92 ../cache/locales.php:147 +#: [api]conf_updated [config]updated msgid "Configuration updated" msgstr "配置已更新" -#: ../cache/locales.php:93 +#: [avatar]file msgid "File" msgstr "" -#: ../cache/locales.php:94 +#: [avatar]use_it msgid "Use it" msgstr "" -#: ../cache/locales.php:95 +#: [avatar]webcam msgid "Webcam" msgstr "摄像头" -#: ../cache/locales.php:96 +#: [avatar]cheese msgid "Cheese !" msgstr "(说)茄~子~ !" -#: ../cache/locales.php:97 +#: [avatar]snapshot msgid "Take a webcam snapshot" msgstr "进行摄像头快照" -#: ../cache/locales.php:98 +#: [avatar]updated msgid "Avatar Updated" msgstr "头像已更新" -#: ../cache/locales.php:99 +#: [avatar]not_updated msgid "Avatar Not Updated" msgstr "头像未更新" -#: ../cache/locales.php:100 ../cache/locales.php:415 -#, php-format +#: [blog]title [feed]title msgid "%s's feed" msgstr "%s的 feed" -#: ../cache/locales.php:101 +#: [blog]empty msgid "This user has not posted anything right now" msgstr "" -#: ../cache/locales.php:102 +#: [title]conferences msgid "Conferences" msgstr "会议" -#: ../cache/locales.php:103 ../cache/locales.php:193 ../cache/locales.php:217 -#: ../cache/locales.php:468 +#: [title]groups [group]empty_title [menu]groups [page]groups msgid "Groups" msgstr "分组" -#: ../cache/locales.php:104 +#: [chatroom]add msgid "Add a new Chat Room" msgstr "添加一个新的聊天室" -#: ../cache/locales.php:105 ../cache/locales.php:368 +#: [chatroom]id [chatrooms]id msgid "Chat Room ID" msgstr "聊天室ID" -#: ../cache/locales.php:106 ../cache/locales.php:116 ../cache/locales.php:156 -#: ../cache/locales.php:361 ../cache/locales.php:369 ../cache/locales.php:424 +#: [chatroom]name +#, fuzzy +msgctxt "[chatroom]name" msgid "Name" msgstr "姓名" -#: ../cache/locales.php:107 ../cache/locales.php:157 ../cache/locales.php:371 -#: ../cache/locales.php:425 +#: [chatroom]nickname [general]nickname [chatrooms]nickname msgid "Nickname" msgstr "昵称" -#: ../cache/locales.php:108 +#: [chatroom]autojoin_label msgid "Do you want do join automaticaly this Chat Room ?" msgstr "您想自动加入该聊天室么?" -#: ../cache/locales.php:109 ../cache/locales.php:372 +#: [chatroom]bad_id [chatrooms]bad_id msgid "Bad Chatroom ID" msgstr "无效的聊天室ID" -#: ../cache/locales.php:110 ../cache/locales.php:373 +#: [chatroom]empty_name [chatrooms]empty_name msgid "Empty name" msgstr "用户名为空" -#: ../cache/locales.php:111 ../cache/locales.php:380 +#: [bookmarks]updated msgid "Bookmarks updated" msgstr "更新书签" -#: ../cache/locales.php:112 -msgid "An error occured : " +#: [bookmarks]error +#, fuzzy +msgid "An error occured :" msgstr "发生一个错误: " -#: ../cache/locales.php:113 +#: [bookmarks]configure msgid "Configure" msgstr "配置" -#: ../cache/locales.php:114 +#: [url]add msgid "Add a new URL" msgstr "添加一个新的URL" -#: ../cache/locales.php:115 +#: [url]url msgid "URL" msgstr "" -#: ../cache/locales.php:117 +#: [url]name +#, fuzzy +msgctxt "[url]name" +msgid "Name" +msgstr "姓名" + +#: [message]published msgid "Message Published" msgstr "消息发布" -#: ../cache/locales.php:118 ../cache/locales.php:138 +#: [message]encrypted msgid "Encrypted message" msgstr "加密消息" -#: ../cache/locales.php:119 +#: [message]composing [chats]composing msgid "Composing..." msgstr "" -#: ../cache/locales.php:120 +#: [message]paused [chats]paused msgid "Paused..." msgstr "暂停..." -#: ../cache/locales.php:121 +#: [message]gone msgid "Contact gone" msgstr "" -#: ../cache/locales.php:122 -#, php-format +#: [chat]attention msgid "%s needs your attention" msgstr "%s需要您的注意" -#: ../cache/locales.php:123 +#: [chat]placeholder msgid "Your message here..." msgstr "您的消息..." -#: ../cache/locales.php:124 +#: [chat]smileys msgid "Smileys" msgstr "表情" -#: ../cache/locales.php:125 ../cache/locales.php:139 +#: [chat]empty_title [button]chat msgid "Chat" msgstr "聊天" -#: ../cache/locales.php:126 +#: [chat]empty_text msgid "Discuss with your contacts" msgstr "同联系人讨论" -#: ../cache/locales.php:127 -msgid "Members" -msgstr "" - -#: ../cache/locales.php:128 ../cache/locales.php:376 -msgid "Connected to the chatroom" -msgstr "已连接到聊天室" - -#: ../cache/locales.php:129 ../cache/locales.php:377 -msgid "Disconnected from the chatroom" -msgstr "离开聊天室" - -#: ../cache/locales.php:130 ../cache/locales.php:200 ../cache/locales.php:469 -msgid "Configuration" -msgstr "配置" - -#: ../cache/locales.php:131 -msgid "Configuration saved" -msgstr "" - -#: ../cache/locales.php:132 -msgid "Subject" -msgstr "" - -#: ../cache/locales.php:133 -msgid "Subject changed" -msgstr "" - -#: ../cache/locales.php:134 -msgid "Open a new conversation by clicking on the plus button bellow" -msgstr "" - -#: ../cache/locales.php:135 -msgid "Chat with a contact" -msgstr "同联系人聊天" - -#: ../cache/locales.php:136 +#: [chat]frequent [chats]frequent msgid "Frequent contacts" msgstr "" -#: ../cache/locales.php:137 +#: [chatroom]members +msgid "Members" +msgstr "" + +#: [chatroom]connected [chatrooms]connected +msgid "Connected to the chatroom" +msgstr "已连接到聊天室" + +#: [chatroom]disconnected [chatrooms]disconnected +msgid "Disconnected from the chatroom" +msgstr "离开聊天室" + +#: [chatroom]config [group]configuration [page]configuration +msgid "Configuration" +msgstr "配置" + +#: [chatroom]config_saved +msgid "Configuration saved" +msgstr "" + +#: [chatroom]subject +msgid "Subject" +msgstr "" + +#: [chatroom]subject_changed +msgid "Subject changed" +msgstr "" + +#: [chats]empty_title +msgid "No chats yet..." +msgstr "" + +#: [chats]empty +msgid "Open a new conversation by clicking on the plus button bellow or visit the Contacts page." +msgstr "" + +#: [chats]add +msgid "Chat with a contact" +msgstr "同联系人聊天" + +#: [chats]more msgid "Load more contacts" msgstr "" -#: ../cache/locales.php:140 -msgid "General" -msgstr "" - -#: ../cache/locales.php:141 -msgid "Language" -msgstr "语言" - -#: ../cache/locales.php:142 -msgid "Roster display" -msgstr "" - -#: ../cache/locales.php:143 -msgid "Show the offline contacts" -msgstr "" - -#: ../cache/locales.php:144 -msgid "Hide the offline contacts" -msgstr "" - -#: ../cache/locales.php:145 -msgid "Appearence" -msgstr "外观" - -#: ../cache/locales.php:146 -msgid "This configuration is shared wherever you are connected !" -msgstr "" - -#: ../cache/locales.php:148 -msgid "Notify on incoming message" -msgstr "通知新消息" - -#: ../cache/locales.php:149 -msgid "Use desktop notifications" -msgstr "使用桌面通知" - -#: ../cache/locales.php:150 +#: [title]data msgid "Data" msgstr "数据" -#: ../cache/locales.php:151 +#: [title]cache msgid "Cache" msgstr "缓存" -#: ../cache/locales.php:152 ../cache/locales.php:218 ../cache/locales.php:466 +#: [title]contacts [menu]contacts [page]contacts msgid "Contacts" msgstr "联系人" -#: ../cache/locales.php:153 ../cache/locales.php:480 +#: [title]posts [page]posts msgid "Posts" msgstr "" -#: ../cache/locales.php:154 +#: [title]messages msgid "Messages" msgstr "消息" -#: ../cache/locales.php:155 ../cache/locales.php:423 +#: [config]general +msgid "General" +msgstr "" + +#: [config]language +msgid "Language" +msgstr "语言" + +#: [config]roster +msgid "Roster display" +msgstr "" + +#: [config]roster_show +msgid "Show the offline contacts" +msgstr "" + +#: [config]roster_hide +msgid "Hide the offline contacts" +msgstr "" + +#: [config]appearence +msgid "Appearence" +msgstr "外观" + +#: [config]info +msgid "This configuration is shared wherever you are connected" +msgstr "" + +#: [notifications]message +msgid "Notify on incoming message" +msgstr "通知新消息" + +#: [notifications]desktop +msgid "Use desktop notifications" +msgstr "使用桌面通知" + +#: [general]legend [general]general_title msgid "General Informations" msgstr "一般信息" -#: ../cache/locales.php:158 ../cache/locales.php:427 +#: [general]name [public_groups]name [chatrooms]name +msgid "Name" +msgstr "姓名" + +#: [general]date_of_birth msgid "Date of Birth" msgstr "出生日期" -#: ../cache/locales.php:159 ../cache/locales.php:428 +#: [general]gender msgid "Gender" msgstr "性别" -#: ../cache/locales.php:160 ../cache/locales.php:429 +#: [general]marital msgid "Marital Status" msgstr "婚姻状况" -#: ../cache/locales.php:161 ../cache/locales.php:426 +#: [general]email msgid "Email" msgstr "邮件" -#: ../cache/locales.php:162 ../cache/locales.php:430 +#: [general]website msgid "Website" msgstr "你的网站" -#: ../cache/locales.php:163 ../cache/locales.php:431 +#: [general]about msgid "About Me" msgstr "关于自己" -#: ../cache/locales.php:164 +#: [general]accounts msgid "Other Accounts" msgstr "其它帐号" -#: ../cache/locales.php:165 +#: [general]tune msgid "Is Listening" msgstr "" -#: ../cache/locales.php:166 ../cache/locales.php:432 +#: [position]legend [position]position_title msgid "Geographic Position" msgstr "地理位置" -#: ../cache/locales.php:167 ../cache/locales.php:433 +#: [position]locality msgid "Locality" msgstr "地点" -#: ../cache/locales.php:168 ../cache/locales.php:434 +#: [position]country msgid "Country" msgstr "国家" -#: ../cache/locales.php:169 +#: [mood]title msgid "Mood" msgstr "心情" -#: ../cache/locales.php:170 +#: [mood]im msgid "I'm " msgstr "我是 " -#: ../cache/locales.php:171 +#: [listen]title msgid "Listening" msgstr "听" -#: ../cache/locales.php:173 +#: [last]title msgid "Last seen" msgstr "最后一次访问" -#: ../cache/locales.php:174 +#: [client]title msgid "Client Informations" msgstr "客户信息" -#: ../cache/locales.php:175 +#: [explore]last_registered msgid "Last registered" msgstr "最近注册的" -#: ../cache/locales.php:176 +#: [explore]explore msgid "Find some new friends" msgstr "" -#: ../cache/locales.php:177 ../cache/locales.php:533 +#: [edit]title [button]edit msgid "Edit" msgstr "编辑" -#: ../cache/locales.php:178 +#: [edit]alias msgid "Alias" msgstr "别名" -#: ../cache/locales.php:179 +#: [edit]group msgid "Group" msgstr "分组" -#: ../cache/locales.php:180 ../cache/locales.php:400 +#: [edit]updated [roster]updated msgid "Contact updated" msgstr "更新联系人" -#: ../cache/locales.php:181 +#: [delete]title msgid "Are you sure?" msgstr "您确定么?" -#: ../cache/locales.php:182 -msgid "" -"You are going to delete one of your contacts, please confirm your action" +#: [delete]text +msgid "You are going to delete one of your contacts, please confirm your action" msgstr "您将删除其中一个联系人, 请确认" -#: ../cache/locales.php:183 -#, php-format +#: [age]years msgid "%s years" msgstr "" -#: ../cache/locales.php:184 +#: [blog]last msgid "Last public post" msgstr "" -#: ../cache/locales.php:185 +#: [subscription]to +#, fuzzy +msgid "You can see this contact status" +msgstr "该账户没有公共订阅" + +#: [subscription]to_button +msgid "Share my status" +msgstr "" + +#: [subscription]to_text +msgid "But this contact cannot see yours" +msgstr "" + +#: [subscription]from +#, fuzzy +msgid "You are not subscribed to this contact" +msgstr "该账户没有公共订阅" + +#: [subscription]from_button +#, fuzzy +msgid "Ask to subscribe" +msgstr "取消订阅" + +#: [subscription]from_text +msgid "But this contact can still see if you are online" +msgstr "" + +#: [subscription]nil +#, fuzzy +msgid "No subscriptions" +msgstr "订阅" + +#: [subscription]nil_button +msgid "Invite" +msgstr "" + +#: [subscription]nil_text +msgid "This contact is in your contact list but there is no subscriptions between the two accounts" +msgstr "" + +#: [group]subscribe msgid "Subscribe" msgstr "订阅" -#: ../cache/locales.php:186 +#: [group]subscribed msgid "Subscribed" msgstr "订阅" -#: ../cache/locales.php:187 +#: [group]unsubscribe msgid "Unsubscribe" msgstr "取消订阅" -#: ../cache/locales.php:188 +#: [group]unsubscribe_text msgid "You are going to unsubscribe from this Group" msgstr "" -#: ../cache/locales.php:189 +#: [group]unsubscribed msgid "Unsubscribed" msgstr "" -#: ../cache/locales.php:190 +#: [group]share_label msgid "Make your membership to this group public to your friends" msgstr "" -#: ../cache/locales.php:191 +#: [group]label_label msgid "Give a label for this group" msgstr "" -#: ../cache/locales.php:192 +#: [group]sure msgid "Are you sure ?" msgstr "您确定吗 ?" -#: ../cache/locales.php:194 +#: [group]empty_text msgid "Discover, follow and share" msgstr "" -#: ../cache/locales.php:195 +#: [group]empty msgid "Something bad happened to this group" msgstr "" -#: ../cache/locales.php:196 +#: [group]config_saved msgid "Group configuration saved" msgstr "保存分组结构" -#: ../cache/locales.php:197 +#: [group]delete_title msgid "Delete the group" msgstr "" -#: ../cache/locales.php:198 -msgid "" -"You are going to delete the following group. Please confirm your action." +#: [group]delete_text +msgid "You are going to delete the following group. Please confirm your action." msgstr "" -#: ../cache/locales.php:199 -msgid "" -"It seems that this group doesn't exists anymore. Do you want to remove it " -"from your subscriptions?" +#: [group]delete_clean_text +msgid "It seems that this group doesn't exists anymore. Do you want to remove it from your subscriptions?" msgstr "" -#: ../cache/locales.php:201 ../cache/locales.php:408 +#: [group]counter +msgid "%s groups on this server" +msgstr "" + +#: [group]subscriptions [statistics]subscriptions msgid "Subscriptions" msgstr "订阅" -#: ../cache/locales.php:202 ../cache/locales.php:290 +#: [group]servers +#, fuzzy +msgid "Groups servers" +msgstr "分组" + +#: [group]search_server +msgid "Search for a new server" +msgstr "" + +#: [group]help_info1 +msgid "Groups are the perfect way to share posts about topics that you like with all the other Movim's users." +msgstr "" + +#: [group]help_info2 +msgid "Choose a server and a Group and subscribe to it using the %s button in the header. You can also create a new one using the %s button." +msgstr "" + +#: [group]help_info3 +msgid "Done? You can now publish a new post in the Group by using the %s button." +msgstr "" + +#: [group]help_info4 +msgid "You will find a list of all your subscribed Groups in My Subscriptions and receive instantly all the new incoming posts in the %sNews%s page." +msgstr "" + +#: [groups]empty_title msgid "Hello" msgstr "您好" -#: ../cache/locales.php:203 ../cache/locales.php:225 ../cache/locales.php:291 +#: [groups]contact_post [hello]contact_post [menu]contact_post msgid "Contact post" msgstr "" -#: ../cache/locales.php:204 -msgid "" -"You don't have any subscriptions yet, select a group server above to start " -"exploring." +#: [groups]empty_text1 +msgid "You don't have any subscriptions yet, select a group server above to start exploring." msgstr "" -#: ../cache/locales.php:205 +#: [groups]empty_text2 msgid "Subscribe to your favorite feeds by bookmarking them." msgstr "" -#: ../cache/locales.php:206 +#: [groups]subscriptions msgid "My Subscriptions" msgstr "" -#: ../cache/locales.php:207 +#: [groups]add msgid "Create a new Group" msgstr "" -#: ../cache/locales.php:208 +#: [groups]name msgid "Group name" msgstr "" -#: ../cache/locales.php:209 +#: [groups]name_example msgid "My Little Pony - Fan Club" msgstr "My Little Pony - Fan Club" -#: ../cache/locales.php:210 +#: [groups]created msgid "Group created successfully" msgstr "" -#: ../cache/locales.php:211 +#: [groups]deleted msgid "Group deleted successfully" msgstr "" -#: ../cache/locales.php:212 +#: [groups]name_error msgid "Please provide a valid group name (4 characters minimum)" msgstr "" -#: ../cache/locales.php:213 +#: [groups]no_creation msgid "You cannot create a new Group on this server" msgstr "" -#: ../cache/locales.php:214 -#, php-format +#: [groups]sub msgid "%s subscribers" msgstr "" -#: ../cache/locales.php:215 -#, php-format +#: [groups]num msgid "%s posts" msgstr "" -#: ../cache/locales.php:216 +#: [groups]disco_error +msgid "This server doesn't exists" +msgstr "" + +#: [menu]all msgid "All" msgstr "所有" -#: ../cache/locales.php:219 +#: [menu]refresh msgid "Refresh all the streams" msgstr "刷新所有流" -#: ../cache/locales.php:220 ../cache/locales.php:402 -msgid "Search" -msgstr "搜索" +#: [roster]search +#, fuzzy +msgid "Search in your contacts" +msgstr "同联系人讨论" -#: ../cache/locales.php:221 +#: [hello]active_contacts +#, fuzzy +msgid "Active contacts" +msgstr "您的联系人" + +#: [hello]chat msgid "Go on the Chat page" msgstr "" -#: ../cache/locales.php:222 -msgid "Read all theses articles on the News page" -msgstr "" - -#: ../cache/locales.php:223 -msgid "Visit your public blog" -msgstr "" - -#: ../cache/locales.php:224 -msgid "See your public posts and share them with all your contacts" -msgstr "" - -#: ../cache/locales.php:226 -msgid "Universal share button" -msgstr "" - -#: ../cache/locales.php:227 -msgid "" -"Bookmark or drag and drop the following button in your toolbar and use it on " -"all the pages you want to share on Movim" -msgstr "" - -#: ../cache/locales.php:228 -msgid "Share on Movim" -msgstr "" - -#: ../cache/locales.php:229 -msgid "Frequently Asked Questions" -msgstr "FAQ" - -#: ../cache/locales.php:230 -msgid "What do the little banners refer to ?" -msgstr "这些小横幅与什么相关" - -#: ../cache/locales.php:231 -msgid "" -"Thanks to these five little banners, you can quickly identitfy the level of " -"confdentiality applied to the information you provide." -msgstr "根据一下五种颜色,您可以快速设置个人信息的私密等级" - -#: ../cache/locales.php:232 -msgid "White, only you can see the information" -msgstr "白色,仅自己可见" - -#: ../cache/locales.php:233 -msgid "Green, you have chosen some contacts who can see your information" -msgstr "绿色,指定联系人可见" - -#: ../cache/locales.php:234 -msgid "Orange, all your contact list can see your information" -msgstr "橙色,对所有联系人可见" - -#: ../cache/locales.php:235 -msgid "Red, everybody in the XMPP network can see your information" -msgstr "红色,XMPP上的用户能看见您的信息" - -#: ../cache/locales.php:236 -msgid "Black, the whole Internet can see your information" -msgstr "黑色,整个互联网可以看见您的信息" - -#: ../cache/locales.php:237 -msgid "Looking for some documentation ?" -msgstr "需要查找一些帮助文档?" - -#: ../cache/locales.php:238 -msgid "Read the Wiki" -msgstr "" - -#: ../cache/locales.php:239 -msgid "Talk with us by email ?" -msgstr "用email同我们联系" - -#: ../cache/locales.php:240 -msgid "Join the Mailing List" -msgstr "加入邮件列表" - -#: ../cache/locales.php:241 -msgid "Chat with the team ?" -msgstr "同开发团队交流?" - -#: ../cache/locales.php:242 -msgid "Join the Chatroom" -msgstr "加入聊天室" - -#: ../cache/locales.php:243 -msgid "Location node created" -msgstr "" - -#: ../cache/locales.php:244 -msgid "Bookmark node created" -msgstr "" - -#: ../cache/locales.php:245 -msgid "Profile node created" -msgstr "" - -#: ../cache/locales.php:246 -msgid "Avatar node created" -msgstr "" - -#: ../cache/locales.php:247 -msgid "Subscriptions node created" -msgstr "" - -#: ../cache/locales.php:248 -msgid "Microblog node created" -msgstr "" - -#: ../cache/locales.php:249 -msgid "Location" -msgstr "位置" - -#: ../cache/locales.php:250 -msgid "Wrong position" -msgstr "错误位置" - -#: ../cache/locales.php:251 -msgid "Location updated" -msgstr "位置已更新" - -#: ../cache/locales.php:252 -msgid "Update my position" -msgstr "更新我的位置" - -#: ../cache/locales.php:253 -msgid "Wrong username" -msgstr "错误的用户名" - -#: ../cache/locales.php:254 -msgid "Invalid JID" -msgstr "无效的JID" - -#: ../cache/locales.php:255 -msgid "Empty Challenge from the server" -msgstr "" - -#: ../cache/locales.php:256 -msgid "XMPP Domain error, your account is not a correct Jabber ID" -msgstr "XMPP域错误,您的账户不能连接到Jabber ID" - -#: ../cache/locales.php:257 -msgid "Some data are missing !" -msgstr "部分数据丢失" - -#: ../cache/locales.php:258 -msgid "Wrong password" -msgstr "错误密码" - -#: ../cache/locales.php:259 -msgid "Internal server error" -msgstr "Internal服务器错误" - -#: ../cache/locales.php:260 -msgid "Session error" -msgstr "Session错误" - -#: ../cache/locales.php:261 -msgid "Account successfully created" -msgstr "创建账户成功" - -#: ../cache/locales.php:262 ../cache/locales.php:271 -msgid "Your XMPP server is unauthorized" -msgstr "你的XMPP服务没有被授权" - -#: ../cache/locales.php:263 -msgid "The server takes too much time to respond" -msgstr "服务器未响应" - -#: ../cache/locales.php:264 -msgid "Your web browser is too old to use with Movim." -msgstr "您的浏览器太老不支持Movim" - -#: ../cache/locales.php:265 -msgid "" -"Movim cannot talk with the server, please try again later (Websocket " -"connection error)" -msgstr "Movim无法连接服务器, 请稍后重试(WebSocket连接错误)" - -#: ../cache/locales.php:266 -msgid "Impossible login" -msgstr "" - -#: ../cache/locales.php:267 -msgid "Oops!" -msgstr "糟糕!Oops!" - -#: ../cache/locales.php:268 ../cache/locales.php:449 ../cache/locales.php:455 -msgid "Unknown error" -msgstr "未知错误" - -#: ../cache/locales.php:269 -msgid "Invalid username format" -msgstr "" - -#: ../cache/locales.php:270 -msgid "Invalid password format" -msgstr "" - -#: ../cache/locales.php:272 -msgid "A Movim session is already open on an other device" -msgstr "" - -#: ../cache/locales.php:273 -msgid "Movim failed to authenticate. You entered wrong data" -msgstr "您输入的数据有误,Movim不能认证" - -#: ../cache/locales.php:274 -msgid "Authentication mechanism not supported by Movim" -msgstr "Movim暂不支持此认证机制" - -#: ../cache/locales.php:275 -msgid "The XMPP authentification failed" -msgstr "XMPP鉴别错误" - -#: ../cache/locales.php:276 -#, php-format -msgid "" -"You can login with Facebook (chat only) using %syour.id@chat.facebook.com%s " -"and your password" -msgstr "你可以使用Facebook帐号来登录, 如 %s您的id@chat.facebook.com%s 和您的密码. (只能聊天)" - -#: ../cache/locales.php:277 -#, php-format -msgid "%sGmail accounts are also compatible%s but are not fully supported" -msgstr "%sGmail 账户可用%s,但是部分功能不支持" - -#: ../cache/locales.php:278 -msgid "You can login using your favorite Jabber account" -msgstr "您可以使用您喜欢的Jabber账户登录" - -#: ../cache/locales.php:279 -msgid "or with our demonstration account" -msgstr "或使用我们的演示账户" - -#: ../cache/locales.php:280 ../cache/locales.php:435 -msgid "Accounts" -msgstr "帐户" - -#: ../cache/locales.php:281 -msgid "My address" -msgstr "用户名" - -#: ../cache/locales.php:283 -msgid "Create one !" -msgstr "新建一个 !" - -#: ../cache/locales.php:284 -msgid "No account yet ?" -msgstr "还没有账户 ?" - -#: ../cache/locales.php:285 -msgid "Another account" -msgstr "另一个账户" - -#: ../cache/locales.php:286 -msgid "You can login with accounts from theses servers" -msgstr "" - -#: ../cache/locales.php:287 -msgid "Connected" -msgstr "已连接" - -#: ../cache/locales.php:288 -msgid "Population" -msgstr "" - -#: ../cache/locales.php:289 -msgid "Bad nickname (between 4 and 40 characters)" -msgstr "" - -#: ../cache/locales.php:292 -msgid "" -"Welcome on your news feed, here you will see all the posts published in the " -"groups you have subscribed." -msgstr "" - -#: ../cache/locales.php:293 -msgid "Refreshing all the streams" -msgstr "正在刷行所有流" - -#: ../cache/locales.php:294 -msgid "This post is public" -msgstr "" - -#: ../cache/locales.php:295 -msgid "Manage your members" -msgstr "管理你的成员" - -#: ../cache/locales.php:296 -msgid "Get the members" -msgstr "添加成员" - -#: ../cache/locales.php:297 -msgid "Affiliations saved" -msgstr "保存设置" - -#: ../cache/locales.php:298 -msgid "Manage your subscriptions" -msgstr "管理您的订阅" - -#: ../cache/locales.php:299 -msgid "Manage the subscriptions" -msgstr "管理此订阅" - -#: ../cache/locales.php:300 -msgid "Get the subscriptions" -msgstr "增加此订阅" - -#: ../cache/locales.php:301 -msgid "Subscriptions saved" -msgstr "" - -#: ../cache/locales.php:302 -msgid "Pending Invitations" -msgstr "" - -#: ../cache/locales.php:303 -#, php-format -msgid "%s wants to talk with you" -msgstr "%s 想同您聊天" - -#: ../cache/locales.php:304 -msgid "Manage" -msgstr "管理" - -#: ../cache/locales.php:305 ../cache/locales.php:338 -msgid "News Feed" -msgstr "新闻订阅" - -#: ../cache/locales.php:306 ../cache/locales.php:339 -msgid "Discover and register to the groups you are interested in" -msgstr "" - -#: ../cache/locales.php:307 ../cache/locales.php:340 ../cache/locales.php:482 -msgid "Preview" -msgstr "预览" - -#: ../cache/locales.php:308 ../cache/locales.php:341 ../cache/locales.php:478 -msgid "Help" -msgstr "帮助" - -#: ../cache/locales.php:309 ../cache/locales.php:342 -msgid "More help" -msgstr "" - -#: ../cache/locales.php:310 ../cache/locales.php:343 -msgid "Markdown syntax manual" -msgstr "" - -#: ../cache/locales.php:311 ../cache/locales.php:344 ../cache/locales.php:681 -msgid "Title" -msgstr "标题" - -#: ../cache/locales.php:312 ../cache/locales.php:345 -msgid "Content" -msgstr "" - -#: ../cache/locales.php:313 ../cache/locales.php:346 -msgid "Link" -msgstr "连接" - -#: ../cache/locales.php:314 ../cache/locales.php:347 -msgid "Tags" -msgstr "" - -#: ../cache/locales.php:315 ../cache/locales.php:348 -msgid "Please enter a valid url" -msgstr "" - -#: ../cache/locales.php:316 ../cache/locales.php:349 -msgid "No content to preview" -msgstr "" - -#: ../cache/locales.php:317 ../cache/locales.php:350 ../cache/locales.php:687 -msgid "No content" -msgstr "没有内容" - -#: ../cache/locales.php:318 ../cache/locales.php:351 -msgid "Post published" -msgstr "" - -#: ../cache/locales.php:319 ../cache/locales.php:352 -msgid "Post deleted" -msgstr "" - -#: ../cache/locales.php:320 ../cache/locales.php:353 -msgid "This picture will be added to your gallery" -msgstr "" - -#: ../cache/locales.php:321 ../cache/locales.php:354 -msgid "What's Hot" -msgstr "当前热门" - -#: ../cache/locales.php:322 ../cache/locales.php:355 -msgid "New post" -msgstr "" - -#: ../cache/locales.php:323 ../cache/locales.php:357 -msgid "" -"You can also use services like Imgur or Flickr to host your picture and " -"paste the link here." -msgstr "" - -#: ../cache/locales.php:324 -#, php-format -msgid "This is a re-post from %s" -msgstr "" - -#: ../cache/locales.php:325 -#, php-format -msgid "See %s profile" -msgstr "" - -#: ../cache/locales.php:326 -msgid "Publish this post on your public feed?" -msgstr "" - -#: ../cache/locales.php:327 -msgid "Post published on your blog" -msgstr "" - -#: ../cache/locales.php:328 -msgid "Post removed from your blog" -msgstr "" - -#: ../cache/locales.php:329 ../cache/locales.php:701 -msgid "Delete this post" -msgstr "" - -#: ../cache/locales.php:330 -msgid "You are going to delete this post, please confirm your action" -msgstr "" - -#: ../cache/locales.php:331 -msgid "Comments disabled" -msgstr "" - -#: ../cache/locales.php:332 -msgid "Comment published" -msgstr "" - -#: ../cache/locales.php:333 -msgid "Disconnect" -msgstr "断开" - -#: ../cache/locales.php:334 -msgid "Your status here !" -msgstr "状态栏" - -#: ../cache/locales.php:335 -msgid "Status updated" -msgstr "更新状态" - -#: ../cache/locales.php:336 -msgid "Status" -msgstr "状态" - -#: ../cache/locales.php:337 -msgid "Presence" -msgstr "" - -#: ../cache/locales.php:356 -msgid "Publish" -msgstr "" - -#: ../cache/locales.php:358 -msgid "You cannot publish a post on this Group" -msgstr "" - -#: ../cache/locales.php:359 -msgid "" -"Some fields have been filled in. Do you still want to go back and loose " -"their content?" -msgstr "" - -#: ../cache/locales.php:360 -msgid "Shared" -msgstr "" - -#: ../cache/locales.php:362 -#, php-format -msgid "%s has been added to your public groups" -msgstr "%s已经添加到了您的公共分组" - -#: ../cache/locales.php:363 -#, php-format -msgid "%s has been removed from your public groups" -msgstr "%s 已经从您分组移除" - -#: ../cache/locales.php:364 -msgid "Add a chatroom" -msgstr "添加一个聊天室" - -#: ../cache/locales.php:365 -msgid "You don't have any chatroom yet." -msgstr "" - -#: ../cache/locales.php:366 -msgid "Add one by clicking on the add button in the header." -msgstr "" - -#: ../cache/locales.php:367 -msgid "Chatrooms" -msgstr "聊天室" - -#: ../cache/locales.php:370 -msgid "My Favorite Room" -msgstr "" - -#: ../cache/locales.php:374 -msgid "Remove a chatroom" -msgstr "移除一个聊天室" - -#: ../cache/locales.php:375 -msgid "" -"You are going to remove the following chatroom. Please confirm your action." -msgstr "您将移除以下的聊天室, 请确认." - -#: ../cache/locales.php:378 -msgid "Users in the room" -msgstr "聊天室用户" - -#: ../cache/locales.php:379 -msgid "Please enter a correct nickname (6 to 40 characters)" -msgstr "" - -#: ../cache/locales.php:381 -msgid "Public chatroom" -msgstr "" - -#: ../cache/locales.php:382 -msgid "Please provide a room address" -msgstr "" - -#: ../cache/locales.php:383 -msgid "You are currently logued as an anonymous user." -msgstr "" - -#: ../cache/locales.php:384 -msgid "" -"You can join using your own account or create one on the login page by " -"loging out using the cross in the top-right corner." -msgstr "" - -#: ../cache/locales.php:385 -#, php-format -msgid "Login on %s" -msgstr "" - -#: ../cache/locales.php:386 -msgid "Your nickname" -msgstr "" - -#: ../cache/locales.php:387 -msgid "Ungrouped" -msgstr "未分组" - -#: ../cache/locales.php:388 -msgid "Show disconnected contacts" -msgstr "显示未联系的联系人" - -#: ../cache/locales.php:389 -msgid "Hide disconnected contacts" -msgstr "隐藏未联系的联系人" - -#: ../cache/locales.php:390 -#, php-format -msgid "Show group %s" -msgstr "显示分组 %s" - -#: ../cache/locales.php:391 -#, php-format -msgid "Hide group %s" -msgstr "隐藏分组 %s" - -#: ../cache/locales.php:392 -msgid "Please enter a valid Jabber ID" -msgstr "请输入有效的Jabber ID" - -#: ../cache/locales.php:393 -msgid "" -"No contacts ? You can add one using the + button bellow or going to the " -"Explore page" -msgstr "没有联系人? 您可以使用下面的加号按钮来进入探索页面" - -#: ../cache/locales.php:394 -msgid "Show/Hide" -msgstr "显示/隐藏" - -#: ../cache/locales.php:395 -msgid "Enter the Jabber ID of your contact." -msgstr "输入您帐号的 Jabber ID" - -#: ../cache/locales.php:396 -msgid "Press enter to validate." -msgstr "回车验证" - -#: ../cache/locales.php:397 -msgid "JID" -msgstr "" - -#: ../cache/locales.php:398 -msgid "Results" -msgstr "结果" - -#: ../cache/locales.php:399 -msgid "Contact added" -msgstr "联系人已添加" - -#: ../cache/locales.php:401 -msgid "Contact deleted" -msgstr "联系人已删除" - -#: ../cache/locales.php:403 -msgid "This is not a valid url" -msgstr "" - -#: ../cache/locales.php:404 -msgid "Sharing the URL" -msgstr "" - -#: ../cache/locales.php:405 -msgid "Statistics" -msgstr "统计" - -#: ../cache/locales.php:406 -msgid "Since" -msgstr "" - -#: ../cache/locales.php:407 -msgid "Sessions" -msgstr "" - -#: ../cache/locales.php:409 -msgid "Monthly Subscriptions" -msgstr "" - -#: ../cache/locales.php:410 -msgid "Monthly Subscriptions Cumulated" -msgstr "" - -#: ../cache/locales.php:412 -msgid "" -"Movim is a decentralized social network, before creating a new account you " -"need to choose a server to register." -msgstr "Movim 是一个分散式管理的社交网络,在建立一个新账户之前,你需要选择一个服务器注册。" - -#: ../cache/locales.php:413 -msgid "Your server here ?" -msgstr "" - -#: ../cache/locales.php:414 -msgid "Contact us to add yours to the officially supported servers list" -msgstr "联系我们以加入官方支持服务列表" - -#: ../cache/locales.php:416 -msgid "No public feed for this contact" -msgstr "该账户没有公共订阅" - -#: ../cache/locales.php:417 -msgid "No contact specified" -msgstr "没有指定联系人" - -#: ../cache/locales.php:418 ../cache/locales.php:473 -msgid "Profile" -msgstr "简介" - -#: ../cache/locales.php:419 -msgid "Profile Updated" -msgstr "更新简介" - -#: ../cache/locales.php:420 -msgid "Profile Not Updated" -msgstr "未更新简介" - -#: ../cache/locales.php:421 -msgid "Your profile is now public" -msgstr "您的档案现在是公开的" - -#: ../cache/locales.php:422 -msgid "Your profile is now restricted" -msgstr "现在您的档案是保密的" - -#: ../cache/locales.php:436 -msgid "Twitter" -msgstr "Twitter" - -#: ../cache/locales.php:437 -msgid "Skype" -msgstr "Skype" - -#: ../cache/locales.php:438 -msgid "Yahoo" -msgstr "Yahoo" - -#: ../cache/locales.php:439 -msgid "Privacy Level" -msgstr "隐私等级" - -#: ../cache/locales.php:440 -msgid "Is this profile public ?" -msgstr "公开您的档案么?" - -#: ../cache/locales.php:441 -msgid "" -"Please pay attention ! By making your profile public, all the information " -"listed above will be available for all the Movim users and on the whole " -"Internet." -msgstr "请注意!公开您的档案,上面列出的所有信息将对Movim的所有用户和整个互联网公开" - -#: ../cache/locales.php:442 -msgid "Call" -msgstr "" - -#: ../cache/locales.php:443 -msgid "Hang up" -msgstr "" - -#: ../cache/locales.php:444 -msgid "Connection" -msgstr "连接" - -#: ../cache/locales.php:445 ../cache/locales.php:451 -msgid "Hung up" -msgstr "" - -#: ../cache/locales.php:446 ../cache/locales.php:452 -msgid "Your contact is busy" -msgstr "您的联系人正忙" - -#: ../cache/locales.php:447 ../cache/locales.php:453 -msgid "Declined" -msgstr "" - -#: ../cache/locales.php:448 ../cache/locales.php:454 -msgid "Remote application incompatible" -msgstr "" - -#: ../cache/locales.php:450 ../cache/locales.php:456 -msgid "Is calling you" -msgstr "" - -#: ../cache/locales.php:457 -msgid "You don't have javascript enabled. Good luck with that." -msgstr "您的浏览器没有开启javascript,请排查一下" - -#: ../cache/locales.php:458 -msgid "" -"Movim is a kickass distributed social networking platform that protect your " -"privacy an comes with a set of awesome features." -msgstr "" - -#: ../cache/locales.php:459 -msgid "Administration" -msgstr "管理" - -#: ../cache/locales.php:460 -msgid "Home" -msgstr "主页" - -#: ../cache/locales.php:461 -msgid "Discover" -msgstr "发现" - -#: ../cache/locales.php:462 -msgid "Explore" -msgstr "探索" - -#: ../cache/locales.php:463 -msgid "Account Creation" -msgstr "建立帐号" - -#: ../cache/locales.php:464 +#: [hello]news [page]news msgid "News" msgstr "新闻" -#: ../cache/locales.php:465 -msgid "Avatar" -msgstr "头像" - -#: ../cache/locales.php:467 -msgid "Chats" +#: [hello]news_page +msgid "Read all theses articles on the News page" msgstr "" -#: ../cache/locales.php:470 -msgid "Server" -msgstr "服务器" - -#: ../cache/locales.php:471 -msgid "Public Groups" +#: [hello]blog_title +msgid "Visit your public blog" msgstr "" -#: ../cache/locales.php:472 -msgid "Viewer" -msgstr "游客" - -#: ../cache/locales.php:474 -msgid "Media" -msgstr "媒体" - -#: ../cache/locales.php:475 -msgid "Blog" -msgstr "博客" - -#: ../cache/locales.php:476 -msgid "About" -msgstr "关于" - -#: ../cache/locales.php:477 -msgid "Login" -msgstr "登录" - -#: ../cache/locales.php:479 -msgid "Feed" -msgstr "Feed" - -#: ../cache/locales.php:481 -msgid "Gallery" +#: [hello]blog_text +msgid "See your public posts and share them with all your contacts" msgstr "" -#: ../cache/locales.php:483 -msgid "Visio-conference" -msgstr "视频" - -#: ../cache/locales.php:484 -msgid "Pods" +#: [hello]share_title +msgid "Universal share button" msgstr "" -#: ../cache/locales.php:485 -msgid "Share" +#: [hello]share_text +msgid "Bookmark or drag and drop the following button in your toolbar and use it on all the pages you want to share on Movim" msgstr "" -#: ../cache/locales.php:486 -msgid "Room" +#: [hello]share_button +msgid "Share on Movim" msgstr "" -#: ../cache/locales.php:487 -#, php-format -msgid "Error: %s" -msgstr "错误: %s" +#: [help]faq +msgid "Frequently Asked Questions" +msgstr "FAQ" -#: ../cache/locales.php:488 -#, php-format -msgid "Cannot load file '%s'" -msgstr "不能加载文件 '%s'" +#: [banner]title +msgid "What do the little banners refer to ?" +msgstr "这些小横幅与什么相关" -#: ../cache/locales.php:489 -#, php-format -msgid "Route error, please set all the parameters for the page %s" -msgstr "路径错误,请设置所有的参数%s" +#: [banner]info1 +msgid "Thanks to these five little banners, you can quickly identitfy the level of confdentiality applied to the information you provide." +msgstr "根据一下五种颜色,您可以快速设置个人信息的私密等级" -#: ../cache/locales.php:490 -#, php-format -msgid "Requested widget '%s' doesn't exist." -msgstr "请求的小工具 '%s' 不存在." +#: [banner]white +msgid "White, only you can see the information" +msgstr "白色,仅自己可见" -#: ../cache/locales.php:491 -#, php-format -msgid "Requested event '%s' not registered." -msgstr "请求的事件 '%s' 未注册." +#: [banner]green +msgid "Green, you have chosen some contacts who can see your information" +msgstr "绿色,指定联系人可见" -#: ../cache/locales.php:492 -msgid "Whoops!" +#: [banner]orange +msgid "Orange, all your contact list can see your information" +msgstr "橙色,对所有联系人可见" + +#: [banner]red +msgid "Red, everybody in the XMPP network can see your information" +msgstr "红色,XMPP上的用户能看见您的信息" + +#: [banner]black +msgid "Black, the whole Internet can see your information" +msgstr "黑色,整个互联网可以看见您的信息" + +#: [wiki]question +msgid "Looking for some documentation ?" +msgstr "需要查找一些帮助文档?" + +#: [wiki]button +msgid "Read the Wiki" msgstr "" -#: ../cache/locales.php:493 -msgid "It seem that you don't have any pictures here?" -msgstr "似乎您还没有任何图片?" +#: [ml]question +msgid "Talk with us by email ?" +msgstr "用email同我们联系" -#: ../cache/locales.php:494 -msgid "You can try to upload a couple by going to the Media page" -msgstr "您可以通过进入媒体页面来试图上传一些" +#: [ml]button +msgid "Join the Mailing List" +msgstr "加入邮件列表" -#: ../cache/locales.php:495 -#, php-format -msgid "%s - About" -msgstr "%s - 关于" +#: [chatroom]question +msgid "Chat with the team ?" +msgstr "同开发团队交流?" -#: ../cache/locales.php:496 -#, php-format -msgid "%s - Account" -msgstr "%s -账户" +#: [chatroom]button +msgid "Join the Chatroom" +msgstr "加入聊天室" -#: ../cache/locales.php:497 -#, php-format -msgid "%s - Administration Panel" -msgstr "%s - 管理员面板" - -#: ../cache/locales.php:498 -#, php-format -msgid "%s - Blog" +#: [init]location +msgid "Location node created" msgstr "" -#: ../cache/locales.php:499 -#, php-format -msgid "%s - Configuration" -msgstr "%s - 配置" - -#: ../cache/locales.php:500 -#, php-format -msgid "%s - Discover" -msgstr "%s - 发现" - -#: ../cache/locales.php:501 -#, php-format -msgid "%s - Explore" -msgstr "%s -探索" - -#: ../cache/locales.php:502 -#, php-format -msgid "%s - Help Page" -msgstr "%s - 帮助" - -#: ../cache/locales.php:503 -#, php-format -msgid "%s - Login to Movim" -msgstr "%s - 登录 Movim" - -#: ../cache/locales.php:504 -#, php-format -msgid "%s - Welcome to Movim" -msgstr "%s - 欢迎来到 MOVIM" - -#: ../cache/locales.php:505 -#, php-format -msgid "%s - Media" +#: [init]bookmark +msgid "Bookmark node created" msgstr "" -#: ../cache/locales.php:506 -#, php-format -msgid "%s - News" -msgstr "%s - 新闻" - -#: ../cache/locales.php:507 -#, php-format -msgid "%s - Group Configuration" +#: [init]vcard4 +msgid "Profile node created" msgstr "" -#: ../cache/locales.php:508 -#, php-format -msgid "%s - Group" +#: [init]avatar +msgid "Avatar node created" msgstr "" -#: ../cache/locales.php:509 -#, php-format -msgid "%s - 404" +#: [init]subscriptions +msgid "Subscriptions node created" msgstr "" -#: ../cache/locales.php:510 -#, php-format -msgid "%s - Profile" -msgstr "%s - 档案" - -#: ../cache/locales.php:511 -#, php-format -msgid "%s - Server" +#: [init]microblog +msgid "Microblog node created" msgstr "" -#: ../cache/locales.php:512 -msgid "Validate" -msgstr "验证" +#: [location]title +msgid "Location" +msgstr "位置" -#: ../cache/locales.php:513 -msgid "Refresh" -msgstr "刷新" +#: [location]wrong_postition +msgid "Wrong position" +msgstr "错误位置" -#: ../cache/locales.php:514 -msgid "Add" -msgstr "添加" +#: [location]updated +msgid "Location updated" +msgstr "位置已更新" -#: ../cache/locales.php:515 -msgid "Delete" -msgstr "删除" +#: [location]update +msgid "Update my position" +msgstr "更新我的位置" -#: ../cache/locales.php:516 -msgid "Remove" -msgstr "移除" +#: [login_anonymous]bad_username +msgid "Bad nickname (between 4 and 40 characters)" +msgstr "" -#: ../cache/locales.php:517 -msgid "Cancel" -msgstr "取消" +#: [error]username +msgid "Wrong username" +msgstr "错误的用户名" -#: ../cache/locales.php:518 -msgid "Close" -msgstr "关闭" +#: [error]jid +msgid "Invalid JID" +msgstr "无效的JID" -#: ../cache/locales.php:519 -msgid "Update" -msgstr "更新" +#: [error]empty_challenge +msgid "Empty Challenge from the server" +msgstr "" -#: ../cache/locales.php:520 -msgid "Updating" -msgstr "更新中" +#: [error]dns +msgid "XMPP Domain error, your account is not a correct Jabber ID" +msgstr "XMPP域错误,您的账户不能连接到Jabber ID" -#: ../cache/locales.php:521 +#: [error]data_missings +msgid "Some data are missing !" +msgstr "部分数据丢失" + +#: [error]wrong_password +msgid "Wrong password" +msgstr "错误密码" + +#: [error]internal +msgid "Internal server error" +msgstr "Internal服务器错误" + +#: [error]session +msgid "Session error" +msgstr "Session错误" + +#: [error]account_created +msgid "Account successfully created" +msgstr "创建账户成功" + +#: [error]xmpp_unauthorized +#, fuzzy +msgctxt "[error]xmpp_unauthorized" +msgid "Your XMPP server is unauthorized" +msgstr "你的XMPP服务没有被授权" + +#: [error]mec_error +msgid "The server takes too much time to respond" +msgstr "服务器未响应" + +#: [error]too_old +msgid "Your web browser is too old to use with Movim." +msgstr "您的浏览器太老不支持Movim" + +#: [error]websocket +msgid "Movim cannot talk with the server, please try again later (Websocket connection error)" +msgstr "Movim无法连接服务器, 请稍后重试(WebSocket连接错误)" + +#: [error]impossible +msgid "Impossible login" +msgstr "" + +#: [error]title +msgid "Oops!" +msgstr "糟糕!Oops!" + +#: [error]default [visio]unknown_error +msgid "Unknown error" +msgstr "未知错误" + +#: [error]login_format +msgid "Invalid username format" +msgstr "" + +#: [error]password_format +msgid "Invalid password format" +msgstr "" + +#: [error]unauthorized +#, fuzzy +msgctxt "[error]unauthorized" +msgid "Your XMPP server is unauthorized" +msgstr "你的XMPP服务没有被授权" + +#: [error]conflict +msgid "A Movim session is already open on an other device" +msgstr "" + +#: [error]wrong_account +msgid "Movim failed to authenticate. You entered wrong data" +msgstr "您输入的数据有误,Movim不能认证" + +#: [error]mechanism +msgid "Authentication mechanism not supported by Movim" +msgstr "Movim暂不支持此认证机制" + +#: [error]fail_auth +msgid "The XMPP authentification failed" +msgstr "XMPP鉴别错误" + +#: [account]title [accounts]accounts_title +msgid "Accounts" +msgstr "帐户" + +#: [form]username +msgid "My address" +msgstr "用户名" + +#: [form]create_one +msgid "Create one !" +msgstr "新建一个 !" + +#: [form]another_account +msgid "Another account" +msgstr "另一个账户" + +#: [form]no_account +msgid "No account yet ?" +msgstr "还没有账户 ?" + +#: [form]whitelist.info +msgid "You can login with accounts from theses servers" +msgstr "" + +#: [form]connected +msgid "Connected" +msgstr "已连接" + +#: [form]population +msgid "Population" +msgstr "" + +#: [menu]empty_title +msgid "No news yet..." +msgstr "" + +#: [menu]empty +msgid "Welcome on your news feed, here you will see all the posts published by your contacts and in the groups you have subscribed." +msgstr "" + +#: [menu]refresh +msgid "Refreshing all the streams" +msgstr "正在刷行所有流" + +#: [menu]public +msgid "This post is public" +msgstr "" + +#: [affiliations]title +msgid "Manage your members" +msgstr "管理你的成员" + +#: [affiliations]get +msgid "Get the members" +msgstr "添加成员" + +#: [affiliations]saved +msgid "Affiliations saved" +msgstr "保存设置" + +#: [subscriptions]title +msgid "Manage your subscriptions" +msgstr "管理您的订阅" + +#: [subscriptions]info +msgid "Manage the subscriptions" +msgstr "管理此订阅" + +#: [subscriptions]get +msgid "Get the subscriptions" +msgstr "增加此订阅" + +#: [subscriptions]saved +msgid "Subscriptions saved" +msgstr "" + +#: [notifs]title +msgid "Pending Invitations" +msgstr "" + +#: [notifs]wants_to_talk +msgid "%s wants to talk with you" +msgstr "%s 想同您聊天" + +#: [notifs]manage +msgid "Manage" +msgstr "管理" + +#: [post]news_feed +msgid "News Feed" +msgstr "新闻订阅" + +#: [post]placeholder +msgid "Discover and register to the groups you are interested in" +msgstr "" + +#: [post]preview [page]preview +msgid "Preview" +msgstr "预览" + +#: [post]help [page]help +msgid "Help" +msgstr "帮助" + +#: [post]help_more +msgid "More help" +msgstr "" + +#: [post]help_manual +msgid "Markdown syntax manual" +msgstr "" + +#: [post]title +msgid "Title" +msgstr "标题" + +#: [post]content +msgid "Content" +msgstr "" + +#: [post]link +msgid "Link" +msgstr "连接" + +#: [post]tags +msgid "Tags" +msgstr "" + +#: [post]valid_url [publish]valid_url +msgid "Please enter a valid url" +msgstr "" + +#: [post]no_content_preview [publish]no_content_preview +msgid "No content to preview" +msgstr "" + +#: [post]no_content [publish]no_content [post]empty +msgid "No content" +msgstr "没有内容" + +#: [post]published +msgid "Post published" +msgstr "" + +#: [post]deleted +msgid "Post deleted" +msgstr "" + +#: [post]gallery +msgid "This picture will be added to your gallery" +msgstr "" + +#: [post]hot +msgid "What's Hot" +msgstr "当前热门" + +#: [post]hot_text +msgid "Posts recently published in Groups that you are not subscribed (yet)" +msgstr "" + +#: [post]new [publish]new +msgid "New post" +msgstr "" + +#: [post]embed_tip +msgid "You can also use services like Imgur or Flickr to host your picture and paste the link here." +msgstr "" + +#: [post]repost +msgid "This is a re-post from %s" +msgstr "" + +#: [post]repost_profile +msgid "See %s profile" +msgstr "" + +#: [post]public +#, fuzzy +msgid "Publish this post publicly?" +msgstr "公开您的档案么?" + +#: [post]blog_add +msgid "Post published on your blog" +msgstr "" + +#: [post]blog_remove +msgid "Post removed from your blog" +msgstr "" + +#: [post]delete_title [post]delete +msgid "Delete this post" +msgstr "" + +#: [post]delete_text +msgid "You are going to delete this post, please confirm your action" +msgstr "" + +#: [post]comments_disabled +msgid "Comments disabled" +msgstr "" + +#: [post]comment_published +msgid "Comment published" +msgstr "" + +#: [status]disconnect +msgid "Disconnect" +msgstr "断开" + +#: [status]here +msgid "Your status here !" +msgstr "状态栏" + +#: [status]updated +msgid "Status updated" +msgstr "更新状态" + +#: [status]status +msgid "Status" +msgstr "状态" + +#: [status]presence +msgid "Presence" +msgstr "" + +#: [status]online +msgid "Online with Movim" +msgstr "" + +#: [publish]title +msgid "Publish" +msgstr "" + +#: [publish]attach +msgid "Add a file or a picture to your post" +msgstr "" + +#: [publish]no_publication +msgid "You cannot publish a post on this Group" +msgstr "" + +#: [publish]form_filled +msgid "Some fields have been filled in. Do you still want to go back and loose their content?" +msgstr "" + +#: [public_groups]shared +msgid "Shared" +msgstr "" + +#: [public_groups]added +msgid "%s has been added to your public groups" +msgstr "%s已经添加到了您的公共分组" + +#: [rooms]add +msgid "Add a chatroom" +msgstr "添加一个聊天室" + +#: [rooms]empty_text1 +msgid "You don't have any chatroom yet." +msgstr "" + +#: [rooms]empty_text2 +msgid "Add one by clicking on the add button in the header." +msgstr "" + +#: [chatrooms]title +msgid "Chatrooms" +msgstr "聊天室" + +#: [chatrooms]name_placeholder +msgid "My Favorite Room" +msgstr "" + +#: [chatrooms]users +msgid "Users in the room" +msgstr "聊天室用户" + +#: [chatrooms]bad_nickname +msgid "Please enter a correct nickname (2 to 40 characters)" +msgstr "" + +#: [room]anonymous_title +msgid "Public chatroom" +msgstr "" + +#: [room]no_room +msgid "Please provide a room address" +msgstr "" + +#: [room]anonymous_text1 +msgid "You are currently logued as an anonymous user." +msgstr "" + +#: [room]anonymous_text2 +msgid "You can join using your own account or create one on the login page by loging out using the cross in the top-right corner." +msgstr "" + +#: [room]anonymous_login +msgid "Login on %s" +msgstr "" + +#: [room]nick +msgid "Your nickname" +msgstr "" + +#: [roster]ungrouped +msgid "Ungrouped" +msgstr "未分组" + +#: [roster]show_disconnected +msgid "Show disconnected contacts" +msgstr "显示未联系的联系人" + +#: [roster]hide_disconnected +msgid "Hide disconnected contacts" +msgstr "隐藏未联系的联系人" + +#: [roster]show_group +msgid "Show group %s" +msgstr "显示分组 %s" + +#: [roster]hide_group +msgid "Hide group %s" +msgstr "隐藏分组 %s" + +#: [roster]jid_error +msgid "Please enter a valid Jabber ID" +msgstr "请输入有效的Jabber ID" + +#: [roster]no_contacts_title +#, fuzzy +msgid "No contacts ?" +msgstr "您的联系人" + +#: [roster]no_contacts_text +#, fuzzy +msgid "You can add one using the + button bellow" +msgstr "没有联系人? 您可以使用下面的加号按钮来进入探索页面" + +#: [roster]show_hide +msgid "Show/Hide" +msgstr "显示/隐藏" + +#: [roster]add_contact_info1 +msgid "Enter the Jabber ID of your contact." +msgstr "输入您帐号的 Jabber ID" + +#: [roster]add_contact_info2 +msgid "Press enter to validate." +msgstr "回车验证" + +#: [roster]jid +msgid "JID" +msgstr "" + +#: [roster]results +msgid "Results" +msgstr "结果" + +#: [roster]added +msgid "Contact added" +msgstr "联系人已添加" + +#: [roster]deleted +msgid "Contact deleted" +msgstr "联系人已删除" + +#: [roster]search +msgid "Search" +msgstr "搜索" + +#: [share]error +msgid "This is not a valid url" +msgstr "" + +#: [share]success +msgid "Sharing the URL" +msgstr "" + +#: [statistics]title +msgid "Statistics" +msgstr "统计" + +#: [statistics]since +msgid "Since" +msgstr "" + +#: [statistics]sessions +msgid "Sessions" +msgstr "" + +#: [statistics]monthly_sub +msgid "Monthly Subscriptions" +msgstr "" + +#: [statistics]monthly_sub_cum +msgid "Monthly Subscriptions Cumulated" +msgstr "" + +#: [subscribe]info +msgid "Movim is a decentralized social network, before creating a new account you need to choose a server to register." +msgstr "Movim 是一个分散式管理的社交网络,在建立一个新账户之前,你需要选择一个服务器注册。" + +#: [subscribe]server_question +msgid "Your server here ?" +msgstr "" + +#: [subscribe]server_contact +msgid "Contact us to add yours to the officially supported servers list" +msgstr "联系我们以加入官方支持服务列表" + +#: [feed]nope +msgid "No public feed for this contact" +msgstr "该账户没有公共订阅" + +#: [feed]nope_contact +msgid "No contact specified" +msgstr "没有指定联系人" + +#: [upload]title +#, fuzzy +msgid "Upload a file" +msgstr "上传" + +#: [upload]choose +msgid "Choose a file to upload" +msgstr "" + +#: [vcard]title [page]profile +msgid "Profile" +msgstr "简介" + +#: [vcard]updated +msgid "Profile Updated" +msgstr "更新简介" + +#: [vcard]not_updated +msgid "Profile Not Updated" +msgstr "未更新简介" + +#: [vcard]public +msgid "Your profile is now public" +msgstr "您的档案现在是公开的" + +#: [vcard]restricted +msgid "Your profile is now restricted" +msgstr "现在您的档案是保密的" + +#: [general]nickname +#, fuzzy +msgctxt "[general]nickname" +msgid "Nickname" +msgstr "昵称" + +#: [accounts]twitter +msgid "Twitter" +msgstr "Twitter" + +#: [accounts]skype +msgid "Skype" +msgstr "Skype" + +#: [accounts]yahoo +msgid "Yahoo" +msgstr "Yahoo" + +#: [accounts]accounts_nickname +#, fuzzy +msgctxt "[accounts]accounts_nickname" +msgid "Nickname" +msgstr "昵称" + +#: [accounts]accounts_yahoo +#, fuzzy +msgid "Yahoo Account" +msgstr "其它帐号" + +#: [privacy]privacy_title +msgid "Privacy Level" +msgstr "隐私等级" + +#: [privacy]privacy_question +msgid "Is this profile public ?" +msgstr "公开您的档案么?" + +#: [privacy]privacy_info +msgid "Please pay attention ! By making your profile public, all the information listed above will be available for all the Movim users and on the whole Internet." +msgstr "请注意!公开您的档案,上面列出的所有信息将对Movim的所有用户和整个互联网公开" + +#: [save]submit [button]submit msgid "Submit" msgstr "提交" -#: ../cache/locales.php:522 -msgid "Submitting" -msgstr "提交中" - -#: ../cache/locales.php:523 +#: [save]reset [button]reset msgid "Reset" msgstr "重置" -#: ../cache/locales.php:524 +#: [visio]hung_up +msgid "Hung up" +msgstr "" + +#: [visio]busy +msgid "Your contact is busy" +msgstr "您的联系人正忙" + +#: [visio]declined +msgid "Declined" +msgstr "" + +#: [visio]calling +msgid "Is calling you" +msgstr "" + +#: [visio]call +msgid "Call" +msgstr "" + +#: [visio]hang_up +msgid "Hang up" +msgstr "" + +#: [visio]connection +msgid "Connection" +msgstr "连接" + +#: [global]no_js +msgid "You don't have javascript enabled. Good luck with that." +msgstr "您的浏览器没有开启javascript,请排查一下" + +#: [global]description +msgid "Movim is a kickass distributed social networking platform that protect your privacy an comes with a set of awesome features." +msgstr "" + +#: [page]administration +msgid "Administration" +msgstr "管理" + +#: [page]home +msgid "Home" +msgstr "主页" + +#: [page]discover +msgid "Discover" +msgstr "发现" + +#: [page]explore +msgid "Explore" +msgstr "探索" + +#: [page]account_creation +msgid "Account Creation" +msgstr "建立帐号" + +#: [page]avatar +msgid "Avatar" +msgstr "头像" + +#: [page]chats +msgid "Chats" +msgstr "" + +#: [page]server +msgid "Server" +msgstr "服务器" + +#: [page]public_groups +msgid "Public Groups" +msgstr "" + +#: [page]viewer +msgid "Viewer" +msgstr "游客" + +#: [page]media +msgid "Media" +msgstr "媒体" + +#: [page]blog +msgid "Blog" +msgstr "博客" + +#: [page]about +msgid "About" +msgstr "关于" + +#: [page]login +msgid "Login" +msgstr "登录" + +#: [page]feed +msgid "Feed" +msgstr "Feed" + +#: [page]gallery +msgid "Gallery" +msgstr "" + +#: [page]visio +msgid "Visio-conference" +msgstr "视频" + +#: [page]pods +msgid "Pods" +msgstr "" + +#: [page]share +msgid "Share" +msgstr "" + +#: [page]room +msgid "Room" +msgstr "" + +#: [error]error +msgid "Error: %s" +msgstr "错误: %s" + +#: [error]cannot_load_file +msgid "Cannot load file '%s'" +msgstr "不能加载文件 '%s'" + +#: [error]route +msgid "Route error, please set all the parameters for the page %s" +msgstr "路径错误,请设置所有的参数%s" + +#: [error]widget_load_error +msgid "Requested widget '%s' doesn't exist." +msgstr "请求的小工具 '%s' 不存在." + +#: [error]widget_call_error +msgid "Requested event '%s' not registered." +msgstr "请求的事件 '%s' 未注册." + +#: [error]whoops +msgid "Whoops!" +msgstr "" + +#: [error]media_not_found +msgid "It seem that you don't have any pictures here?" +msgstr "似乎您还没有任何图片?" + +#: [error]media_ask_upload +msgid "You can try to upload a couple by going to the Media page" +msgstr "您可以通过进入媒体页面来试图上传一些" + +#: [title]about +msgid "%s - About" +msgstr "%s - 关于" + +#: [title]account +msgid "%s - Account" +msgstr "%s -账户" + +#: [title]administration +msgid "%s - Administration Panel" +msgstr "%s - 管理员面板" + +#: [title]blog +msgid "%s - Blog" +msgstr "" + +#: [title]configuration +msgid "%s - Configuration" +msgstr "%s - 配置" + +#: [title]discover +msgid "%s - Discover" +msgstr "%s - 发现" + +#: [title]explore +msgid "%s - Explore" +msgstr "%s -探索" + +#: [title]help +msgid "%s - Help Page" +msgstr "%s - 帮助" + +#: [title]login +msgid "%s - Login to Movim" +msgstr "%s - 登录 Movim" + +#: [title]main +msgid "%s - Welcome to Movim" +msgstr "%s - 欢迎来到 MOVIM" + +#: [title]media +msgid "%s - Media" +msgstr "" + +#: [title]news +msgid "%s - News" +msgstr "%s - 新闻" + +#: [title]node_configuration +msgid "%s - Group Configuration" +msgstr "" + +#: [title]node +msgid "%s - Group" +msgstr "" + +#: [title]not_found +msgid "%s - 404" +msgstr "" + +#: [title]profile +msgid "%s - Profile" +msgstr "%s - 档案" + +#: [title]server +msgid "%s - Server" +msgstr "" + +#: [button]validate +msgid "Validate" +msgstr "验证" + +#: [button]refresh +msgid "Refresh" +msgstr "刷新" + +#: [button]add +msgid "Add" +msgstr "添加" + +#: [button]delete +msgid "Delete" +msgstr "删除" + +#: [button]cancel +msgid "Cancel" +msgstr "取消" + +#: [button]close +msgid "Close" +msgstr "关闭" + +#: [button]update +msgid "Update" +msgstr "更新" + +#: [button]updating +msgid "Updating" +msgstr "更新中" + +#: [button]submitting +msgid "Submitting" +msgstr "提交中" + +#: [button]register msgid "Register" msgstr "注册" -#: ../cache/locales.php:525 +#: [button]unregister msgid "Unregister" msgstr "" -#: ../cache/locales.php:526 +#: [button]save msgid "Save" msgstr "保存" -#: ../cache/locales.php:527 +#: [button]clear msgid "Clear" msgstr "清除" -#: ../cache/locales.php:528 +#: [button]upload msgid "Upload" msgstr "上传" -#: ../cache/locales.php:529 +#: [button]come_in msgid "Come in!" msgstr "登录" -#: ../cache/locales.php:530 +#: [button]connecting msgid "Connecting" msgstr "连接中" -#: ../cache/locales.php:531 +#: [button]bool_yes msgid "Yes" msgstr "是" -#: ../cache/locales.php:532 +#: [button]bool_no msgid "No" msgstr "否" -#: ../cache/locales.php:534 +#: [button]return msgid "Return" msgstr "返回" -#: ../cache/locales.php:535 +#: [button]accept msgid "Accept" msgstr "接收" -#: ../cache/locales.php:536 +#: [button]refuse msgid "Refuse" msgstr "" -#: ../cache/locales.php:537 +#: [button]next msgid "Next" msgstr "" -#: ../cache/locales.php:538 +#: [button]previous msgid "Previous" msgstr "" -#: ../cache/locales.php:539 -#, php-format +#: [step]step msgid "Step %s" msgstr "" -#: ../cache/locales.php:542 +#: [day]title msgid "Day" msgstr "天" -#: ../cache/locales.php:543 +#: [day]monday msgid "Monday" msgstr "星期一" -#: ../cache/locales.php:544 +#: [day]tuesday msgid "Tuesday" msgstr "星期二" -#: ../cache/locales.php:545 +#: [day]wednesday msgid "Wednesday" msgstr "星期三" -#: ../cache/locales.php:546 +#: [day]thursday msgid "Thursday" msgstr "星期四" -#: ../cache/locales.php:547 +#: [day]friday msgid "Friday" msgstr "星期五" -#: ../cache/locales.php:548 +#: [day]saturday msgid "Saturday" msgstr "星期六" -#: ../cache/locales.php:549 +#: [day]sunday msgid "Sunday" msgstr "星期日" -#: ../cache/locales.php:550 ../cache/locales.php:559 +#: [gender]nil +#, fuzzy +msgctxt "[gender]nil" msgid "None" msgstr "无" -#: ../cache/locales.php:551 +#: [gender]male msgid "Male" msgstr "男性" -#: ../cache/locales.php:552 +#: [gender]female msgid "Female" msgstr "女性" -#: ../cache/locales.php:553 +#: [gender]other msgid "Other" msgstr "其他" -#: ../cache/locales.php:554 +#: [client]bot msgid "Bot" msgstr "Bot" -#: ../cache/locales.php:555 +#: [client]desktop msgid "Desktop" msgstr "桌面" -#: ../cache/locales.php:556 +#: [client]phone msgid "Phone" msgstr "电话" -#: ../cache/locales.php:557 +#: [client]web msgid "Web" msgstr "网站" -#: ../cache/locales.php:558 +#: [client]registered msgid "Registered" msgstr "已注册" -#: ../cache/locales.php:560 +#: [marital]nil +#, fuzzy +msgctxt "[marital]nil" +msgid "None" +msgstr "无" + +#: [marital]single msgid "Single" msgstr "单身" -#: ../cache/locales.php:561 +#: [marital]relationship msgid "In a relationship" msgstr "热恋中" -#: ../cache/locales.php:562 +#: [marital]married msgid "Married" msgstr "已婚" -#: ../cache/locales.php:563 +#: [marital]divorced msgid "Divorced" msgstr "离异" -#: ../cache/locales.php:564 +#: [marital]widowed msgid "Widowed" msgstr "丧偶" -#: ../cache/locales.php:565 +#: [marital]cohabiting msgid "Cohabiting" msgstr "同居" -#: ../cache/locales.php:566 +#: [marital]union msgid "Civil Union" msgstr "伴侣关系" -#: ../cache/locales.php:567 +#: [flag]white msgid "Not shared" msgstr "私密" -#: ../cache/locales.php:568 +#: [flag]green msgid "Shared with one contact" msgstr "与一个联系人共享" -#: ../cache/locales.php:569 +#: [flag]orange msgid "Shared with all contacts" msgstr "与所有联系人共享" -#: ../cache/locales.php:570 +#: [flag]red msgid "Shared with the XMPP network" msgstr "在XMPP网络共享" -#: ../cache/locales.php:571 +#: [flag]black msgid "Shared with the whole Internet" msgstr "完全公开" -#: ../cache/locales.php:572 +#: [presence]online msgid "Online" msgstr "在线" -#: ../cache/locales.php:573 +#: [presence]away msgid "Away" msgstr "离开" -#: ../cache/locales.php:574 +#: [presence]dnd msgid "Do Not Disturb" msgstr "请勿打扰" -#: ../cache/locales.php:575 +#: [presence]xa msgid "Extended Away" msgstr "扩展" -#: ../cache/locales.php:576 +#: [presence]offline msgid "Offline" msgstr "离线" -#: ../cache/locales.php:577 +#: [presence]error msgid "Error" msgstr "错误" -#: ../cache/locales.php:578 +#: [mood]afraid msgid "afraid" msgstr "害怕" -#: ../cache/locales.php:579 +#: [mood]amazed msgid "amazed" msgstr "吃惊" -#: ../cache/locales.php:580 +#: [mood]amorous msgid "amorous" msgstr "恋爱" -#: ../cache/locales.php:581 +#: [mood]angry msgid "angry" msgstr "生气" -#: ../cache/locales.php:582 +#: [mood]annoyed msgid "annoyed" msgstr "恼怒" -#: ../cache/locales.php:583 +#: [mood]anxious msgid "anxious" msgstr "焦虑" -#: ../cache/locales.php:584 +#: [mood]aroused msgid "aroused" msgstr "亢奋" -#: ../cache/locales.php:585 +#: [mood]ashamed msgid "ashamed" msgstr "惭愧" -#: ../cache/locales.php:586 +#: [mood]bored msgid "bored" msgstr "无聊" -#: ../cache/locales.php:587 +#: [mood]brave msgid "brave" msgstr "勇敢" -#: ../cache/locales.php:588 +#: [mood]calm msgid "calm" msgstr "平静" -#: ../cache/locales.php:589 +#: [mood]cautious msgid "cautious" msgstr "小心" -#: ../cache/locales.php:590 +#: [mood]cold msgid "cold" msgstr "冷" -#: ../cache/locales.php:591 +#: [mood]confident msgid "confident" msgstr "自信" -#: ../cache/locales.php:592 +#: [mood]confused msgid "confused" msgstr "迷惑" -#: ../cache/locales.php:593 +#: [mood]contemplative msgid "contemplative" msgstr "沉思" -#: ../cache/locales.php:594 +#: [mood]contented msgid "contented" msgstr "满意" -#: ../cache/locales.php:595 +#: [mood]cranky msgid "cranky" msgstr "古怪" -#: ../cache/locales.php:596 +#: [mood]crazy msgid "crazy" msgstr "疯狂" -#: ../cache/locales.php:597 +#: [mood]creative msgid "creative" msgstr "创意" -#: ../cache/locales.php:598 +#: [mood]curious msgid "curious" msgstr "好奇" -#: ../cache/locales.php:599 +#: [mood]dejected msgid "dejected" msgstr "沮丧" -#: ../cache/locales.php:600 +#: [mood]depressed msgid "depressed" msgstr "郁闷" -#: ../cache/locales.php:601 +#: [mood]disappointed msgid "disappointed" msgstr "失望" -#: ../cache/locales.php:602 +#: [mood]disgusted msgid "disgusted" msgstr "讨厌" -#: ../cache/locales.php:603 +#: [mood]dismayed msgid "dismayed" msgstr "灰心" -#: ../cache/locales.php:604 +#: [mood]distracted msgid "distracted" msgstr "烦躁" -#: ../cache/locales.php:605 +#: [mood]embarrassed msgid "embarrassed" msgstr "尴尬" -#: ../cache/locales.php:606 +#: [mood]envious msgid "envious" msgstr "羡慕" -#: ../cache/locales.php:607 +#: [mood]excited msgid "excited" msgstr "兴奋" -#: ../cache/locales.php:608 +#: [mood]flirtatious msgid "flirtatious" msgstr "挑逗" -#: ../cache/locales.php:609 +#: [mood]frustated msgid "frustated" msgstr "" -#: ../cache/locales.php:610 +#: [mood]grateful msgid "grateful" msgstr "感谢" -#: ../cache/locales.php:611 +#: [mood]grieving msgid "grieving" msgstr "伤心" -#: ../cache/locales.php:612 +#: [mood]grumpy msgid "grumpy" msgstr "暴躁" -#: ../cache/locales.php:613 +#: [mood]guilty msgid "guilty" msgstr "内疚" -#: ../cache/locales.php:614 +#: [mood]happy msgid "happy" msgstr "幸福" -#: ../cache/locales.php:615 +#: [mood]hopeful msgid "hopeful" msgstr "希望" -#: ../cache/locales.php:616 +#: [mood]hot msgid "hot" msgstr "热" -#: ../cache/locales.php:617 +#: [mood]humbled msgid "humbled" msgstr "贬低" -#: ../cache/locales.php:618 +#: [mood]humiliated msgid "humiliated" msgstr "丢脸" -#: ../cache/locales.php:619 +#: [mood]hungry msgid "hungry" msgstr "饿" -#: ../cache/locales.php:620 +#: [mood]hurt msgid "hurt" msgstr "痛苦" -#: ../cache/locales.php:621 +#: [mood]impressed msgid "impressed" msgstr "感动" -#: ../cache/locales.php:622 +#: [mood]in_awe msgid "in awe" msgstr "佩服" -#: ../cache/locales.php:623 +#: [mood]in_love msgid "in love" msgstr "示爱" -#: ../cache/locales.php:624 +#: [mood]indignant msgid "indignant" msgstr "" -#: ../cache/locales.php:625 +#: [mood]interested msgid "interested" msgstr "有趣" -#: ../cache/locales.php:626 +#: [mood]intoxicated msgid "intoxicated" msgstr "中毒" -#: ../cache/locales.php:627 +#: [mood]invincible msgid "invincible" msgstr "无敌的" -#: ../cache/locales.php:628 +#: [mood]jealous msgid "jealous" msgstr "妒忌" -#: ../cache/locales.php:629 +#: [mood]lonely msgid "lonely" msgstr "孤独" -#: ../cache/locales.php:630 +#: [mood]lost msgid "lost" msgstr "迷惑" -#: ../cache/locales.php:631 +#: [mood]lucky msgid "lucky" msgstr "好运" -#: ../cache/locales.php:632 +#: [mood]mean msgid "mean" msgstr "吝啬" -#: ../cache/locales.php:633 +#: [mood]moody msgid "moody" msgstr "易怒的" -#: ../cache/locales.php:634 +#: [mood]nervous msgid "nervous" msgstr "紧张" -#: ../cache/locales.php:635 +#: [mood]neutral msgid "neutral" msgstr "中立" -#: ../cache/locales.php:636 +#: [mood]offended msgid "offended" msgstr "生气" -#: ../cache/locales.php:637 +#: [mood]outraged msgid "outraged" msgstr "愤怒" -#: ../cache/locales.php:638 +#: [mood]playful msgid "playful" msgstr "幽默" -#: ../cache/locales.php:639 +#: [mood]proud msgid "proud" msgstr "自豪" -#: ../cache/locales.php:640 +#: [mood]relaxed msgid "relaxed" msgstr "宽慰" -#: ../cache/locales.php:641 +#: [mood]relieved msgid "relieved" msgstr "放松" -#: ../cache/locales.php:642 -msgid "remorseful" -msgstr "悔恨" - -#: ../cache/locales.php:643 +#: [mood]restless msgid "restless" msgstr "不安" -#: ../cache/locales.php:644 +#: [mood]sad msgid "sad" msgstr "悲伤" -#: ../cache/locales.php:645 +#: [mood]sarcastic msgid "sarcastic" msgstr "讽刺" -#: ../cache/locales.php:646 +#: [mood]satisfied msgid "satisfied" msgstr "满意" -#: ../cache/locales.php:647 +#: [mood]serious msgid "serious" msgstr "严肃" -#: ../cache/locales.php:648 +#: [mood]shocked msgid "shocked" msgstr "惊讶" -#: ../cache/locales.php:649 +#: [mood]shy msgid "shy" msgstr "害羞" -#: ../cache/locales.php:650 +#: [mood]sick msgid "sick" msgstr "生病" -#: ../cache/locales.php:651 +#: [mood]sleepy msgid "sleepy" msgstr "困" -#: ../cache/locales.php:652 +#: [mood]spontaneous msgid "spontaneous" msgstr "随意" -#: ../cache/locales.php:653 +#: [mood]stressed msgid "stressed" msgstr "紧张" -#: ../cache/locales.php:654 +#: [mood]strong msgid "strong" msgstr "得意" -#: ../cache/locales.php:655 +#: [mood]surprised msgid "surprised" msgstr "惊喜" -#: ../cache/locales.php:656 +#: [mood]thankful msgid "thankful" msgstr "感谢" -#: ../cache/locales.php:657 +#: [mood]thirsty msgid "thirsty" msgstr "口渴" -#: ../cache/locales.php:658 +#: [mood]tired msgid "tired" msgstr "疲劳" -#: ../cache/locales.php:659 +#: [mood]undefined msgid "undefined" msgstr "未定义" -#: ../cache/locales.php:660 +#: [mood]weak msgid "weak" msgstr "虚弱" -#: ../cache/locales.php:661 +#: [mood]worried msgid "worried" msgstr "担心" -#: ../cache/locales.php:662 +#: [month]title msgid "Month" msgstr "月" -#: ../cache/locales.php:663 +#: [month]january msgid "January" msgstr "一月" -#: ../cache/locales.php:664 +#: [month]february msgid "February" msgstr "二月" -#: ../cache/locales.php:665 +#: [month]march msgid "March" msgstr "三月" -#: ../cache/locales.php:666 +#: [month]april msgid "April" msgstr "四月" -#: ../cache/locales.php:667 +#: [month]may msgid "May" msgstr "五月" -#: ../cache/locales.php:668 +#: [month]june msgid "June" msgstr "六月" -#: ../cache/locales.php:669 +#: [month]july msgid "July" msgstr "七月" -#: ../cache/locales.php:670 +#: [month]august msgid "August" msgstr "八月" -#: ../cache/locales.php:671 +#: [month]september msgid "September" msgstr "九月" -#: ../cache/locales.php:672 +#: [month]october msgid "October" msgstr "十月" -#: ../cache/locales.php:673 +#: [month]november msgid "November" msgstr "十一月" -#: ../cache/locales.php:674 +#: [month]december msgid "December" msgstr "十二月" -#: ../cache/locales.php:675 +#: [year]title msgid "Year" msgstr "年" -#: ../cache/locales.php:676 +#: [date]today msgid "Today" msgstr "今天" -#: ../cache/locales.php:677 +#: [date]tomorrow msgid "Tomorrow" msgstr "明天" -#: ../cache/locales.php:678 +#: [date]yesterday msgid "Yesterday" msgstr "昨天" -#: ../cache/locales.php:679 -#, php-format -msgid " %d days ago" +#: [date]ago +#, fuzzy +msgid "%d days ago" msgstr " %d 天以前" -#: ../cache/locales.php:680 +#: [date]day msgid "day" msgstr "日期" -#: ../cache/locales.php:682 +#: [post]whats_new msgid "What's new ?" msgstr "" -#: ../cache/locales.php:683 +#: [post]place msgid "Place" msgstr "地点" -#: ../cache/locales.php:684 +#: [post]by msgid "by" msgstr "通过" -#: ../cache/locales.php:685 +#: [post]geolocalisation msgid "Geolocalisation" msgstr "" -#: ../cache/locales.php:686 +#: [post]email msgid "email" msgstr "邮件" -#: ../cache/locales.php:688 +#: [post]no_comments msgid "No comments yet" msgstr "" -#: ../cache/locales.php:689 +#: [post]no_comments_stream msgid "No comments stream" msgstr "没有评论集" -#: ../cache/locales.php:690 +#: [post]no_load msgid "Your feed cannot be loaded." msgstr "不能加载到您的feed" -#: ../cache/locales.php:691 +#: [post]older msgid "Get older posts" msgstr "查看以前公告" -#: ../cache/locales.php:692 -#, php-format +#: [post]new_items msgid "%s new items" msgstr "" -#: ../cache/locales.php:693 +#: [post]comment_error msgid "Comment publication error" msgstr "发表评论失败" -#: ../cache/locales.php:694 +#: [post]comments_older msgid "Show the older comments" msgstr "显示以前的评论" -#: ../cache/locales.php:695 -msgid "Loading comments ..." +#: [post]comments_loading +#, fuzzy +msgid "Loading comments..." msgstr "载入评论..." -#: ../cache/locales.php:696 +#: [post]comments_get msgid "Get the comments" msgstr "" -#: ../cache/locales.php:697 +#: [post]comment_add msgid "Add a comment" msgstr "添加评论" -#: ../cache/locales.php:698 +#: [post]share msgid "Share with" msgstr "" -#: ../cache/locales.php:699 +#: [post]share_everyone msgid "Everyone" msgstr "每个人" -#: ../cache/locales.php:700 +#: [post]share_your_contacts msgid "Your contacts" msgstr "您的联系人" -#: ../cache/locales.php:702 +#: [post]updated msgid "Updated" msgstr "已更新" -#: ../cache/locales.php:703 +#: [post]content_not_found msgid "Content not found" msgstr "内容未找到" -#: ../cache/locales.php:704 +#: [post]default_title msgid "Contact publication" msgstr "" -#: ../cache/locales.php:705 +#: [post]comments msgid "Comments" msgstr "" -#: ../cache/locales.php:706 +#: [api]error msgid "The API is not reachable, try again later" msgstr "API无法连接, 请稍后重试" -#: ../cache/locales.php:707 +#: [field]type_here msgid "Type here" msgstr "" -#, php-format +#~ msgid "Environment" +#~ msgstr "环境" + +#~ msgid "You can login with Facebook (chat only) using %syour.id@chat.facebook.com%s and your password" +#~ msgstr "你可以使用Facebook帐号来登录, 如 %s您的id@chat.facebook.com%s 和您的密码. (只能聊天)" + +#~ msgid "%sGmail accounts are also compatible%s but are not fully supported" +#~ msgstr "%sGmail 账户可用%s,但是部分功能不支持" + +#~ msgid "You can login using your favorite Jabber account" +#~ msgstr "您可以使用您喜欢的Jabber账户登录" + +#~ msgid "or with our demonstration account" +#~ msgstr "或使用我们的演示账户" + +#~ msgid "%s has been removed from your public groups" +#~ msgstr "%s 已经从您分组移除" + +#~ msgid "Remove a chatroom" +#~ msgstr "移除一个聊天室" + +#~ msgid "You are going to remove the following chatroom. Please confirm your action." +#~ msgstr "您将移除以下的聊天室, 请确认." + +#~ msgid "Remove" +#~ msgstr "移除" + +#~ msgid "remorseful" +#~ msgstr "悔恨" + #~ msgid "%s - Account Creation" #~ msgstr "%s - 建立帐号" @@ -2597,7 +2768,6 @@ msgstr "" #~ msgid "PHP version mismatch. Movim requires PHP 5.3 minimum." #~ msgstr "PHP 版本不符。 Movim 需要 PHP 5.3以上的版本。" -#, php-format #~ msgid "Movim requires the %s extension." #~ msgstr "Movim 需要 %s 扩展名。" @@ -2607,20 +2777,16 @@ msgstr "" #~ msgid "Movim Installer" #~ msgstr "Movim 安装程序。" -#, php-format #~ msgid "Couldn't create directory '%s'." #~ msgstr "不能建立目录 '%s'。" -#, php-format #~ msgid "Couldn't create configuration file '%s'." #~ msgstr "不能建立配置文件 '%s'。" #~ msgid "Compatibility Test" #~ msgstr "兼容性测试" -#~ msgid "" -#~ "The following requirements were not met. Please make sure they are all " -#~ "satisfied in order to install Movim." +#~ msgid "The following requirements were not met. Please make sure they are all satisfied in order to install Movim." #~ msgstr "没有达到符合安装 Movim的软件要求。请检查后再安装。" #~ msgid "User not logged in." @@ -2629,7 +2795,6 @@ msgstr "" #~ msgid "JID not provided." #~ msgstr "还未提供JID。" -#, php-format #~ msgid "jid '%s' is incorrect" #~ msgstr "JID %s 是不正确" @@ -2681,28 +2846,16 @@ msgstr "" #~ msgid "What is Movim?" #~ msgstr "什么是Movim'" -#, php-format -#~ msgid "" -#~ "Visit the page %s What is Movim ? %s to know more about the project, its " -#~ "aims and understand how it works." +#~ msgid "Visit the page %s What is Movim ? %s to know more about the project, its aims and understand how it works." #~ msgstr "访问页面 %s什么是Movim? %s 了解更多,关于这个程序的目的和怎样运行" -#~ msgid "" -#~ "Some features are missing/I can't do everything I used to do on other social " -#~ "networks" +#~ msgid "Some features are missing/I can't do everything I used to do on other social networks" #~ msgstr "特色正在消失/对我没用,我更喜欢其他的社交网站。" -#, php-format -#~ msgid "" -#~ "Although Movim is evolving fast, many (many) features are missing. Be " -#~ "patient ;). You can have a look %s at next versions's roadmaps %s to know if " -#~ "the one you want is on its way." +#~ msgid "Although Movim is evolving fast, many (many) features are missing. Be patient ;). You can have a look %s at next versions's roadmaps %s to know if the one you want is on its way." #~ msgstr "即使Movim正在快速发展,很多特色仍然在丢失。请耐心地期待我们,您可以查看%s版本的路线图%s以了解我们是否在往您设想的方向发展" -#, php-format -#~ msgid "" -#~ "Don't forget that Movim is an open source project, a helping hand is always " -#~ "welcome (see %s Can I participate %s)" +#~ msgid "Don't forget that Movim is an open source project, a helping hand is always welcome (see %s Can I participate %s)" #~ msgstr "不要忘了Movim是一个开放性的程序,我们期待您的参与(see %s 我能加入吗 %s" #~ msgid "I can't find the answer to my question here" @@ -2720,14 +2873,8 @@ msgstr "" #~ msgid "Remove this contact" #~ msgstr "移除联系人" -#~ msgid "" -#~ "Your server doesn't support post publication, you can only read contact's " -#~ "feeds" +#~ msgid "Your server doesn't support post publication, you can only read contact's feeds" #~ msgstr "您的服务器不支持该版本,您只能读取联系人的feeds" -#, php-format -#~ msgid "" -#~ "Go to the %s to the Frequently Asked Questions %s or come ask your question " -#~ "on the official chatroom %s or via our mailing-list (%s see the dedicated " -#~ "page %s)." +#~ msgid "Go to the %s to the Frequently Asked Questions %s or come ask your question on the official chatroom %s or via our mailing-list (%s see the dedicated page %s)." #~ msgstr "转到%s到的常见问题解答%s或来问你的问题官方聊天室%s或通过我们的邮件列表(%s看看专用页%s)。" diff --git a/sources/system/Utils.php b/sources/system/Utils.php index 6786697..a4960f6 100644 --- a/sources/system/Utils.php +++ b/sources/system/Utils.php @@ -431,7 +431,7 @@ function getMood() { 'envious' => __('mood.envious'), // Feeling pain by the excellence or good fortune of another. 'excited' => __('mood.excited'), // Having great enthusiasm. 'flirtatious' => __('mood.flirtatious'), // In the mood for flirting. - 'frustated' => __('mood.frustrated'), // Suffering from frustration; dissatisfied, agitated, or discontented because one is unable to perform an action or fulfill a desire. + 'frustrated' => __('mood.frustrated'), // Suffering from frustration; dissatisfied, agitated, or discontented because one is unable to perform an action or fulfill a desire. 'grateful' => __('mood.grateful'), // Feeling appreciation or thanks. 'grieving' => __('mood.grieving'), // Feeling very sad about something, especially something lost; mournful; sorrowful. 'grumpy' => __('mood.grumpy'), // Unhappy and irritable. diff --git a/sources/themes/material/css/form.css b/sources/themes/material/css/form.css index 7ea0dfd..6d969ec 100644 --- a/sources/themes/material/css/form.css +++ b/sources/themes/material/css/form.css @@ -339,7 +339,7 @@ header.big ~ .button.action { @media screen and (min-width: 1025px) { main > section > div:first-child:nth-last-child(2) .button.action { - right: calc(70% + 3rem); + right: calc(65% + 3rem); } } diff --git a/sources/themes/material/css/style.css b/sources/themes/material/css/style.css index 38cf2da..f2cd9a1 100644 --- a/sources/themes/material/css/style.css +++ b/sources/themes/material/css/style.css @@ -180,7 +180,7 @@ body > nav li { /* Little hack for the navbar */ } } -@media screen and (min-width: 1024px) { +@media screen and (min-width: 1024px) and (max-width: 1680px) { body > nav:hover { width: 45rem; box-shadow: 0 2.5rem 5rem rgba(0,0,0,0.30), 0 2rem 1.5rem rgba(0,0,0,0.22); @@ -203,14 +203,12 @@ body > nav li { /* Little hack for the navbar */ @media screen and (min-width: 1680px) { body > nav, body > nav:hover { - width: 32rem; - box-shadow: none; + width: 15%; } body > nav + main, body > nav:hover + main { - opacity: 1; - width: calc(100% - 32rem); + width: 85%; } } @@ -248,7 +246,7 @@ main > header { main > header > div { padding-left: 9rem; position: relative; - width: 30%; + width: 35%; display: inline-block; /*overflow: hidden;*/ box-sizing: border-box; @@ -289,7 +287,7 @@ main > header > div > ul.active:not(.context_menu) li.thin span.icon { } main > header > div:first-child:nth-last-child(2) ~ div { - width: 70%; + width: 65%; position: absolute; top: 0; right: 0; @@ -384,10 +382,10 @@ main > section > div > * { /* Two blocks*/ main > section > div:first-child:nth-last-child(2) { - width: 30%; + width: 35%; } main > section > div:first-child:nth-last-child(2) ~ div { - width: 70%; + width: 65%; position: absolute; top: 0; right: 0; From 82d9a4138e602c1c05f0780bf7ab2bb74ed53f92 Mon Sep 17 00:00:00 2001 From: src386 Date: Fri, 21 Aug 2015 19:19:23 +0200 Subject: [PATCH 26/27] Edit readme --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 7ed43f6..460df2d 100644 --- a/README.md +++ b/README.md @@ -18,6 +18,7 @@ Current Movim version : 20150821. - Add dedicated php-fpm pool for Movim - Protect /log and /config properly - Update to upstream Movim 20150821 +- Fix #6 and #7 0.7b 2015-08-20 - Update to upstream Movim 20150820 to fix #5 From 34468820c881bb9634a5d533eee655b5ac928682 Mon Sep 17 00:00:00 2001 From: src386 Date: Sun, 23 Aug 2015 01:15:02 +0200 Subject: [PATCH 27/27] edit readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 460df2d..bb8afef 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ Current Movim version : 20150821. **Changelog** -0.8b 2015-08-21 +0.8b 2015-08-23 - Added language selection : ar, de, es, it, ja, nl, ru - Fix URL in manifest.json (was https://https://...) - Public/Private policy changed. The SSO portal is not used anymore